summaryrefslogtreecommitdiff
path: root/compiler/compiled_method.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2020-02-12 10:52:22 +0000
committer Vladimir Marko <vmarko@google.com> 2020-02-13 15:07:15 +0000
commit2c8123c1480dcd42e31963697264fca7ad6fa154 (patch)
tree9599252703d41b43ac973c38032385b303bcb9c8 /compiler/compiled_method.cc
parentc3f2fe95ef4f3a51039e497b02b978e7d85ee3fa (diff)
Remove MIPS support from JNI/trampoline compiler.
Also remove MIPS assembler/disassembler support. Test: aosp_taimen-userdebug boots. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 147346243 Change-Id: Id736074b97cd04987a7902741828b119508df1c0
Diffstat (limited to 'compiler/compiled_method.cc')
-rw-r--r--compiler/compiled_method.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/compiled_method.cc b/compiler/compiled_method.cc
index 58f7e4f227..03b87ef09e 100644
--- a/compiler/compiled_method.cc
+++ b/compiler/compiled_method.cc
@@ -62,8 +62,6 @@ size_t CompiledCode::CodeDelta(InstructionSet instruction_set) {
switch (instruction_set) {
case InstructionSet::kArm:
case InstructionSet::kArm64:
- case InstructionSet::kMips:
- case InstructionSet::kMips64:
case InstructionSet::kX86:
case InstructionSet::kX86_64:
return 0;
@@ -81,8 +79,6 @@ const void* CompiledCode::CodePointer(const void* code_pointer, InstructionSet i
switch (instruction_set) {
case InstructionSet::kArm:
case InstructionSet::kArm64:
- case InstructionSet::kMips:
- case InstructionSet::kMips64:
case InstructionSet::kX86:
case InstructionSet::kX86_64:
return code_pointer;