From c79c1912043294f088ec838c12d6d3f2d5b64aa0 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Thu, 12 Oct 2023 11:22:21 +0000 Subject: riscv64: Implement allocation entrypoints. Test: # Edit `run-test` to disable checker, then testrunner.py --target --64 --ndebug --optimizing # Ignore 7 pre-existing failures. Bug: 283082089 Change-Id: Ie5a874c5d3e03cec828fdfb471f0f96470b6c7e1 --- compiler/optimizing/optimizing_compiler.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compiler/optimizing/optimizing_compiler.cc') diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index fbab8659fe..682c2418f8 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -762,6 +762,8 @@ static bool CanAssembleGraphForRiscv64(HGraph* graph) { case HInstruction::kLoadString: case HInstruction::kLoadMethodHandle: case HInstruction::kLoadMethodType: + case HInstruction::kNewArray: + case HInstruction::kNewInstance: case HInstruction::kInstanceFieldGet: case HInstruction::kInstanceFieldSet: case HInstruction::kStaticFieldGet: -- cgit v1.2.3-59-g8ed1b