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 | 2913 HConstant* const3 = instruction->TryStaticEvaluation(); in TryHandleAssociativeAndCommutativeOperation() local 2914 DCHECK(const3 != nullptr); in TryHandleAssociativeAndCommutativeOperation() 2916 instruction->ReplaceInput(const3, 1); in TryHandleAssociativeAndCommutativeOperation() 2997 HConstant* const3 = block->GetGraph()->GetConstant(type, const3_val); in TrySubtractionChainSimplification() local 3002 z = new (allocator) HSub(type, const3, x, instruction->GetDexPc()); in TrySubtractionChainSimplification() 3004 z = new (allocator) HAdd(type, x, const3, instruction->GetDexPc()); in TrySubtractionChainSimplification()
|