summaryrefslogtreecommitdiffstats
path: root/compiler/trampolines/trampoline_compiler.cc
diff options
context:
space:
mode:
authorSerban Constantinescu <serban.constantinescu@arm.com>2014-11-25 20:05:46 +0000
committerSerban Constantinescu <serban.constantinescu@arm.com>2014-11-28 12:02:58 +0000
commit32f5b4d2c8c9b52e9522941c159577b21752d0fa (patch)
tree1b30de145c7865fd8a79f17a4cfe67b1b890878c /compiler/trampolines/trampoline_compiler.cc
parenteea79dd779ba199658ada7264f8f96d776e53f19 (diff)
downloadandroid_art-32f5b4d2c8c9b52e9522941c159577b21752d0fa.tar.gz
android_art-32f5b4d2c8c9b52e9522941c159577b21752d0fa.tar.bz2
android_art-32f5b4d2c8c9b52e9522941c159577b21752d0fa.zip
Vixl: Update the VIXL interface to VIXL 1.7 and enable VIXL debug.
This patch updates the interface to VIXL 1.7 and enables the debug version of VIXL when ART is built in debug mode. Change-Id: I443fb941bec3cffefba7038f93bb972e6b7d8db5 Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
Diffstat (limited to 'compiler/trampolines/trampoline_compiler.cc')
-rw-r--r--compiler/trampolines/trampoline_compiler.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/trampolines/trampoline_compiler.cc b/compiler/trampolines/trampoline_compiler.cc
index 733b58fa5a..cb07ffae84 100644
--- a/compiler/trampolines/trampoline_compiler.cc
+++ b/compiler/trampolines/trampoline_compiler.cc
@@ -83,6 +83,7 @@ static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention
break;
}
+ assembler->EmitSlowPaths();
size_t cs = assembler->CodeSize();
std::unique_ptr<std::vector<uint8_t>> entry_stub(new std::vector<uint8_t>(cs));
MemoryRegion code(&(*entry_stub)[0], entry_stub->size());