diff options
Diffstat (limited to 'dex2oat/driver/compiler_driver.cc')
| -rw-r--r-- | dex2oat/driver/compiler_driver.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dex2oat/driver/compiler_driver.cc b/dex2oat/driver/compiler_driver.cc index e7c0c1e0a0..525cfab231 100644 --- a/dex2oat/driver/compiler_driver.cc +++ b/dex2oat/driver/compiler_driver.cc @@ -298,6 +298,11 @@ std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateJniDlsymLookup CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookup) } +std::unique_ptr<const std::vector<uint8_t>> +CompilerDriver::CreateJniDlsymLookupCriticalTrampoline() const { + CREATE_TRAMPOLINE(JNI, kJniAbi, pDlsymLookupCritical) +} + std::unique_ptr<const std::vector<uint8_t>> CompilerDriver::CreateQuickGenericJniTrampoline() const { CREATE_TRAMPOLINE(QUICK, kQuickAbi, pQuickGenericJniTrampoline) |