Searched refs:memory (Results 1 – 12 of 12) sorted by relevance
/art/compiler/optimizing/ |
D | stack_map_test.cc | 45 void* memory = arena.Alloc(size, kArenaAllocMisc); in TEST() local 46 MemoryRegion region(memory, size); in TEST() 92 void* memory = arena.Alloc(size, kArenaAllocMisc); in TEST() local 93 MemoryRegion region(memory, size); in TEST()
|
/art/test/074-gc-thrash/ |
D | info.txt | 1 This thrashes the memory allocator and garbage collector for a brief period.
|
/art/test/080-oom-throw/ |
D | info.txt | 1 Inject memory allocation failures for NEW_ARRAY and NEW_INSTANCE and make sure
|
/art/runtime/ |
D | stack.h | 134 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; in Create() local 135 return Create(num_vregs, link, method, dex_pc, memory); in Create() 140 mirror::ArtMethod* method, uint32_t dex_pc, void* memory) { in Create() argument 141 ShadowFrame* sf = new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in Create()
|
D | oat.cc | 51 void* memory = operator new (needed_size); in Create() local 54 return new (memory) OatHeader(instruction_set, in Create()
|
/art/runtime/verifier/ |
D | register_line.h | 54 void* memory = operator new(sizeof(RegisterLine) + (num_regs * sizeof(uint16_t))); in Create() local 55 RegisterLine* rl = new (memory) RegisterLine(num_regs, verifier); in Create()
|
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 202 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artPortableToInterpreterBridge() local 204 method, 0, memory)); in artPortableToInterpreterBridge()
|
/art/compiler/dex/quick/mips/ |
D | README.mips | 20 o The memory model. Verify that GenMemoryBarrier() generates the
|
/art/runtime/interpreter/ |
D | interpreter.cc | 428 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in EnterInterpreterFromInvoke() local 429 ShadowFrame* shadow_frame(ShadowFrame::Create(num_regs, last_shadow_frame, method, 0, memory)); in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 540 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoCall() local 541 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, method, 0, memory)); in DoCall()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 503 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artQuickToInterpreterBridge() local 505 ShadowFrame* shadow_frame(ShadowFrame::Create(num_regs, nullptr, method, 0, memory)); in artQuickToInterpreterBridge()
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 383 dmb ish @ full (LoadLoad|LoadStore) memory barrier 426 dmb ish @ full (LoadStore|StoreStore) memory barrier
|