Searched refs:in1_hi (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 2142 Register in1_hi = first.AsRegisterPairHigh<Register>(); in VisitMul() local 2168 __ imull(in1_hi, low); in VisitMul() 2170 __ addl(in1_hi, eax); in VisitMul() 2176 __ addl(in1_hi, edx); in VisitMul() 2187 __ imull(in1_hi, in2_lo); in VisitMul() 2189 __ addl(in1_hi, eax); in VisitMul() 2195 __ addl(in1_hi, edx); in VisitMul() 2207 __ imull(in1_hi, in2_lo); in VisitMul() 2209 __ addl(in1_hi, eax); in VisitMul() 2215 __ addl(in1_hi, edx); in VisitMul()
|
D | code_generator_arm.cc | 2136 Register in1_hi = first.AsRegisterPairHigh<Register>(); in VisitMul() local 2156 __ mla(out_hi, in1_hi, in2_lo, IP); in VisitMul()
|