Searched defs:sub (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_arm.cc926 void LocationsBuilderARM::VisitSub(HSub* sub) { argument
927 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(sub);
928 switch (sub->GetResultType()) {
932 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
941 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
945 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
947 sub->SetLocations(locations);
950 void InstructionCodeGeneratorARM::VisitSub(HSub* sub) { argument
[all...]
H A Dcode_generator_x86.cc878 void LocationsBuilderX86::VisitSub(HSub* sub) { argument
879 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(sub);
880 switch (sub->GetResultType()) {
893 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
897 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
899 sub->SetLocations(locations);
902 void InstructionCodeGeneratorX86::VisitSub(HSub* sub) { argument
903 LocationSummary* locations = sub
[all...]
H A Dcode_generator_x86_64.cc813 void LocationsBuilderX86_64::VisitSub(HSub* sub) { argument
814 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(sub);
815 switch (sub->GetResultType()) {
833 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
837 LOG(FATAL) << "Unimplemented sub type " << sub->GetResultType();
839 sub->SetLocations(locations);
842 void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) { argument
843 LocationSummary* locations = sub
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm32.cc40 void Arm32Assembler::sub(Register rd, Register rn, const ShifterOperand& so, function in class:art::arm::Arm32Assembler
1253 // positive values and sub for negatives ones, which would slightly improve
1259 sub(rd, rn, shifter_op, cond);
1267 sub(rd, rn, ShifterOperand(IP), cond);
H A Dassembler_thumb2.cc40 void Thumb2Assembler::sub(Register rd, Register rn, const ShifterOperand& so, function in class:art::arm::Thumb2Assembler
2304 // positive values and sub for negatives ones, which would slightly improve
2310 sub(rd, rn, shifter_op, cond);
2318 sub(rd, rn, ShifterOperand(IP), cond);

Completed in 341 milliseconds