Home | History | Annotate | Download | only in optimizing

Lines Matching defs:constant

579 void LocationsBuilderX86_64::VisitIntConstant(HIntConstant* constant) {
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) {
588 void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
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) {
1372 HConstant* constant = source.GetConstant();
1373 if (constant->IsIntConstant()) {
1374 Immediate imm(constant->AsIntConstant()->GetValue());
1380 } else if (constant->IsLongConstant()) {
1381 int64_t value = constant->AsLongConstant()->GetValue();
1389 LOG(FATAL) << "Unimplemented constant type";