summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator_mips.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2016-11-09 09:55:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-11-09 09:55:45 +0000
commit0864c98b10cb8ca306671cabaa9be2a4068a2711 (patch)
tree56d9bb3097c51d5efbf67cd7516b0bc3c8e16616 /compiler/optimizing/code_generator_mips.cc
parent4c45ffaf6329d40e3249894cfb078d3d274ddfd5 (diff)
parentac3ebc3150760425ed00abd56da48f9a6e0666bc (diff)
Merge "JIT root tables."
Diffstat (limited to 'compiler/optimizing/code_generator_mips.cc')
-rw-r--r--compiler/optimizing/code_generator_mips.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_mips.cc b/compiler/optimizing/code_generator_mips.cc
index 6e9fbd2560..0960c54408 100644
--- a/compiler/optimizing/code_generator_mips.cc
+++ b/compiler/optimizing/code_generator_mips.cc
@@ -5209,6 +5209,11 @@ HLoadString::LoadKind CodeGeneratorMIPS::GetSupportedLoadStringKind(
case HLoadString::LoadKind::kDexCacheViaMethod:
fallback_load = false;
break;
+ case HLoadString::LoadKind::kJitTableAddress:
+ DCHECK(Runtime::Current()->UseJitCompilation());
+ // TODO: implement.
+ fallback_load = true;
+ break;
}
if (fallback_load) {
desired_string_load_kind = HLoadString::LoadKind::kDexCacheViaMethod;