/art/compiler/optimizing/ |
D | induction_var_analysis.cc | 261 InductionInfo* initial = LookupInfo(loop, phi->InputAt(0)); in ClassifyNonTrivial() local 262 if (initial == nullptr || initial->induction_class != kInvariant) { in ClassifyNonTrivial() 270 AssignInfo(loop, phi, CreateInduction(kWrapAround, initial, update, type_)); in ClassifyNonTrivial() 304 AssignInfo(loop, phi, CreateInduction(kLinear, induction, initial, type_)); in ClassifyNonTrivial() 500 InductionInfo* initial = LookupInfo(loop, entry_phi->InputAt(0)); in SolvePhiAllInputs() local 501 return CreateInduction(kPeriodic, a, initial, type_); in SolvePhiAllInputs() 547 InductionInfo* initial = LookupInfo(loop, entry_phi->InputAt(0)); in SolveAddSub() local 548 return CreateInduction(kPeriodic, CreateInvariantOp(kSub, a, initial), initial, type_); in SolveAddSub()
|
D | bounds_check_elimination_test.cc | 360 int initial, in BuildSSAGraph1() argument 370 HInstruction* constant_initial = graph->GetIntConstant(initial); in BuildSSAGraph1() 475 int initial, in BuildSSAGraph2() argument 485 HInstruction* constant_initial = graph->GetIntConstant(initial); in BuildSSAGraph2() 585 int initial, in BuildSSAGraph3() argument 593 HInstruction* constant_initial = graph->GetIntConstant(initial); in BuildSSAGraph3() 689 int initial, in BuildSSAGraph4() argument 698 HInstruction* constant_initial = graph->GetIntConstant(initial); in BuildSSAGraph4()
|
D | nodes.cc | 767 void HBasicBlock::ReplaceAndRemoveInstructionWith(HInstruction* initial, in ReplaceAndRemoveInstructionWith() argument 769 DCHECK(initial->GetBlock() == this); in ReplaceAndRemoveInstructionWith() 770 if (initial->IsControlFlow()) { in ReplaceAndRemoveInstructionWith() 775 DCHECK_EQ(initial->GetBlock(), this); in ReplaceAndRemoveInstructionWith() 776 DCHECK_EQ(initial->GetType(), Primitive::kPrimVoid); in ReplaceAndRemoveInstructionWith() 777 DCHECK(initial->GetUses().empty()); in ReplaceAndRemoveInstructionWith() 778 DCHECK(initial->GetEnvUses().empty()); in ReplaceAndRemoveInstructionWith() 781 instructions_.InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() 784 InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() 785 initial->ReplaceWith(replacement); in ReplaceAndRemoveInstructionWith() [all …]
|
D | induction_var_range_test.cc | 172 int32_t initial, in CreateWrapAround() argument 175 HInductionVarAnalysis::kWrapAround, CreateConst(initial), info, Primitive::kPrimInt); in CreateWrapAround() 179 HInductionVarAnalysis::InductionInfo* CreateWrapAround(int32_t initial, int32_t lo, int32_t hi) { in CreateWrapAround() argument 180 return CreateWrapAround(initial, CreateRange(lo, hi)); in CreateWrapAround()
|
D | bounds_check_elimination.cc | 385 HInstruction* initial, in MonotonicValueRange() argument 392 initial_(initial), in MonotonicValueRange()
|
D | nodes.h | 1049 void ReplaceAndRemoveInstructionWith(HInstruction* initial,
|
/art/test/802-deoptimization/smali/ |
D | catch_handler_on_entry.smali | 14 # return its result: this is the initial value of v1 because "v1 = v1 / 1".
|
/art/test/046-reflect/ |
D | expected.txt | 47 pubLong initial value is 1122334455667788
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 158 If you need to debug the initial piece of an opcode handler, and your
|