Searched refs:Malloc (Results 1 - 9 of 9) sorted by relevance
/external/lldb/include/lldb/Expression/ |
H A D | IRMemoryMap.h | 52 lldb::addr_t Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error);
|
/external/lldb/source/Expression/ |
H A D | IRInterpreter.cpp | 287 lldb::addr_t data_address = Malloc(value->getType()); 335 lldb::addr_t Malloc (size_t size, uint8_t byte_alignment) function in class:InterpreterStackFrame 351 return Malloc(m_target_data.getPointerSize(), m_target_data.getPointerPrefAlignment()); 354 lldb::addr_t Malloc (llvm::Type *type) function in class:InterpreterStackFrame 358 return Malloc(m_target_data.getTypeAllocSize(type), m_target_data.getPrefTypeAlignment(type)); 396 lldb::addr_t data_address = Malloc(value->getType()); 759 lldb::addr_t R = frame.Malloc(T); 770 lldb::addr_t P = frame.Malloc(Tptr);
|
H A D | IRExecutionUnit.cpp | 50 lldb::addr_t allocation_process_addr = Malloc (size, 630 record.m_process_address = Malloc(record.m_size,
|
H A D | Materializer.cpp | 85 lldb::addr_t mem = map.Malloc(m_persistent_variable_sp->GetByteSize(), 511 m_temporary_allocation = map.Malloc(data.GetByteSize(), byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error); 747 m_temporary_allocation = map.Malloc(byte_size, byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error);
|
H A D | ClangUserExpression.cpp | 671 m_materialized_address = m_execution_unit_ap->Malloc(m_materializer_ap->GetStructByteSize(), 692 m_stack_frame_bottom = m_execution_unit_ap->Malloc(stack_frame_size,
|
H A D | IRMemoryMap.cpp | 235 IRMemoryMap::Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error) function in class:IRMemoryMap 343 log->Printf("IRMemoryMap::Malloc (%" PRIu64 ", 0x%" PRIx64 ", 0x%" PRIx64 ", %s) -> 0x%" PRIx64,
|
/external/llvm/lib/IR/ |
H A D | Core.cpp | 2466 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local 2469 return wrap(unwrap(B)->Insert(Malloc, Twine(Name))); 2477 Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(), local 2480 return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
|
/external/llvm/lib/Transforms/IPO/ |
H A D | GlobalOpt.cpp | 1529 // If this is a fixed size array, transform the Malloc to be an alloc of 1536 Instruction *Malloc = CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, local 1539 Instruction *Cast = new BitCastInst(Malloc, CI->getType(), "tmp", CI); 1542 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc)) 1545 CI = cast<CallInst>(Malloc);
|
/external/compiler-rt/lib/msan/tests/ |
H A D | msan_test.cc | 321 TEST(MemorySanitizer, Malloc) {
|
Completed in 154 milliseconds