From 2c8123c1480dcd42e31963697264fca7ad6fa154 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Wed, 12 Feb 2020 10:52:22 +0000 Subject: 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 --- compiler/compiled_method.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'compiler/compiled_method.cc') 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; -- cgit v1.2.3-59-g8ed1b