Searched defs:neg (Results 1 - 7 of 7) sorted by relevance

/art/compiler/optimizing/
H A Dinduction_var_analysis_test.cc264 HInstruction *neg = InsertInstruction( local
272 EXPECT_STREQ("(( - (1)) * i + (0)):PrimInt", GetInductionInfo(neg, 0).c_str());
436 HInstruction *neg = InsertInstruction( local
451 GetInductionInfo(neg, 0).c_str());
531 HInstruction *neg = InsertInstruction( local
539 EXPECT_STREQ("periodic(( - (1)), (0)):PrimInt", GetInductionInfo(neg, 0).c_str());
H A Dinstruction_simplifier.cc175 HNeg* neg = new (GetGraph()->GetArena()) HNeg(binop->GetType(), binop); local
176 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext());
177 binop->ReplaceWithExceptInReplacementAtIndex(neg, 0);
336 // Neg neg, d
337 // UShr dst, x, neg
341 // Neg neg, d
342 // Ror dst, x, neg
346 // Neg neg, d
347 // Shl tmp, x, neg
357 HNeg* neg local
924 HNeg* neg = left_is_neg ? left->AsNeg() : right->AsNeg(); local
1187 HNeg* neg = new (allocator) HNeg(type, input_other); local
1401 HNeg* neg = new (allocator) HNeg(type, right); local
1438 HNeg* neg = new (GetGraph()->GetArena()) HNeg(instruction->GetType(), add); local
[all...]
H A Dcode_generator_mips64.cc3376 void LocationsBuilderMIPS64::VisitNeg(HNeg* neg) { argument
3378 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
3379 switch (neg->GetResultType()) {
3393 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
3423 LOG(FATAL) << "Unexpected neg type " << type;
H A Dcode_generator_mips.cc4198 void LocationsBuilderMIPS::VisitNeg(HNeg* neg) { argument
4200 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
4201 switch (neg->GetResultType()) {
4215 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
4253 LOG(FATAL) << "Unexpected neg type " << type;
H A Dcode_generator_arm.cc1915 void LocationsBuilderARM::VisitNeg(HNeg* neg) { argument
1917 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1918 switch (neg->GetResultType()) {
1937 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1941 void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) { argument
1942 LocationSummary* locations = neg->GetLocations();
1945 switch (neg->GetResultType()) {
1984 LOG(FATAL) << "Unexpected neg type " << neg
[all...]
H A Dcode_generator_x86.cc2054 void LocationsBuilderX86::VisitNeg(HNeg* neg) { argument
2056 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2057 switch (neg->GetResultType()) {
2078 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2082 void InstructionCodeGeneratorX86::VisitNeg(HNeg* neg) { argument
2083 LocationSummary* locations = neg->GetLocations();
2086 switch (neg->GetResultType()) {
2131 LOG(FATAL) << "Unexpected neg type " << neg
2135 VisitX86FPNeg(HX86FPNeg* neg) argument
2145 VisitX86FPNeg(HX86FPNeg* neg) argument
[all...]
H A Dcode_generator_x86_64.cc2264 void LocationsBuilderX86_64::VisitNeg(HNeg* neg) { argument
2266 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2267 switch (neg->GetResultType()) {
2282 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2286 void InstructionCodeGeneratorX86_64::VisitNeg(HNeg* neg) { argument
2287 LocationSummary* locations = neg->GetLocations();
2290 switch (neg->GetResultType()) {
2326 LOG(FATAL) << "Unexpected neg type " << neg
[all...]

Completed in 96 milliseconds