Home
last modified time | relevance | path

Searched refs:initial (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_analysis.cc261 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()
Dbounds_check_elimination_test.cc360 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()
Dnodes.cc767 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 …]
Dinduction_var_range_test.cc172 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()
Dbounds_check_elimination.cc385 HInstruction* initial, in MonotonicValueRange() argument
392 initial_(initial), in MonotonicValueRange()
Dnodes.h1049 void ReplaceAndRemoveInstructionWith(HInstruction* initial,
/art/test/802-deoptimization/smali/
Dcatch_handler_on_entry.smali14 # return its result: this is the initial value of v1 because "v1 = v1 / 1".
/art/test/046-reflect/
Dexpected.txt47 pubLong initial value is 1122334455667788
/art/runtime/interpreter/mterp/
DREADME.txt158 If you need to debug the initial piece of an opcode handler, and your