diff options
author | Jeff Hao <jeffhao@google.com> | 2013-04-22 15:28:53 -0700 |
---|---|---|
committer | Jeff Hao <jeffhao@google.com> | 2013-04-23 16:34:16 -0700 |
commit | 58df32711162823647356afe25ae2cde04133563 (patch) | |
tree | df1b2b43b90f4861b475f1452b175353a56ec3d7 /src/compiler/driver/compiler_driver.cc | |
parent | ede1807e3481a6937416964bb7556364f2d428e1 (diff) | |
download | android_art-58df32711162823647356afe25ae2cde04133563.tar.gz android_art-58df32711162823647356afe25ae2cde04133563.tar.bz2 android_art-58df32711162823647356afe25ae2cde04133563.zip |
Removed compiled resolution trampoline.
Created assembly versions of resolution trampoline for portable and
quick. Removed compiled version from the image.
Change-Id: I183e110c4e102fb45ce6e7f4e855f8bed7986251
Diffstat (limited to 'src/compiler/driver/compiler_driver.cc')
-rw-r--r-- | src/compiler/driver/compiler_driver.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/compiler/driver/compiler_driver.cc b/src/compiler/driver/compiler_driver.cc index d464b420e0..e6f4b67b91 100644 --- a/src/compiler/driver/compiler_driver.cc +++ b/src/compiler/driver/compiler_driver.cc @@ -409,22 +409,6 @@ CompilerTls* CompilerDriver::GetTls() { return res; } -mirror::ByteArray* CompilerDriver::CreateResolutionStub(InstructionSet instruction_set, - Runtime::TrampolineType type) { - switch (instruction_set) { - case kArm: - case kThumb2: - return arm::ArmCreateResolutionTrampoline(type); - case kMips: - return mips::MipsCreateResolutionTrampoline(type); - case kX86: - return x86::X86CreateResolutionTrampoline(type); - default: - LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; - return NULL; - } -} - mirror::ByteArray* CompilerDriver::CreateJniDlsymLookupStub(InstructionSet instruction_set) { switch (instruction_set) { case kArm: |