/art/compiler/utils/ |
D | assembler_thumb_test_expected.cc.inc | 11 " 18: f5ad 5d80 sub.w sp, sp, #4096 ; 0x1000\n", 16 " 24: f8dd 0400 ldr.w r0, [sp, #1024] ; 0x400\n", 17 " 28: f8dd cffc ldr.w ip, [sp, #4092] ; 0xffc\n", 18 " 2c: f50d 5c80 add.w ip, sp, #4096 ; 0x1000\n", 19 " 30: f8dc c000 ldr.w ip, [ip]\n", 20 " 34: f8d9 c200 ldr.w ip, [r9, #512] ; 0x200\n", 21 " 38: f8dc 0080 ldr.w r0, [ip, #128] ; 0x80\n", 26 " 44: f8cd 0400 str.w r0, [sp, #1024] ; 0x400\n", 27 " 48: f8cd cffc str.w ip, [sp, #4092] ; 0xffc\n", 28 " 4c: f84d 5d04 str.w r5, [sp, #-4]!\n", [all …]
|
/art/test/1960-obsolete-jit-multithread-native/src/ |
D | Main.java | 114 Consumer<Consumer<String>> say_nothing = (Consumer<String> w) -> { in doTest() 115 w.accept("Not doing anything here"); in doTest() 122 Consumer<Consumer<String>> request_redefine = (Consumer<String> w) -> { in doTest() 125 w.accept("Requesting redefinition"); in doTest() 146 Arrays.stream(watchers).forEach((w) -> { System.out.println(w.getOutput()); }); in doTest() 182 private TestWatcher w; field in Main.TestThread 186 TestWatcher w, in TestThread() argument 191 this.w = w; in TestThread() 197 w.clear(); in run() 198 t.nativeSayHi(do_nothing, w); in run() [all …]
|
/art/test/1961-obsolete-jit-multithread/src/ |
D | Main.java | 112 Consumer<Consumer<String>> say_nothing = (Consumer<String> w) -> { in doTest() 113 w.accept("Not doing anything here"); in doTest() 120 Consumer<Consumer<String>> request_redefine = (Consumer<String> w) -> { in doTest() 123 w.accept("Requesting redefinition"); in doTest() 144 Arrays.stream(watchers).forEach((w) -> { System.out.println(w.getOutput()); }); in doTest() 180 private TestWatcher w; field in Main.TestThread 184 TestWatcher w, in TestThread() argument 189 this.w = w; in TestThread() 195 w.clear(); in run() 196 t.sayHi(do_nothing, w); in run() [all …]
|
/art/test/916-obsolete-jit/src/ |
D | Main.java | 125 public static void doTest(Transform t, TestWatcher w) { in doTest() argument 148 w.accept("transforming calling function"); in doTest() 153 Runnable say_nothing = () -> { w.accept("Not doing anything here"); }; in doTest() 158 w.clear(); in doTest() 160 t.sayHi(say_nothing, w); in doTest() 161 t.sayHi(do_redefinition, w); in doTest() 162 t.sayHi(say_nothing, w); in doTest() 165 System.out.print(w.getOutput()); in doTest()
|
/art/test/919-obsolete-fields/src/art/ |
D | Test919.java | 153 TestWatcher w = new TestWatcher(); in run() local 154 doTest(new Transform(w), w); in run() 157 public static void doTest(Transform t, TestWatcher w) { in doTest() argument 159 w.accept("transforming calling function"); in doTest() 163 Runnable say_nothing = () -> { w.accept("Not doing anything here"); }; in doTest() 171 System.out.print(w.getOutput()); in doTest()
|
/art/test/133-static-invoke-super/src/ |
D | Main.java | 4 protected static int getVar(int w) { in getVar() argument 5 return w & 0xF; in getVar() 9 final int getVarDirect(int w) { in getVarDirect() argument 10 return w & 0xF; in getVarDirect()
|
/art/runtime/gc/accounting/ |
D | space_bitmap-inl.h | 123 uintptr_t w = bitmap_begin_[i].load(std::memory_order_relaxed); in VisitMarkedRange() local 124 if (w != 0) { in VisitMarkedRange() 128 const size_t shift = CTZ(w); in VisitMarkedRange() 131 w ^= (static_cast<uintptr_t>(1)) << shift; in VisitMarkedRange() 132 } while (w != 0); in VisitMarkedRange() 172 uintptr_t w = bitmap_begin[i].load(std::memory_order_relaxed); in Walk() local 173 if (w != 0) { in Walk() 176 const size_t shift = CTZ(w); in Walk() 179 w ^= (static_cast<uintptr_t>(1)) << shift; in Walk() 180 } while (w != 0); in Walk()
|
D | bitmap-inl.h | 97 uintptr_t w = bitmap_begin_[i]; in VisitSetBits() local 98 if (w != 0) { in VisitSetBits() 101 const size_t shift = CTZ(w); in VisitSetBits() 103 w ^= static_cast<uintptr_t>(1) << shift; in VisitSetBits() 104 } while (w != 0); in VisitSetBits()
|
/art/test/716-jli-jit-samples/src-art/ |
D | Main.java | 85 Widget w = (Widget) mh.invoke(3); in testMethodHandleCounters() local 86 w = (Widget) mh.invokeExact(3); in testMethodHandleCounters() 113 Widget w = new Widget(0); in testVarHandleCounters() local 116 widgetIdVarHandle.set(w, i); in testVarHandleCounters() 117 assertEquals(i, widgetIdVarHandle.get(w)); in testVarHandleCounters()
|
/art/test/530-checker-loops1/src/ |
D | Main.java | 166 int w = x.length - 1; in wrapAroundThenLinear() local 169 result += x[w]; in wrapAroundThenLinear() 170 w = i; in wrapAroundThenLinear() 183 int w = x.length - 1; in wrapAroundThenLinearThreeWayPhi() local 186 if (x[w] == 1) { in wrapAroundThenLinearThreeWayPhi() 187 w = i++; in wrapAroundThenLinearThreeWayPhi() 190 result += x[w]; in wrapAroundThenLinearThreeWayPhi() 191 w = i++; in wrapAroundThenLinearThreeWayPhi()
|
/art/test/988-method-trace/src/art/ |
D | Test988.java | 79 StringWriter w = new StringWriter(); in genericToString() local 81 w.write(thr.getClass().getName() + ": " + thr.getMessage() + "\n"); in genericToString() 84 w.write("\t" + e + "\n"); in genericToString() 86 w.write("\t<additional hidden frames>\n"); in genericToString() 90 return w.toString(); in genericToString()
|
/art/test/924-threads/src/art/ |
D | Test924.java | 114 final NativeWaiter w = new NativeWaiter(); in doStateTests() local 145 nativeLoop(w.struct); in doStateTests() 208 w.waitForNative(); in doStateTests() 210 w.finish(); in doStateTests() 484 private static native void nativeLoop(long w); in nativeLoop() argument
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 89 StringWriter w = new StringWriter(); in genericToString() local 90 ((Throwable) val).printStackTrace(new PrintWriter(w)); in genericToString() 91 return w.toString(); in genericToString()
|
/art/test/712-varhandle-invocations/src/ |
D | VarHandleTypeConversionTests.java | 1088 private Widget w = INITIAL_VALUE; field in VarHandleTypeConversionTests.SubtypeTest 1133 assertEquals(WidgetChild.ONE, this.w); in doTest() 1137 assertEquals(WidgetChild.TWO, w); in doTest() 1139 assertEquals(Widget.ONE, w); in doTest() 1142 assertEquals(Widget.TWO, w); in doTest() 1147 assertEquals(WidgetChild.ONE, w); in doTest() 1150 assertEquals(WidgetChild.TWO, w); in doTest() 1153 assertEquals(null, w); in doTest() 1155 assertEquals(WidgetChild.ONE, w); in doTest() 1222 private Widget w = null; field in VarHandleTypeConversionTests.SupertypeTest
|
/art/test/530-checker-loops2/src/ |
D | Main.java | 655 int w = 9; in wrapAroundDynamicBCE() local 658 result += x[w]; in wrapAroundDynamicBCE() 659 w = i; in wrapAroundDynamicBCE() 854 long[] w, in dynamicBCEAndConstantIndicesAllPrimTypes() argument 861 (int) w[0] + (int) x[0] + (int) y[0]; in dynamicBCEAndConstantIndicesAllPrimTypes()
|
/art/runtime/interpreter/mterp/mips64/ |
D | floating_point.S | 226 trunc.w.d f0, f0 246 trunc.w.s f0, f0 261 cvt.d.w f0, f0 271 cvt.s.w f0, f0
|
/art/disassembler/ |
D | Android.bp | 54 …t-disassembler/linux_glibc_x86_64_static/obj/art/disassembler/disassembler_mips.o [-w dupbuild=err]
|
/art/test/623-checker-loop-regressions/src/ |
D | Main.java | 103 int w = 10; in transferNarrowWrap() local 106 v = w + 1; // transfer on wrap-around in transferNarrowWrap() 107 w = x; // wrap-around in transferNarrowWrap()
|
/art/test/800-smali/smali/ |
D | sameFieldNames.smali | 46 .field static public w:I
|
/art/test/953-invoke-polymorphic-compiler/src/ |
D | Main.java | 105 int u, int v, int w, int x, in Min2Print26() argument 108 n, o, p, q, r, s, t, u, v, w, x, y, z }; in Min2Print26()
|
/art/runtime/interpreter/mterp/mips/ |
D | floating_point.S | 289 trunc.w.d fa0, fa0 375 trunc.w.s fa0, fa0
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 111 uint8_t X86_64Assembler::EmitVexByte2(bool w, int l, X86_64ManagedRegister operand, int pp) { in EmitVexByte2() argument 114 if (w) { in EmitVexByte2() 2704 void X86_64Assembler::rex(bool force, bool w, Register* r, Register* x, Register* b) { 2711 if (w) { 2731 void X86_64Assembler::rex_reg_mem(bool force, bool w, Register* dst, const Address& mem) { 2741 if (w) { 2753 void rex_mem_reg(bool force, bool w, Address* mem, Register* src); 3751 void X86_64Assembler::EmitOptionalRex(bool force, bool w, bool r, bool x, bool b) { in EmitOptionalRex() argument 3758 if (w) { in EmitOptionalRex()
|
D | assembler_x86_64.h | 933 void EmitOptionalRex(bool force, bool w, bool r, bool x, bool b); 962 uint8_t EmitVexByte2(bool w , int l , X86_64ManagedRegister operand, int pp);
|
/art/test/959-invoke-polymorphic-accessors/src/ |
D | Main.java | 760 long w = (long) h0.invoke(); in testStaticGetter() local 783 long w = (long) h0.invoke(valueHolder); in testMemberGetter() local
|
/art/runtime/jni/ |
D | check_jni.cc | 148 jobjectRefType w; member 989 switch (arg.w) { in CheckNonHeapValue() 1162 switch (arg.w) { in TraceNonHeapValue() 1818 result.w = baseEnv(env)->GetObjectRefType(env, obj); in GetObjectRefType() 1820 return result.w; in GetObjectRefType()
|