Searched refs:const3 (Results 1 – 2 of 2) sorted by relevance
/art/test/441-checker-inliner/src/ |
D | Main.java | 143 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/ |
D | instruction_simplifier.cc | 2817 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()
|