diff options
author | 2023-12-11 17:59:58 +0000 | |
---|---|---|
committer | 2023-12-15 09:23:22 +0000 | |
commit | a627c7e71a59135daab7f2fb8505d4873f61e4ac (patch) | |
tree | 4ed65b8174984237773521f1f34c4e9408d97ffc /compiler/optimizing/code_generator.cc | |
parent | 9fedb9f473fd77f31285203f5baa9533b8e21ce6 (diff) |
x86_64: Store resolved MethodType-s in .bss.
Bug: 297147201
Test: ./art/test/testrunner/testrunner.py --host --64 --optimizing -b
Test: ./art/test/testrunner/testrunner.py --jvm -b
Test: ./art/test.py --host -b
Change-Id: I4bc2478ff88b2002a60c7126c1a1c9201082e550
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 34400c9d22..b0e07e32ea 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -1682,6 +1682,7 @@ void CodeGenerator::ValidateInvokeRuntimeWithoutRecordingPcInfo(HInstruction* in instruction->IsArrayGet() || instruction->IsArraySet() || instruction->IsLoadClass() || + instruction->IsLoadMethodType() || instruction->IsLoadString() || instruction->IsInstanceOf() || instruction->IsCheckCast() || |