/art/compiler/optimizing/ |
D | gvn_test.cc | 36 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), in TEST_F() local 40 entry->AddInstruction(parameter); in TEST_F() 46 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter, in TEST_F() 55 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter, in TEST_F() 65 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter, in TEST_F() 76 block->AddInstruction(new (&allocator) HInstanceFieldSet(parameter, in TEST_F() 77 parameter, in TEST_F() 86 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter, in TEST_F() 120 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), in TEST_F() local 124 entry->AddInstruction(parameter); in TEST_F() [all …]
|
D | nodes_test.cc | 37 HInstruction* parameter = new (&allocator) HParameterValue( in TEST() local 39 entry->AddInstruction(parameter); in TEST() 45 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0); in TEST() 57 environment->SetRawEnvAt(0, parameter); in TEST() 58 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0); in TEST() 60 ASSERT_TRUE(parameter->HasEnvironmentUses()); in TEST() 61 ASSERT_TRUE(parameter->HasUses()); in TEST() 65 ASSERT_FALSE(parameter->HasEnvironmentUses()); in TEST() 66 ASSERT_FALSE(parameter->HasUses()); in TEST() 108 HInstruction* parameter = new (&allocator) HParameterValue( in TEST() local [all …]
|
D | constant_folding_test.cc | 758 HInstruction* parameter = new (&allocator_) HParameterValue( in TEST_F() local 760 entry_block->AddInstruction(parameter); in TEST_F() 766 block->AddInstruction(last = new (&allocator_) HAbove(zero, parameter)); in TEST_F() 767 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0)); in TEST_F() 768 block->AddInstruction(last = new (&allocator_) HAbove(parameter, zero)); in TEST_F() 769 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0)); in TEST_F() 770 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(zero, parameter)); in TEST_F() 771 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0)); in TEST_F() 772 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(parameter, zero)); in TEST_F() 773 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0)); in TEST_F() [all …]
|
D | bounds_check_elimination_test.cc | 297 HInstruction* parameter = new (&allocator_) HParameterValue( in TEST_F() local 299 entry->AddInstruction(parameter); in TEST_F() 310 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter, 0); in TEST_F() 321 null_check = new (&allocator_) HNullCheck(parameter, 0); in TEST_F() 332 null_check = new (&allocator_) HNullCheck(parameter, 0); in TEST_F() 366 HInstruction* parameter = new (allocator) HParameterValue( in BuildSSAGraph1() local 368 entry->AddInstruction(parameter); in BuildSSAGraph1() 392 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0); in BuildSSAGraph1() 409 null_check = new (allocator) HNullCheck(parameter, 0); in BuildSSAGraph1() 481 HInstruction* parameter = new (allocator) HParameterValue( in BuildSSAGraph2() local [all …]
|
D | register_allocator_test.cc | 497 HInstruction* parameter = new (allocator) HParameterValue( in BuildIfElseWithPhi() local 499 entry->AddInstruction(parameter); in BuildIfElseWithPhi() 505 HInstruction* test = new (allocator) HInstanceFieldGet(parameter, in BuildIfElseWithPhi() 532 *input1 = new (allocator) HInstanceFieldGet(parameter, in BuildIfElseWithPhi() 541 *input2 = new (allocator) HInstanceFieldGet(parameter, in BuildIfElseWithPhi() 659 HInstruction* parameter = new (allocator) HParameterValue( in BuildFieldReturn() local 661 entry->AddInstruction(parameter); in BuildFieldReturn() 667 *field = new (allocator) HInstanceFieldGet(parameter, in BuildFieldReturn() 743 HInstruction* parameter = new (allocator) HParameterValue( in BuildTwoSubs() local 745 entry->AddInstruction(parameter); in BuildTwoSubs() [all …]
|
D | instruction_builder.cc | 450 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_, in InitializeParameters() local 455 AppendInstruction(parameter); in InitializeParameters() 456 UpdateLocal(locals_index++, parameter); in InitializeParameters() 463 HParameterValue* parameter = new (arena_) HParameterValue( in InitializeParameters() local 470 AppendInstruction(parameter); in InitializeParameters() 473 UpdateLocal(locals_index++, parameter); in InitializeParameters() 474 if (Primitive::Is64BitType(parameter->GetType())) { in InitializeParameters()
|
D | code_generator.h | 198 size_t GetStackSlotOfParameter(HParameterValue* parameter) const { in GetStackSlotOfParameter() argument 202 + parameter->GetIndex() * kVRegSize; in GetStackSlotOfParameter()
|
/art/test/800-smali/smali/ |
D | b_23300986.smali | 7 monitor-enter v2 # Lock on parameter 8 move-object v1, v2 # Copy parameter into v1, establishing an alias. 17 move-object v1, v2 # Copy parameter into v1, establishing an alias. 18 monitor-enter v2 # Lock on parameter
|
D | b_17410612.smali | 3 # Test that an invoke with a long parameter has the long parameter in
|
D | b_23502994.smali | 7 monitor-enter v2 # Lock on parameter 33 monitor-enter v2 # Lock on parameter
|
D | b_21645819.smali | 4 # The method declares a parameter of an inaccessible class. This should not abort/kill us.
|
D | b_22244733.smali | 5 .registers 2 # One local and one parameter.
|
D | b_20224106.smali | 11 # 1) There is a parameter type mismatch. The formal type is integral (int), but the actual
|
/art/test/005-annotations/ |
D | expected.txt | 20 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/419-long-parameter/ |
D | info.txt | 1 Regression test for the long parameter passed both in stack and register
|
/art/runtime/native/ |
D | java_lang_reflect_Executable.cc | 148 MutableHandle<mirror::Object> parameter = hs.NewHandle<mirror::Object>(nullptr); in Executable_getParameters0() local 156 parameter.Assign(parameter_class->AllocObject(self)); in Executable_getParameters0() 157 if (UNLIKELY(parameter == nullptr)) { in Executable_getParameters0() 162 uint32_t args[5] = { PointerToLowMemUInt32(parameter.Get()), in Executable_getParameters0() 176 parameter_array.Get()->Set(parameter_index, parameter.Get()); in Executable_getParameters0()
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | IdCreator.java | 605 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/ |
D | catch_handler_on_entry.smali | 6 # move-exception instruction). This method must be called with parameter
|
/art/test/ |
D | valgrind-target-suppressions.txt | 2 # parameter is a pointer.
|
/art/test/596-checker-dead-phi/smali/ |
D | IrreducibleLoop.smali | 23 # Check that the outer loop suspend check environment only has the parameter vreg.
|
/art/dexlayout/ |
D | dex_writer.cc | 396 for (std::unique_ptr<dex_ir::ParameterAnnotation>& parameter : in WriteAnnotationsDirectories() 398 annotation_buffer[0] = parameter->GetMethodId()->GetIndex(); in WriteAnnotationsDirectories() 399 annotation_buffer[1] = parameter->GetAnnotations()->GetOffset(); in WriteAnnotationsDirectories()
|
D | dexlayout.cc | 761 for (auto& parameter : *parameters) { in DumpClassAnnotations() 762 const dex_ir::MethodId* method_id = parameter->GetMethodId(); in DumpClassAnnotations() 767 for (dex_ir::AnnotationSetItem* annotation : *parameter->GetAnnotations()->GetItems()) { in DumpClassAnnotations()
|
/art/cmdline/ |
D | README.md | 240 into `existing_value` as an out-parameter.
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 825 @ mov r0, \rRef @ pass ref in r0 (no-op for now since parameter ref is unused)
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1329 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused)
|