Searched refs:allocation (Results 1 – 17 of 17) sorted by relevance
/art/test/526-checker-caller-callee-regs/ |
D | info.txt | 1 Test allocation of caller and callee saved registers.
|
/art/test/530-checker-lse2/ |
D | info.txt | 1 Checker test for testing store/allocation elimination in presence of
|
/art/test/529-long-split/ |
D | info.txt | 2 during register allocation.
|
/art/tools/jvmti-agents/ti-alloc-sample/ |
D | ti_alloc_sample.cc | 282 std::ostringstream allocation; in formatAllocation() local 283 allocation << "jthread[" << sti.GetName() << "]"; in formatAllocation() 286 allocation << ", jclass[" << sci << "]"; in formatAllocation() 288 allocation << ", jclass[TYPE UNKNOWN]"; in formatAllocation() 290 allocation << ", size[" << size.val << ", hex: 0x" << std::hex << size.val << "]"; in formatAllocation() 291 return string_table->Intern("+", allocation.str()); in formatAllocation()
|
D | README.md | 59 The line starting with 0 is the thread, type, and size (TTS) of an allocation. The
|
/art/test/659-unpadded-array/ |
D | info.txt | 2 a bug when the request for allocation ended up using 'usable_size'
|
/art/test/080-oom-throw/ |
D | info.txt | 1 Inject memory allocation failures for NEW_ARRAY and NEW_INSTANCE and make sure
|
/art/test/800-smali/smali/ |
D | b_22331663_pass.smali | 17 # Do an allocation here. This will force heap checking in gcstress mode.
|
/art/libartbase/base/ |
D | arena_allocator_test.cc | 142 void* allocation = allocator.Alloc(size); in TEST_F() local 143 EXPECT_TRUE(IsAligned<ArenaAllocator::kAlignment>(allocation)) in TEST_F() 144 << reinterpret_cast<uintptr_t>(allocation); in TEST_F()
|
/art/test/563-checker-fakestring/smali/ |
D | TestCase.smali | 70 # Test deoptimization between String's allocation and initialization. When not 98 # String allocation should succeed. 200 # Test with a loop between allocation and String.<init>. 219 # Test with a loop and aliases between allocation and String.<init>. 282 # Test with a loop between allocation and String.<init> and a null check.
|
/art/test/530-checker-lse-ctor-fences/smali/ |
D | Smali.smali | 28 # The object allocation will not be eliminated by LSE because of aliased stores.
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 25 # Test register allocation of 32-bit core intervals crossing catch block positions. 58 # Test register allocation of 64-bit core intervals crossing catch block positions. 109 # Test register allocation of 32-bit floating-point intervals crossing catch block positions. 145 # Test register allocation of 64-bit floating-point intervals crossing catch block positions.
|
/art/compiler/optimizing/ |
D | instruction_builder.h | 274 void BuildConstructorFenceForAllocation(HInstruction* allocation);
|
D | instruction_builder.cc | 1102 void HInstructionBuilder::BuildConstructorFenceForAllocation(HInstruction* allocation) { in BuildConstructorFenceForAllocation() argument 1103 DCHECK(allocation != nullptr && in BuildConstructorFenceForAllocation() 1104 (allocation->IsNewInstance() || in BuildConstructorFenceForAllocation() 1105 allocation->IsNewArray())); // corresponding to "new" keyword in JLS. in BuildConstructorFenceForAllocation() 1107 if (allocation->IsNewInstance()) { in BuildConstructorFenceForAllocation() 1116 HNewInstance* new_inst = allocation->AsNewInstance(); in BuildConstructorFenceForAllocation() 1147 new (allocator_) HConstructorFence(allocation, allocation->GetDexPc(), allocator_); in BuildConstructorFenceForAllocation()
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 467 uintptr_t allocation = FromCodeToAllocation(code_ptr); in FreeCodeAndData() local 477 private_region_.FreeCode(reinterpret_cast<uint8_t*>(allocation)); in FreeCodeAndData() 1207 uintptr_t allocation = FromCodeToAllocation(code_ptr); in RemoveUnmarkedCode() local 1208 if (IsInZygoteExecSpace(code_ptr) || GetLiveBitmap()->Test(allocation)) { in RemoveUnmarkedCode()
|
/art/test/ |
D | Android.bp | 302 "904-object-allocation/tracking.cc", 635 "904-object-allocation/src/art/Test904.java", 788 "904-object-allocation/expected.txt",
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 667 @ save callee saves in case exception allocation triggers GC
|