Lines Matching refs:HInstruction
58 HInstruction* arg = new (GetAllocator()) HParameterValue( in TEST_F()
63 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F()
78 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
80 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
82 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
84 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
86 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
88 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
89 for (HInstruction* insn : args) { in TEST_F()
94 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
101 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
103 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
105 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(index, length, /* dex_pc= */ 0u); in TEST_F()
112 bounds_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
114 HInstruction* array_set = in TEST_F()
138 for (HInstruction* arg : args) { in TEST_F()
147 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
149 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
151 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
153 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
155 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
157 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
158 for (HInstruction* insn : args) { in TEST_F()
163 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
170 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
172 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
175 HInstruction* ae = new (GetAllocator()) HAboveOrEqual(index, length); in TEST_F()
177 HInstruction* deoptimize = new(GetAllocator()) HDeoptimize( in TEST_F()
185 deoptimize_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
187 HInstruction* array_set = in TEST_F()
210 for (HInstruction* arg : args) { in TEST_F()