Home
last modified time | relevance | path

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

/art/test/441-checker-inliner/smali/
DSmali.smali35 # int x, const1, const3, const5;
37 # const3 = 3;
40 # x = returnAdd(const1, const3);
42 # x = returnSub(const5, const3);
55 .local v1, "const3":I
/art/compiler/optimizing/
Dinstruction_simplifier.cc2894 HConstant* const3 = instruction->TryStaticEvaluation(); in TryHandleAssociativeAndCommutativeOperation() local
2895 DCHECK(const3 != nullptr); in TryHandleAssociativeAndCommutativeOperation()
2897 instruction->ReplaceInput(const3, 1); in TryHandleAssociativeAndCommutativeOperation()
2978 HConstant* const3 = block->GetGraph()->GetConstant(type, const3_val); in TrySubtractionChainSimplification() local
2983 z = new (allocator) HSub(type, const3, x, instruction->GetDexPc()); in TrySubtractionChainSimplification()
2985 z = new (allocator) HAdd(type, x, const3, instruction->GetDexPc()); in TrySubtractionChainSimplification()