Searched defs:store (Results 1 - 5 of 5) sorted by relevance
/art/test/114-ParallelGC/src/ |
H A D | Main.java | 75 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 D | Main.java | 105 /// 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 D | induction_var_analysis_test.cc | 145 // Inserts an array store with given `subscript` at depth d to 232 HInstruction* store = InsertArrayStore(basic_[0], 0); local 235 EXPECT_STREQ("((1) * i + (0)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); 239 EXPECT_FALSE(HaveSameInduction(store->InputAt(1), increment_[0])); 328 HInstruction* store = InsertArrayStore(k_body, 0); local 332 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); 335 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc1)); 336 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc2)); 360 HInstruction* store = InsertArrayStore(k, 0); local 363 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store 377 HInstruction* store = InsertArrayStore(k, 0); local 402 HInstruction* store = InsertArrayStore(k, 0); local 493 HInstruction* store = InsertArrayStore(k, 0); local 562 HInstruction* store = InsertArrayStore(inc, 9); local [all...] |
H A D | load_store_elimination.cc | 71 // disable load/store optimizations on it. 564 HInstruction* store = possibly_removed_stores_[i]; local 565 DCHECK(store->IsInstanceFieldSet() || store->IsStaticFieldSet() || store->IsArraySet()); 566 store->GetBlock()->RemoveInstruction(store); 578 // If heap_values[index] is an instance field store, need to keep the store. 591 // Make sure the store i 730 HInstruction* store = heap_value; local [all...] |
/art/disassembler/ |
H A D | disassembler_x86.cc | 298 bool store = false; // stores to memory (ie rm is on the left) local 316 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \ 317 case rm32_r32: opcode1 = #opname; store = true; has_modrm = true; break; \ 395 store = true; 399 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break; 400 case 0x89: opcode1 = "mov"; store = true; has_modrm = true; break; 423 store = !load; 435 store = !load; 447 store = !load; 459 store [all...] |
Completed in 241 milliseconds