Lines Matching refs:HInstruction
61 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F()
66 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F()
81 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
83 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
85 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
87 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
89 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
91 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
92 for (HInstruction* insn : args) { in TEST_F()
97 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
104 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
106 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
108 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(index, length, /* dex_pc= */ 0u); in TEST_F()
115 bounds_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
117 HInstruction* array_set = in TEST_F()
141 for (HInstruction* arg : args) { in TEST_F()
150 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
152 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
154 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
156 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
158 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
160 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
161 for (HInstruction* insn : args) { in TEST_F()
166 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
173 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
175 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
178 HInstruction* ae = new (GetAllocator()) HAboveOrEqual(index, length); in TEST_F()
180 HInstruction* deoptimize = new(GetAllocator()) HDeoptimize( in TEST_F()
188 deoptimize_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
190 HInstruction* array_set = in TEST_F()
213 for (HInstruction* arg : args) { in TEST_F()