Searched defs:store (Results 1 - 5 of 5) sorted by relevance

/art/test/114-ParallelGC/src/
H A DMain.java75 private ArrayList<Object> store; field in class:Main
97 store = l; // Keep it alive.
140 store = null; // Allow GC to reclaim it.
/art/test/004-checker-UnsafeTest18/src/
H A DMain.java105 /// CHECK-START: void Main.store() intrinsics_recognition (after)
108 /// CHECK-START: void Main.store() instruction_simplifier (after)
111 /// CHECK-START: void Main.store() instruction_simplifier (after)
113 private static void store() { method in class:Main
253 store();
302 store();
331 store();
/art/compiler/optimizing/
H A Dinduction_var_analysis_test.cc162 // Inserts an array store with given `subscript` at depth d to
265 HInstruction* store = InsertArrayStore(basic_[0], 0); local
268 EXPECT_STREQ("((1) * i + (0)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str());
272 EXPECT_FALSE(HaveSameInduction(store->InputAt(1), increment_[0]));
362 HInstruction* store = InsertArrayStore(k_body, 0); local
367 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str());
370 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc1));
371 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc2));
395 HInstruction* store = InsertArrayStore(k, 0); local
398 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store
727 HInstruction* store = InsertArrayStore(k_header, 0); local
755 HInstruction* store = InsertArrayStore(k_header, 0); local
852 HInstruction* store = InsertArrayStore(k_header, 0); local
873 HInstruction* store = InsertArrayStore(k_header, 0); local
1056 HInstruction* store = InsertArrayStore(inc, 9); local
[all...]
H A Dload_store_elimination.cc564 for (HInstruction* store : possibly_removed_stores_) {
565 DCHECK(store->IsInstanceFieldSet() || store->IsStaticFieldSet() || store->IsArraySet());
566 store->GetBlock()->RemoveInstruction(store);
585 // If heap_values[index] is an instance field store, need to keep the store.
598 // Make sure the store is kept.
692 // Keep the last store i
774 HInstruction* store = heap_value; local
[all...]
/art/disassembler/
H A Ddisassembler_x86.cc330 bool store = false; // stores to memory (ie rm is on the left) local
348 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \
349 case rm32_r32: opcode1 = #opname; store = true; has_modrm = true; break; \
427 store = true;
431 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break;
432 case 0x89: opcode1 = "mov"; store = true; has_modrm = true; break;
456 store = !load;
468 store = !load;
480 store = !load;
492 store
[all...]

Completed in 1105 milliseconds