Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 36) sorted by relevance

12

/art/disassembler/
Ddisassembler_x86.cc298 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/
Dop_const_wide_16.S5 SET_VREG_HIGH rIBASE, rINST # store msw
6 SET_VREG %eax, rINST # store lsw
Dop_const_wide_32.S5 SET_VREG_HIGH rIBASE, rINST # store msw
6 SET_VREG %eax, rINST # store lsw
Dcvtfp_int.S25 fistpll VREG_ADDRESS(%ecx) # convert and store
27 fistpl VREG_ADDRESS(%ecx) # convert and store
Dfpcvt.S11 $store VREG_ADDRESS(%ecx) # vA <- %st0
Dop_aput.S19 $store $reg, (%eax)
/art/compiler/optimizing/
Dinduction_var_analysis_test.cc232 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/
DMain.java75 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/
Dexpected.txt1 Got correct array store exception
/art/test/530-checker-lse/
Dinfo.txt1 Checker test for testing load-store elimination.
/art/runtime/
Datomic.h220 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/
Dop_const_wide_32.S3 SET_WIDE_VREG %rax, rINSTq # store
Dop_const_wide_16.S3 SET_WIDE_VREG %rax, rINSTq # store
Dop_aput.S22 $store $reg, $data_offset(%rax,%rcx,$shift)
/art/test/004-checker-UnsafeTest18/src/
DMain.java113 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/
Dinfo.txt1 Regression test for the load store elimination optimization,
/art/runtime/interpreter/mterp/arm64/
Dop_iput_quick.S12 $store w0, [x3, x1] // obj.field<- w0
Dop_aput.S27 $store w2, [x0, #$data_offset] // vBB[vCC]<- w2
/art/test/586-checker-null-array-get/
Dinfo.txt1 Regression test for the load store elimination of optimizing
/art/test/069-field-type/
Dinfo.txt1 This tests to see if the VM allows you to store a reference to an
/art/test/136-daemon-jni-shutdown/
Ddaemon_jni_shutdown.cc54 vm_was_shutdown.store(true); in Java_Main_destroyJavaVMAndExit()
/art/runtime/interpreter/mterp/arm/
Dop_iput_quick.S12 $store r0, [r3, r1] @ obj.field<- r0
Dop_aput.S28 $store r2, [r0, #$data_offset] @ vBB[vCC]<- r2
/art/runtime/interpreter/mterp/mips/
Dop_iput_quick.S12 $store a0, 0(t0) # obj.field (8/16/32 bits) <- a0
/art/runtime/interpreter/mterp/mips64/
Dop_iput_quick.S12 $store a0, 0(a1) # obj.field <- a0

12