Lines Matching refs:HInstruction

60   HInstruction* arg = new (GetAllocator()) HParameterValue(  in TEST_F()
65 HInstruction* ret = new (GetAllocator()) HReturn(arg); in TEST_F()
80 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
82 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
84 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
86 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
88 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
90 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
91 for (HInstruction* insn : args) { in TEST_F()
96 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
103 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
105 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
107 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(index, length, /* dex_pc= */ 0u); in TEST_F()
114 bounds_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
116 HInstruction* array_set = in TEST_F()
140 for (HInstruction* arg : args) { in TEST_F()
149 HInstruction* array = new (GetAllocator()) HParameterValue( in TEST_F()
151 HInstruction* index = new (GetAllocator()) HParameterValue( in TEST_F()
153 HInstruction* value = new (GetAllocator()) HParameterValue( in TEST_F()
155 HInstruction* extra_arg1 = new (GetAllocator()) HParameterValue( in TEST_F()
157 HInstruction* extra_arg2 = new (GetAllocator()) HParameterValue( in TEST_F()
159 HInstruction* const args[] = { array, index, value, extra_arg1, extra_arg2 }; in TEST_F()
160 for (HInstruction* insn : args) { in TEST_F()
165 HInstruction* null_check = new (GetAllocator()) HNullCheck(array, 0); in TEST_F()
172 null_check_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
174 HInstruction* length = new (GetAllocator()) HArrayLength(array, 0); in TEST_F()
177 HInstruction* ae = new (GetAllocator()) HAboveOrEqual(index, length); in TEST_F()
179 HInstruction* deoptimize = new(GetAllocator()) HDeoptimize( in TEST_F()
187 deoptimize_env->CopyFrom(ArrayRef<HInstruction* const>(args)); in TEST_F()
189 HInstruction* array_set = in TEST_F()
212 for (HInstruction* arg : args) { in TEST_F()