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

/art/test/100-reflect2/src/sub/
H A DPPClass.java17 package sub; package
/art/compiler/optimizing/
H A Dpc_relative_fixups_x86.cc48 void VisitSub(HSub* sub) OVERRIDE {
49 BinaryFP(sub); variable
H A Dinduction_var_analysis_test.cc258 HInstruction *sub = InsertInstruction( local
269 EXPECT_STREQ("(( - (1)) * i + (100)):PrimInt", GetInductionInfo(sub, 0).c_str());
291 HInstruction *sub = InsertInstruction( local
293 HInstruction* store2 = InsertArrayStore(sub, 0);
294 k->AddInput(sub);
378 HInstruction *sub = InsertInstruction( local
380 k->AddInput(sub);
404 HInstruction *sub = InsertInstruction( local
406 t->AddInput(sub);
430 HInstruction *sub local
494 HInstruction *sub = InsertInstruction( local
525 HInstruction *sub = InsertInstruction( local
[all...]
H A Dbounds_check_elimination_test.cc739 HInstruction* sub = new (allocator) HSub(Primitive::kPrimInt, array_length, phi); local
741 HAdd(Primitive::kPrimInt, sub, constant_minus_1);
748 loop_body->AddInstruction(sub);
835 HSub* sub = new (&allocator_) HSub(Primitive::kPrimInt, array_length, phi_i); local
836 add = new (&allocator_) HAdd(Primitive::kPrimInt, sub, constant_minus_1);
842 inner_header->AddInstruction(sub);
H A Dinstruction_simplifier.cc256 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) { argument
257 return (sub->GetRight() == other &&
258 sub->GetLeft()->IsConstant() &&
259 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0);
936 HSub* sub = new(GetGraph()->GetArena()) HSub(instruction->GetType(), other, neg->GetInput()); local
937 instruction->GetBlock()->ReplaceAndRemoveInstructionWith(instruction, sub);
1250 HSub* sub = new (allocator) HSub(type, shl, input_other); local
1253 block->ReplaceAndRemoveInstructionWith(instruction, sub);
1293 HSub* sub = input->AsSub(); local
1295 new (GetGraph()->GetArena()) HSub(instruction->GetType(), sub
[all...]
H A Dcode_generator_arm.cc1967 __ sub(out.AsRegisterPairHigh<Register>(),
2531 void LocationsBuilderARM::VisitSub(HSub* sub) { argument
2533 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
2534 switch (sub->GetResultType()) {
2537 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
2556 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
2560 void InstructionCodeGeneratorARM::VisitSub(HSub* sub) { argument
2561 LocationSummary* locations = sub->GetLocations();
2565 switch (sub
[all...]
H A Dcode_generator_x86.cc2842 void LocationsBuilderX86::VisitSub(HSub* sub) { argument
2844 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
2845 switch (sub->GetResultType()) {
2856 if (sub->InputAt(1)->IsX86LoadFromConstantTable()) {
2857 DCHECK(sub->InputAt(1)->IsEmittedAtUseSite());
2858 } else if (sub->InputAt(1)->IsConstant()) {
2868 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
2872 void InstructionCodeGeneratorX86::VisitSub(HSub* sub) { argument
2873 LocationSummary* locations = sub
[all...]
H A Dcode_generator_x86_64.cc2988 void LocationsBuilderX86_64::VisitSub(HSub* sub) { argument
2990 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
2991 switch (sub->GetResultType()) {
3000 locations->SetInAt(1, Location::RegisterOrInt32Constant(sub->InputAt(1)));
3012 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
3016 void InstructionCodeGeneratorX86_64::VisitSub(HSub* sub) { argument
3017 LocationSummary* locations = sub->GetLocations();
3021 switch (sub->GetResultType()) {
3075 LOG(FATAL) << "Unexpected sub typ
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm32.cc77 void Arm32Assembler::sub(Register rd, Register rn, const ShifterOperand& so, function in class:art::arm::Arm32Assembler
1407 // positive values and sub for negatives ones, which would slightly improve
1413 sub(rd, rn, shifter_op, cond, set_cc);
1421 sub(rd, rn, ShifterOperand(IP), cond, set_cc);
H A Dassembler_thumb2.cc554 void Thumb2Assembler::sub(Register rd, Register rn, const ShifterOperand& so, function in class:art::arm::Thumb2Assembler
3501 // positive values and sub for negatives ones, which would slightly improve
3507 sub(rd, rn, shifter_op, cond, set_cc);
3517 sub(rd, rn, ShifterOperand(temp), cond, set_cc);
3520 sub(rd, rn, ShifterOperand(temp), cond, set_cc);

Completed in 105 milliseconds