Home
last modified time | relevance | path

Searched refs:fa1 (Results 1 – 10 of 10) sorted by relevance

/art/runtime/interpreter/mterp/mips/
Dop_double_to_long.S27 mtc1 zero, fa1
28 MOVE_TO_FPU_HIGH(t0, fa1, fa1f)
29 c.ole.d fcc0, fa0, fa1
33 neg.d fa1, fa1
34 c.ole.d fcc0, fa1, fa0
Dop_float_to_long.S26 mtc1 t0, fa1
27 c.ole.s fcc0, fa0, fa1
31 neg.s fa1, fa1
32 c.ole.s fcc0, fa1, fa0
Dop_double_to_int.S17 mtc1 zero, fa1
18 MOVE_TO_FPU_HIGH(t0, fa1, fa1f)
19 c.ole.d fcc0, fa1, fa0
27 movt.d fa0, fa1, fcc0 # fa0 = ordered(vB) ? INT_MIN_AS_DOUBLE : 0
Dop_float_to_int.S17 mtc1 t0, fa1
18 c.ole.s fcc0, fa1, fa0
25 movt.s fa0, fa1, fcc0 # fa0 = ordered(vB) ? INT_MIN_AS_FLOAT : 0
Dfbinop2addr.S13 GET_VREG_F(fa1, a3)
Dfbinop.S12 GET_VREG_F(fa1, a3) # a1 <- vCC
DfbinopWide2addr.S16 LOAD64_F(fa1, fa1f, a1)
DfbinopWide.S18 LOAD64_F(fa1, fa1f, t1)
Dheader.S127 #define fa1 $$f14 macro
/art/test/530-checker-lse/src/
DMain.java471 static float test19(float[] fa1, float[] fa2) { in test19() argument
472 fa1[0] = fa2[0]; in test19()
473 return fa1[0]; in test19()
1189 float[] fa1 = { 0.8f }; in main() local
1191 assertFloatEquals(test19(fa1, fa2), 1.8f); in main()