Searched refs:parameter (Results 1 - 15 of 15) sorted by relevance

/art/compiler/optimizing/
H A Dgvn_test.cc36 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), local
40 entry->AddInstruction(parameter);
46 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter,
55 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter,
65 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter,
76 block->AddInstruction(new (&allocator) HInstanceFieldSet(parameter,
77 parameter,
86 block->AddInstruction(new (&allocator) HInstanceFieldGet(parameter,
120 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), local
124 entry->AddInstruction(parameter);
203 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), local
350 HInstruction* parameter = new (&allocator) HParameterValue(graph->GetDexFile(), local
[all...]
H A Dnodes_test.cc37 HInstruction* parameter = new (&allocator) HParameterValue( local
39 entry->AddInstruction(parameter);
45 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0);
57 environment->SetRawEnvAt(0, parameter);
58 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0);
60 ASSERT_TRUE(parameter->HasEnvironmentUses());
61 ASSERT_TRUE(parameter->HasUses());
65 ASSERT_FALSE(parameter->HasEnvironmentUses());
66 ASSERT_FALSE(parameter->HasUses());
108 HInstruction* parameter local
[all...]
H A Dconstant_folding_test.cc757 // Make various unsigned comparisons with zero against a parameter.
758 HInstruction* parameter = new (&allocator_) HParameterValue( local
760 entry_block->AddInstruction(parameter);
766 block->AddInstruction(last = new (&allocator_) HAbove(zero, parameter));
767 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
768 block->AddInstruction(last = new (&allocator_) HAbove(parameter, zero));
769 block->AddInstruction(new (&allocator_) HSelect(last, parameter, parameter, 0));
770 block->AddInstruction(last = new (&allocator_) HAboveOrEqual(zero, parameter));
[all...]
H A Dbounds_check_elimination_test.cc297 HInstruction* parameter = new (&allocator_) HParameterValue( local
299 entry->AddInstruction(parameter);
310 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter, 0);
321 null_check = new (&allocator_) HNullCheck(parameter, 0);
332 null_check = new (&allocator_) HNullCheck(parameter, 0);
366 HInstruction* parameter = new (allocator) HParameterValue( local
368 entry->AddInstruction(parameter);
392 HInstruction* null_check = new (allocator) HNullCheck(parameter, 0);
409 null_check = new (allocator) HNullCheck(parameter, 0);
481 HInstruction* parameter local
692 HInstruction* parameter = new (allocator) HParameterValue( local
795 HInstruction* parameter = new (&allocator_) HParameterValue( local
[all...]
H A Dregister_allocator_test.cc497 HInstruction* parameter = new (allocator) HParameterValue( local
499 entry->AddInstruction(parameter);
505 HInstruction* test = new (allocator) HInstanceFieldGet(parameter,
532 *input1 = new (allocator) HInstanceFieldGet(parameter,
541 *input2 = new (allocator) HInstanceFieldGet(parameter,
659 HInstruction* parameter = new (allocator) HParameterValue( local
661 entry->AddInstruction(parameter);
667 *field = new (allocator) HInstanceFieldGet(parameter,
743 HInstruction* parameter = new (allocator) HParameterValue( local
745 entry->AddInstruction(parameter);
[all...]
H A Dcode_generator.h198 size_t GetStackSlotOfParameter(HParameterValue* parameter) const {
202 + parameter->GetIndex() * kVRegSize;
H A Dinstruction_builder.cc450 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_, local
455 AppendInstruction(parameter);
456 UpdateLocal(locals_index++, parameter);
463 HParameterValue* parameter = new (arena_) HParameterValue( local
470 AppendInstruction(parameter);
471 // Store the parameter value in the local that the dex code will use
472 // to reference that parameter.
473 UpdateLocal(locals_index++, parameter);
474 if (Primitive::Is64BitType(parameter->GetType())) {
H A Dcode_generator_x86.cc149 // We know we aren't using parameter 2.
1207 LOG(FATAL) << "Unexpected parameter type " << type;
2513 XmmRegister parameter = calling_convention.GetFpuRegisterAt(0); local
2514 locations->SetInAt(0, Location::FpuRegisterLocation(parameter));
/art/runtime/native/
H A Djava_lang_reflect_Executable.cc108 StringPrintf("Missing parameter metadata for names or access flags for %s",
119 "Inconsistent parameter metadata for %s. names length: %d, access flags length: %d",
148 MutableHandle<mirror::Object> parameter = hs.NewHandle<mirror::Object>(nullptr); local
156 parameter.Assign(parameter_class->AllocObject(self));
157 if (UNLIKELY(parameter == nullptr)) {
162 uint32_t args[5] = { PointerToLowMemUInt32(parameter.Get()),
169 static const char* method_signature = "VLILI"; // return + parameter types
176 parameter_array.Get()->Set(parameter_index, parameter.Get());
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java61 Log.errorAndQuit("Did not create necessary parameter list before finding insertion "
605 for (String parameter : parameterList) {
606 int typeIdx = findTypeId(parameter);
621 for (String parameter : parameterList) {
622 findOrCreateTypeId(parameter);
626 for (String parameter : parameterList) {
628 typeItem.typeIdx = (short) findOrCreateTypeId(parameter);
707 // Search for (or create) the parameter list.
767 // Only look for a TypeList if there's a parameter list.
/art/dexlayout/
H A Ddex_writer.cc396 for (std::unique_ptr<dex_ir::ParameterAnnotation>& parameter :
398 annotation_buffer[0] = parameter->GetMethodId()->GetIndex();
399 annotation_buffer[1] = parameter->GetAnnotations()->GetOffset();
H A Ddexlayout.cc761 for (auto& parameter : *parameters) {
762 const dex_ir::MethodId* method_id = parameter->GetMethodId();
767 for (dex_ir::AnnotationSetItem* annotation : *parameter->GetAnnotations()->GetItems()) {
1206 fprintf(out_file_, "<parameter name=\"arg%d\" type=\"%s\">\n"
1207 "</parameter>\n", arg_num++, dot.c_str());
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S825 @ mov r0, \rRef @ pass ref in r0 (no-op for now since parameter ref is unused)
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S1357 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused)
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1329 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused)

Completed in 395 milliseconds