/art/disassembler/ |
D | disassembler_x86.cc | 298 bool store = false; // stores to memory (ie rm is on the left) in DumpInstruction() local 316 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction() 317 case rm32_r32: opcode1 = #opname; store = true; has_modrm = true; break; \ in DumpInstruction() 395 store = true; in DumpInstruction() 399 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break; in DumpInstruction() 400 case 0x89: opcode1 = "mov"; store = true; has_modrm = true; break; in DumpInstruction() 423 store = !load; in DumpInstruction() 435 store = !load; in DumpInstruction() 447 store = !load; in DumpInstruction() 459 store = !load; in DumpInstruction() [all …]
|
/art/runtime/interpreter/mterp/x86/ |
D | op_const_wide_16.S | 5 SET_VREG_HIGH rIBASE, rINST # store msw 6 SET_VREG %eax, rINST # store lsw
|
D | op_const_wide_32.S | 5 SET_VREG_HIGH rIBASE, rINST # store msw 6 SET_VREG %eax, rINST # store lsw
|
D | cvtfp_int.S | 25 fistpll VREG_ADDRESS(%ecx) # convert and store 27 fistpl VREG_ADDRESS(%ecx) # convert and store
|
D | fpcvt.S | 11 $store VREG_ADDRESS(%ecx) # vA <- %st0
|
D | op_aput.S | 19 $store $reg, (%eax)
|
/art/compiler/optimizing/ |
D | induction_var_analysis_test.cc | 232 HInstruction* store = InsertArrayStore(basic_[0], 0); in TEST_F() local 235 EXPECT_STREQ("((1) * i + (0)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F() 239 EXPECT_FALSE(HaveSameInduction(store->InputAt(1), increment_[0])); in TEST_F() 328 HInstruction* store = InsertArrayStore(k_body, 0); in TEST_F() local 332 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F() 335 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc1)); in TEST_F() 336 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc2)); in TEST_F() 360 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local 363 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F() 377 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local [all …]
|
/art/test/114-ParallelGC/src/ |
D | Main.java | 75 private ArrayList<Object> store; field in Main 97 store = l; // Keep it alive. in work() 140 store = null; // Allow GC to reclaim it. in work()
|
/art/test/019-wrong-array-type/ |
D | expected.txt | 1 Got correct array store exception
|
/art/test/530-checker-lse/ |
D | info.txt | 1 Checker test for testing load-store elimination.
|
/art/runtime/ |
D | atomic.h | 220 this->store(desired, std::memory_order_relaxed); in PACKED() 225 this->store(desired, std::memory_order_relaxed); in PACKED() 230 this->store(desired, std::memory_order_release); in PACKED() 235 this->store(desired, std::memory_order_seq_cst); in PACKED()
|
/art/runtime/interpreter/mterp/x86_64/ |
D | op_const_wide_32.S | 3 SET_WIDE_VREG %rax, rINSTq # store
|
D | op_const_wide_16.S | 3 SET_WIDE_VREG %rax, rINSTq # store
|
D | op_aput.S | 22 $store $reg, $data_offset(%rax,%rcx,$shift)
|
/art/test/004-checker-UnsafeTest18/src/ |
D | Main.java | 113 private static void store() { in store() method in Main 253 store(); in main() 302 store(); in main() 331 store(); in main()
|
/art/test/608-checker-unresolved-lse/ |
D | info.txt | 1 Regression test for the load store elimination optimization,
|
/art/runtime/interpreter/mterp/arm64/ |
D | op_iput_quick.S | 12 $store w0, [x3, x1] // obj.field<- w0
|
D | op_aput.S | 27 $store w2, [x0, #$data_offset] // vBB[vCC]<- w2
|
/art/test/586-checker-null-array-get/ |
D | info.txt | 1 Regression test for the load store elimination of optimizing
|
/art/test/069-field-type/ |
D | info.txt | 1 This tests to see if the VM allows you to store a reference to an
|
/art/test/136-daemon-jni-shutdown/ |
D | daemon_jni_shutdown.cc | 54 vm_was_shutdown.store(true); in Java_Main_destroyJavaVMAndExit()
|
/art/runtime/interpreter/mterp/arm/ |
D | op_iput_quick.S | 12 $store r0, [r3, r1] @ obj.field<- r0
|
D | op_aput.S | 28 $store r2, [r0, #$data_offset] @ vBB[vCC]<- r2
|
/art/runtime/interpreter/mterp/mips/ |
D | op_iput_quick.S | 12 $store a0, 0(t0) # obj.field (8/16/32 bits) <- a0
|
/art/runtime/interpreter/mterp/mips64/ |
D | op_iput_quick.S | 12 $store a0, 0(a1) # obj.field <- a0
|