Searched defs:constant (Results 1 - 9 of 9) sorted by relevance

/art/compiler/optimizing/
H A Dlocations.h79 static Location ConstantLocation(HConstant* constant) { argument
80 DCHECK(constant != nullptr);
81 return Location(kConstant | reinterpret_cast<uword>(constant));
263 // a constant locations. Values of enumeration Kind are selected in such a
H A Dssa_test.cc51 virtual void VisitIntConstant(HIntConstant* constant) { argument
52 PrintPreInstruction(constant);
53 str_ += constant->DebugName();
55 PrintInt(constant->GetValue());
56 PrintPostInstruction(constant);
H A Dbuilder.cc471 HIntConstant* constant = GetIntConstant(instruction.VRegB_11n()); local
472 UpdateLocal(register_index, constant);
478 HIntConstant* constant = GetIntConstant(instruction.VRegB_21s()); local
479 UpdateLocal(register_index, constant);
485 HIntConstant* constant = GetIntConstant(instruction.VRegB_31i()); local
486 UpdateLocal(register_index, constant);
492 HIntConstant* constant = GetIntConstant(instruction.VRegB_21h() << 16); local
493 UpdateLocal(register_index, constant);
499 // Get 16 bits of constant value, sign extended to 64 bits.
503 HLongConstant* constant local
514 HLongConstant* constant = GetLongConstant(value); local
521 HLongConstant* constant = GetLongConstant(instruction.VRegB_51l()); local
529 HLongConstant* constant = GetLongConstant(value); local
777 GetIntConstant(int32_t constant) argument
789 GetLongConstant(int64_t constant) argument
[all...]
H A Dcode_generator_arm.cc722 void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) { argument
723 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
724 locations->SetOut(Location::ConstantLocation(constant));
725 constant->SetLocations(locations);
728 void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) { argument
731 void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) { argument
732 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
733 locations->SetOut(Location::ConstantLocation(constant));
734 constant->SetLocations(locations);
737 void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) { argument
[all...]
H A Dcode_generator_x86.cc667 void LocationsBuilderX86::VisitIntConstant(HIntConstant* constant) { argument
668 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
669 locations->SetOut(Location::ConstantLocation(constant));
670 constant->SetLocations(locations);
673 void InstructionCodeGeneratorX86::VisitIntConstant(HIntConstant* constant) { argument
676 void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) { argument
677 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
678 locations->SetOut(Location::ConstantLocation(constant));
679 constant->SetLocations(locations);
682 void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant) { argument
[all...]
H A Dcode_generator_x86_64.cc579 void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) { argument
580 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
581 locations->SetOut(Location::ConstantLocation(constant));
582 constant->SetLocations(locations);
585 void InstructionCodeGeneratorX86_64::VisitIntConstant(HIntConstant* constant) { argument
588 void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) { argument
589 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
590 locations->SetOut(Location::ConstantLocation(constant));
591 constant->SetLocations(locations);
594 void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) { argument
1372 HConstant* constant = source.GetConstant(); local
[all...]
/art/runtime/verifier/
H A Dreg_type.cc531 ConstantType::ConstantType(uint32_t constant, uint16_t cache_id) argument
532 : RegType(NULL, "", cache_id), constant_(constant) {
871 // check constant case was handled prior to entry
/art/compiler/utils/x86/
H A Dassembler_x86.cc1262 int64_t constant = bit_cast<int64_t, double>(value); local
1263 pushl(Immediate(High32Bits(constant)));
1264 pushl(Immediate(Low32Bits(constant)));
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1458 int64_t constant = bit_cast<int64_t, double>(value); local
1459 pushq(Immediate(High32Bits(constant)));
1460 pushq(Immediate(Low32Bits(constant)));

Completed in 1155 milliseconds