Lines Matching refs:neg
2337 void LocationsBuilderX86::VisitNeg(HNeg* neg) { in VisitNeg() argument
2339 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall); in VisitNeg()
2340 switch (neg->GetResultType()) { in VisitNeg()
2361 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); in VisitNeg()
2365 void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) { in VisitNeg() argument
2366 LocationSummary* locations = neg->GetLocations(); in VisitNeg()
2369 switch (neg->GetResultType()) { in VisitNeg()
2414 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType(); in VisitNeg()
2418 void LocationsBuilderX86::VisitX86FPNeg(HX86FPNeg* neg) { in VisitX86FPNeg() argument
2420 new (GetGraph()->GetAllocator()) LocationSummary(neg, LocationSummary::kNoCall); in VisitX86FPNeg()
2421 DCHECK(DataType::IsFloatingPointType(neg->GetType())); in VisitX86FPNeg()
2428 void InstructionCodeGeneratorX86::VisitX86FPNeg(HX86FPNeg* neg) { in VisitX86FPNeg() argument
2429 LocationSummary* locations = neg->GetLocations(); in VisitX86FPNeg()
2435 if (neg->GetType() == DataType::Type::kFloat32) { in VisitX86FPNeg()
2437 neg->GetBaseMethodAddress(), in VisitX86FPNeg()
2442 neg->GetBaseMethodAddress(), in VisitX86FPNeg()