Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 22 of 22) sorted by relevance

/art/runtime/interpreter/mterp/mips64/
Dfloating_point.S13 GET_VREG_FLOAT f1, a3 # f1 <- vCC
14 $instr # f0 <- f0 op f1
31 GET_VREG_FLOAT f1, a3 # f1 <- vB
32 $instr # f0 <- f0 op f1
50 GET_VREG_DOUBLE f1, a3 # f1 <- vCC
51 $instr # f0 <- f0 op f1
68 GET_VREG_DOUBLE f1, a3 # f1 <- vB
69 $instr # f0 <- f0 op f1
87 GET_VREG_FLOAT f1, a3 # f1 <- vCC
88 cmp.eq.s f2, f0, f1
[all …]
Dmain.S57 #define f1 $$f1 macro
/art/test/805-TooDeepClassInstanceOf/src/
DMain.java41 A f1 = new F1(); in main() local
49 expectTrue(f1 instanceof B1); in main()
54 expectFalse(f1 instanceof B2); in main()
59 expectFalse(f1 instanceof F2); in main()
/art/test/474-checker-boolean-input/src/
DMain.java34 public static boolean f1; field in Main
38 return (x == 42) ? f1 : f2; in InlinePhi()
97 f1 = true; in main()
/art/test/952-invoke-custom/src/
DTestBase.java61 static void assertEquals(float f1, float f2) { in assertEquals() argument
62 if (f1 == f2) { in assertEquals()
65 throw new AssertionError("assertEquals f1: " + f1 + ", f2: " + f2); in assertEquals()
/art/test/534-checker-bce-deoptimization/src/
DMain.java91 public static void $noinline$FloatFill(float f1, float f2, float[] array, int n) { in $noinline$FloatFill() argument
94 array[i] = ((i & 1) == 1) ? f1 : f2; in $noinline$FloatFill()
95 f1 += 1.5f; in $noinline$FloatFill()
/art/test/MyClassNatives/
DMyClassNatives.java79 native float checkFloats(float f1, float f2); in checkFloats() argument
82 float f1, float f2, float f3, float f4, float f5, float f6, in forceStackParameters() argument
128 int i8, int i9, int i10, float f1, float f2, float f3, float f4, float f5, float f6, in stackArgsIntsFirst() argument
132 native static void stackArgsFloatsFirst(float f1, float f2, float f3, float f4, float f5, in stackArgsFloatsFirst() argument
137 native static void stackArgsMixed(int i1, float f1, int i2, float f2, int i3, float f3, int i4, in stackArgsMixed() argument
213 native float checkFloats_Fast(float f1, float f2); in checkFloats_Fast() argument
216 float f1, float f2, float f3, float f4, float f5, float f6, in forceStackParameters_Fast() argument
262 int i8, int i9, int i10, float f1, float f2, float f3, float f4, float f5, float f6, in stackArgsIntsFirst_Fast() argument
266 native static void stackArgsFloatsFirst_Fast(float f1, float f2, float f3, float f4, float f5, in stackArgsFloatsFirst_Fast() argument
271 …native static void stackArgsMixed_Fast(int i1, float f1, int i2, float f2, int i3, float f3, int i… in stackArgsMixed_Fast() argument
[all …]
/art/test/703-floating-point-div/src/
DMain.java63 float f1 = 0x1.0p127f; in divFloatTest() local
74 expectEquals(Float.floatToRawIntBits(fPi/f1), 0xc90fdb); in divFloatTest()
/art/test/439-npe/
Dexpected.txt88 f1=168.0
/art/runtime/mirror/
Dobject_test.cc691 ArtField* f1 = c->FindDeclaredInstanceField("count", "I"); in TEST_F() local
693 EXPECT_TRUE(f1 != nullptr); in TEST_F()
695 EXPECT_EQ(f1, f2); in TEST_F()
729 ArtField* f1 = c->FindDeclaredStaticField("CASE_INSENSITIVE_ORDER", "Ljava/util/Comparator;"); in TEST_F() local
732 EXPECT_TRUE(f1 != nullptr); in TEST_F()
734 EXPECT_EQ(f1, f2); in TEST_F()
/art/compiler/jni/
Djni_compiler_test.cc1452 jfloat Java_MyClassNatives_checkFloats(JNIEnv*, jobject, jfloat f1, jfloat f2) { in JNI_TEST()
1453 return f1 - f2; // non-commutative operator in JNI_TEST()
1947 jint i10, jfloat f1, jfloat f2, jfloat f3, jfloat f4, in JNI_TEST_NORMAL_ONLY()
1961 jint i11 = bit_cast<jint, jfloat>(f1); in JNI_TEST_NORMAL_ONLY()
1998 jfloat f1 = bit_cast<jfloat, jint>(11); in StackArgsIntsFirstImpl() local
2009 env_->CallStaticVoidMethod(jklass_, jmethod_, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, f1, f2, in StackArgsIntsFirstImpl()
2015 void Java_MyClassNatives_stackArgsFloatsFirst(JNIEnv*, jclass, jfloat f1, jfloat f2, in JNI_TEST_CRITICAL()
2031 jint i11 = bit_cast<jint, jfloat>(f1); in JNI_TEST_CRITICAL()
2068 jfloat f1 = bit_cast<jfloat, jint>(11); in StackArgsFloatsFirstImpl() local
2079 env_->CallStaticVoidMethod(jklass_, jmethod_, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, i1, i2, i3, in StackArgsFloatsFirstImpl()
[all …]
/art/test/439-npe/src/
DMain.java676 float f1 = 41.0f; in $opt$noinline$testRegisterRetrieval() local
756 f0 += f1; in $opt$noinline$testRegisterRetrieval()
757 f1 += f2; in $opt$noinline$testRegisterRetrieval()
823 System.out.println("f1=" + f1); in $opt$noinline$testRegisterRetrieval()
/art/compiler/utils/
Dassembler_test_base.h363 bool CompareFiles(const std::string& f1, const std::string& f2) { in CompareFiles() argument
364 std::ifstream f1_in(f1); in CompareFiles()
/art/test/806-TooWideClassInstanceOf/src/
DMain.java1243 A f1 = new F1(); in main() local
1246 expectTrue(f1 instanceof E1199); in main()
1247 expectFalse(f1 instanceof E1200); in main()
/art/test/dexdump/
Dcheckers.txt793 001bde: 6900 5900 |00f1: sput-object v0, Lcom/google/android/checkers/…
911 001dde: 7010 6700 0900 |01f1: invoke-direct {v9}, Lcom/google/android/check…
1319 0022ca: 1a00 f100 |00c1: const-string v0, "lp" // string@00f1
1345 00232a: 52a4 2700 |00f1: iget v4, v10, Lcom/google/android/checkers/Ch…
1426 0023fa: 12f1 |0001: const/4 v1, #int -1 // #ff
1558 0025da: 0160 |00f1: move v0, v6
1705 0027da: 5490 2200 |01f1: iget-object v0, v9, Lcom/google/android/check…
1988 002b24: 28f1 |0062: goto 0053 // -000f
2133 002d1a: 28a5 |00f1: goto 0096 // -005b
2456 003136: 1a00 f100 |0097: const-string v0, "lp" // string@00f1
[all …]
Dbytecodes.txt1389 0x00a6 - 0x013e reg=16 f1 F
1774 001860: 12f1 |0016: const/4 v1, #int -1 // #ff
Dinvoke-custom.txt233 002684: 1a02 d600 |000c: const-string v2, "assertEquals f1: " // strin…
249 0x0000 - 0x0024 reg=3 f1 F
611 …invoke-virtual {v0}, Ljava/util/concurrent/atomic/AtomicInteger;.getAndIncrement:()I // method@00f1
1160 001c84: 1a01 f100 |0002: const-string v1, "bsmDJ(..., " // string@00f1
3364 …invoke-virtual {v0}, Ljava/util/concurrent/atomic/AtomicInteger;.getAndIncrement:()I // method@00f1
/art/compiler/optimizing/
Dcode_generator_mips.cc1115 FRegister f1 = loc1.AsFpuRegister<FRegister>(); in EmitSwap() local
1119 __ MovS(f2, f1); in EmitSwap()
1120 __ MovS(f1, FTMP); in EmitSwap()
1124 __ MovD(f2, f1); in EmitSwap()
1125 __ MovD(f1, FTMP); in EmitSwap()
1132 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>() in EmitSwap() local
1136 __ Mfc1(r2, f1); in EmitSwap()
1137 __ Mtc1(TMP, f1); in EmitSwap()
1154 FRegister f1 = loc1.IsFpuRegister() ? loc1.AsFpuRegister<FRegister>() in EmitSwap() local
1163 __ Mfc1(TMP, f1); in EmitSwap()
[all …]
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S2027 dmtc1 $v1, $f1 # place return value to FP return value
2205 dmtc1 $v1, $f1 # place return value to FP return value
2636 ldc1 $f1, 8($sp)
/art/runtime/interpreter/mterp/mips/
Dmain.S123 #define fv0f $$f1
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S677 sdc1 $f0, 0($a2) # store f0/f1 into result
2308 MTD $v0, $v1, $f0, $f1 # move float value to return value
3269 MTD $v0, $v1, $f0, $f1 # move float value to return value
/art/test/083-compiler-regressions/src/
DMain.java5340 float f1 = 1; in largeFrameFloat() local
7338 f1 += f0; in largeFrameFloat()
7340 f2 += f1; in largeFrameFloat()