Home
last modified time | relevance | path

Searched refs:IRMemoryMap (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/source/Expression/
DIRMemoryMap.cpp22 IRMemoryMap::IRMemoryMap(lldb::TargetSP target_sp) : m_target_wp(target_sp) { in IRMemoryMap() function in IRMemoryMap
27 IRMemoryMap::~IRMemoryMap() { in ~IRMemoryMap()
45 lldb::addr_t IRMemoryMap::FindSpace(size_t size) { in FindSpace()
164 IRMemoryMap::AllocationMap::iterator
165 IRMemoryMap::FindAllocation(lldb::addr_t addr, size_t size) { in FindAllocation()
183 bool IRMemoryMap::IntersectsAllocation(lldb::addr_t addr, size_t size) const { in IntersectsAllocation()
212 bool IRMemoryMap::AllocationsIntersect(lldb::addr_t addr1, size_t size1, in AllocationsIntersect()
227 lldb::ByteOrder IRMemoryMap::GetByteOrder() { in GetByteOrder()
241 uint32_t IRMemoryMap::GetAddressByteSize() { in GetAddressByteSize()
255 ExecutionContextScope *IRMemoryMap::GetBestExecutionContextScope() const { in GetBestExecutionContextScope()
[all …]
DMaterializer.cpp60 void MakeAllocation(IRMemoryMap &map, Status &err) { in MakeAllocation()
72 IRMemoryMap::eAllocationPolicyMirror, zero_memory, allocate_error); in MakeAllocation()
121 void DestroyAllocation(IRMemoryMap &map, Status &err) { in DestroyAllocation()
139 void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map, in Materialize()
190 void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map, in Dematerialize()
335 void DumpToLog(IRMemoryMap &map, lldb::addr_t process_address, in DumpToLog()
394 void Wipe(IRMemoryMap &map, lldb::addr_t process_address) override {} in Wipe()
426 void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map, in Materialize()
553 IRMemoryMap::eAllocationPolicyMirror, zero_memory, alloc_error); in Materialize()
594 void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map, in Dematerialize()
[all …]
DLLVMUserExpression.cpp311 IRMemoryMap::AllocationPolicy policy = in PrepareToExecuteJITExpression()
312 m_can_interpret ? IRMemoryMap::eAllocationPolicyHostOnly in PrepareToExecuteJITExpression()
313 : IRMemoryMap::eAllocationPolicyMirror; in PrepareToExecuteJITExpression()
344 IRMemoryMap::eAllocationPolicyHostOnly, zero_memory, alloc_error); in PrepareToExecuteJITExpression()
DCMakeLists.txt9 IRMemoryMap.cpp
DIRExecutionUnit.cpp45 : IRMemoryMap(target_sp), m_context_up(context_up.release()), in IRExecutionUnit()
/external/llvm-project/lldb/include/lldb/Expression/
DMaterializer.h48 IRMemoryMap &map, lldb::addr_t process_address) in Dematerializer()
60 IRMemoryMap *m_map = nullptr;
67 DematerializerSP Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
97 virtual void Materialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
99 virtual void Dematerialize(lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
103 virtual void DumpToLog(IRMemoryMap &map, lldb::addr_t process_address,
105 virtual void Wipe(IRMemoryMap &map, lldb::addr_t process_address) = 0;
DIRMemoryMap.h34 class IRMemoryMap {
36 IRMemoryMap(lldb::TargetSP target_sp);
37 ~IRMemoryMap();
DIRInterpreter.h25 class IRMemoryMap; variable
DIRExecutionUnit.h57 public IRMemoryMap,
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DIRForTarget.h47 class IRMemoryMap; variable
/external/llvm-project/lldb/tools/lldb-test/
Dlldb-test.cpp223 IRMemoryMap Map;
953 IRMemoryMap::AllocationPolicy AP = in evalMalloc()
954 UseHostOnlyAllocationPolicy ? IRMemoryMap::eAllocationPolicyHostOnly in evalMalloc()
955 : IRMemoryMap::eAllocationPolicyProcessOnly; in evalMalloc()