Home
last modified time | relevance | path

Searched refs:const3 (Results 1 – 2 of 2) sorted by relevance

/art/test/441-checker-inliner/src/
DMain.java143 int x, const1, const3, const5; in InlineWithControlFlow() local
145 const3 = 3; in InlineWithControlFlow()
148 x = returnAdd(const1, const3); in InlineWithControlFlow()
150 x = returnSub(const5, const3); in InlineWithControlFlow()
/art/compiler/optimizing/
Dinstruction_simplifier.cc2817 HConstant* const3 = instruction->TryStaticEvaluation(); in TryHandleAssociativeAndCommutativeOperation() local
2818 DCHECK(const3 != nullptr); in TryHandleAssociativeAndCommutativeOperation()
2820 instruction->ReplaceInput(const3, 1); in TryHandleAssociativeAndCommutativeOperation()
2901 HConstant* const3 = block->GetGraph()->GetConstant(type, const3_val); in TrySubtractionChainSimplification() local
2906 z = new (allocator) HSub(type, const3, x, instruction->GetDexPc()); in TrySubtractionChainSimplification()
2908 z = new (allocator) HAdd(type, x, const3, instruction->GetDexPc()); in TrySubtractionChainSimplification()