Home
last modified time | relevance | path

Searched refs:parameter (Results 1 – 16 of 16) sorted by relevance

/art/compiler/optimizing/
Dgvn_test.cc36 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); in TEST() local
37 entry->AddInstruction(parameter); in TEST()
44 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot, in TEST()
47 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot, in TEST()
51 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot, in TEST()
56 parameter, parameter, Primitive::kPrimNot, MemberOffset(42), false)); in TEST()
58 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot, in TEST()
85 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); in TEST() local
86 entry->AddInstruction(parameter); in TEST()
92 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimBoolean, in TEST()
[all …]
Dnodes_test.cc37 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); in TEST() local
38 entry->AddInstruction(parameter); in TEST()
44 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0); in TEST()
56 environment->SetRawEnvAt(0, parameter); in TEST()
57 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0); in TEST()
59 ASSERT_TRUE(parameter->HasEnvironmentUses()); in TEST()
60 ASSERT_TRUE(parameter->HasUses()); in TEST()
64 ASSERT_FALSE(parameter->HasEnvironmentUses()); in TEST()
65 ASSERT_FALSE(parameter->HasUses()); in TEST()
105 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); in TEST() local
[all …]
Dbounds_check_elimination_test.cc300 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); in TEST() local
301 entry->AddInstruction(parameter); in TEST()
312 HNullCheck* null_check = new (&allocator) HNullCheck(parameter, 0); in TEST()
323 null_check = new (&allocator) HNullCheck(parameter, 0); in TEST()
334 null_check = new (&allocator) HNullCheck(parameter, 0); in TEST()
373 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); in BuildSSAGraph1() local
374 entry->AddInstruction(parameter); in BuildSSAGraph1()
398 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); in BuildSSAGraph1()
415 null_check = new (allocator) HNullCheck(parameter, 0); in BuildSSAGraph1()
508 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); in BuildSSAGraph2() local
[all …]
Dregister_allocator_test.cc470 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); in BuildIfElseWithPhi() local
471 entry->AddInstruction(parameter); in BuildIfElseWithPhi()
478 parameter, Primitive::kPrimBoolean, MemberOffset(22), false); in BuildIfElseWithPhi()
497 *input1 = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt, in BuildIfElseWithPhi()
499 *input2 = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt, in BuildIfElseWithPhi()
600 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); in BuildFieldReturn() local
601 entry->AddInstruction(parameter); in BuildFieldReturn()
607 *field = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt, in BuildFieldReturn()
668 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimInt); in BuildTwoSubs() local
669 entry->AddInstruction(parameter); in BuildTwoSubs()
[all …]
Dcode_generator.h145 size_t GetStackSlotOfParameter(HParameterValue* parameter) const { in GetStackSlotOfParameter() argument
149 + parameter->GetIndex() * kVRegSize; in GetStackSlotOfParameter()
Dbuilder.cc163 HParameterValue* parameter = in InitializeParameters() local
165 entry_block_->AddInstruction(parameter); in InitializeParameters()
167 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter)); in InitializeParameters()
173 HParameterValue* parameter = in InitializeParameters() local
175 entry_block_->AddInstruction(parameter); in InitializeParameters()
179 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter)); in InitializeParameters()
180 bool is_wide = (parameter->GetType() == Primitive::kPrimLong) in InitializeParameters()
181 || (parameter->GetType() == Primitive::kPrimDouble); in InitializeParameters()
Dcode_generator_x86.cc1521 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0); in VisitTypeConversion() local
1522 locations->SetInAt(0, Location::FpuRegisterLocation(parameter)); in VisitTypeConversion()
/art/test/005-annotations/
Dexpected.txt20 constructor parameter annotations:
24 constructor parameter annotations:
30 method parameter annotations:
45 method parameter annotations:
56 constructor parameter annotations:
58 method parameter annotations:
68 constructor parameter annotations:
74 method parameter annotations:
82 method parameter annotations:
88 method parameter annotations:
/art/test/800-smali/smali/
Db_21645819.smali4 # The method declares a parameter of an inaccessible class. This should not abort/kill us.
Db_22244733.smali5 .registers 2 # One local and one parameter.
Db_20224106.smali11 # 1) There is a parameter type mismatch. The formal type is integral (int), but the actual
/art/test/419-long-parameter/
Dinfo.txt1 Regression test for the long parameter passed both in stack and register
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java605 for (String parameter : parameterList) { in convertParameterListToTypeIdList()
606 int typeIdx = findTypeId(parameter); in convertParameterListToTypeIdList()
621 for (String parameter : parameterList) { in createTypeList()
622 findOrCreateTypeId(parameter); in createTypeList()
626 for (String parameter : parameterList) { in createTypeList()
628 typeItem.typeIdx = (short) findOrCreateTypeId(parameter); in createTypeList()
/art/test/802-deoptimization/smali/
Dcatch_handler_on_entry.smali6 # move-exception instruction). This method must be called with parameter
/art/build/
DAndroid.common_build.mk142 art_gcc_cflags := -Wunused-but-set-parameter
/art/cmdline/
DREADME.md240 into `existing_value` as an out-parameter.