blob: 4d5c78e19b5732ed191ee2fd09058b25039386aa [file] [log] [blame]
Sean Callanan5a1af4e2013-04-05 02:22:57 +00001//===-- IRExecutionUnit.cpp -------------------------------------*- C++ -*-===//
Sean Callanan8dfb68e2013-03-19 00:10:07 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// C Includes
11// C++ Includes
12// Other libraries and framework includes
13#include "llvm/ExecutionEngine/ExecutionEngine.h"
Sean Callanan44bc6572013-03-27 03:09:55 +000014#include "llvm/IR/LLVMContext.h"
Sean Callanan8dfb68e2013-03-19 00:10:07 +000015#include "llvm/IR/Module.h"
Sean Callanan44bc6572013-03-27 03:09:55 +000016#include "llvm/Support/SourceMgr.h"
Sean Callanan8dfb68e2013-03-19 00:10:07 +000017// Project includes
18#include "lldb/Core/DataBufferHeap.h"
19#include "lldb/Core/DataExtractor.h"
20#include "lldb/Core/Disassembler.h"
21#include "lldb/Core/Log.h"
22#include "lldb/Expression/IRExecutionUnit.h"
23#include "lldb/Target/ExecutionContext.h"
24#include "lldb/Target/Target.h"
25
26using namespace lldb_private;
27
Greg Clayton7b0992d2013-04-18 22:45:39 +000028IRExecutionUnit::IRExecutionUnit (std::unique_ptr<llvm::LLVMContext> &context_ap,
29 std::unique_ptr<llvm::Module> &module_ap,
Sean Callanan8dfb68e2013-03-19 00:10:07 +000030 ConstString &name,
Sean Callananb024d872013-04-15 17:12:47 +000031 const lldb::TargetSP &target_sp,
Sean Callanan8dfb68e2013-03-19 00:10:07 +000032 std::vector<std::string> &cpu_features) :
Sean Callananb024d872013-04-15 17:12:47 +000033 IRMemoryMap(target_sp),
Greg Claytone01e07b2013-04-18 18:10:51 +000034 m_context_ap(context_ap.release()),
35 m_module_ap(module_ap.release()),
Sean Callanan8dfb68e2013-03-19 00:10:07 +000036 m_module(m_module_ap.get()),
Sean Callanan2c047352013-03-19 23:03:21 +000037 m_cpu_features(cpu_features),
Sean Callanan8dfb68e2013-03-19 00:10:07 +000038 m_name(name),
39 m_did_jit(false),
40 m_function_load_addr(LLDB_INVALID_ADDRESS),
41 m_function_end_load_addr(LLDB_INVALID_ADDRESS)
42{
Sean Callanan8dfb68e2013-03-19 00:10:07 +000043}
44
45lldb::addr_t
46IRExecutionUnit::WriteNow (const uint8_t *bytes,
47 size_t size,
48 Error &error)
49{
Sean Callanan5a1af4e2013-04-05 02:22:57 +000050 lldb::addr_t allocation_process_addr = Malloc (size,
51 8,
52 lldb::ePermissionsWritable | lldb::ePermissionsReadable,
53 eAllocationPolicyMirror,
54 error);
55
56 if (!error.Success())
57 return LLDB_INVALID_ADDRESS;
58
59 WriteMemory(allocation_process_addr, bytes, size, error);
60
61 if (!error.Success())
62 {
63 Error err;
64 Free (allocation_process_addr, err);
65
66 return LLDB_INVALID_ADDRESS;
67 }
68
69 if (Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS))
70 {
71 DataBufferHeap my_buffer(size, 0);
72 Error err;
73 ReadMemory(my_buffer.GetBytes(), allocation_process_addr, size, err);
74
75 if (err.Success())
76 {
77 DataExtractor my_extractor(my_buffer.GetBytes(), my_buffer.GetByteSize(), lldb::eByteOrderBig, 8);
Sean Callanan4f2c1982014-01-21 00:54:48 +000078 my_extractor.PutToLog(log, 0, my_buffer.GetByteSize(), allocation_process_addr, 16, DataExtractor::TypeUInt8);
Sean Callanan5a1af4e2013-04-05 02:22:57 +000079 }
Sean Callanan8dfb68e2013-03-19 00:10:07 +000080 }
81
Sean Callanan5a1af4e2013-04-05 02:22:57 +000082 return allocation_process_addr;
Sean Callanan8dfb68e2013-03-19 00:10:07 +000083}
84
85void
86IRExecutionUnit::FreeNow (lldb::addr_t allocation)
87{
Sean Callanan8dfb68e2013-03-19 00:10:07 +000088 if (allocation == LLDB_INVALID_ADDRESS)
89 return;
90
Sean Callanan5a1af4e2013-04-05 02:22:57 +000091 Error err;
Sean Callanan8dfb68e2013-03-19 00:10:07 +000092
Sean Callanan5a1af4e2013-04-05 02:22:57 +000093 Free(allocation, err);
Sean Callanan8dfb68e2013-03-19 00:10:07 +000094}
95
96Error
97IRExecutionUnit::DisassembleFunction (Stream &stream,
98 lldb::ProcessSP &process_wp)
99{
Greg Clayton5160ce52013-03-27 23:08:40 +0000100 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000101
102 ExecutionContext exe_ctx(process_wp);
103
104 Error ret;
105
106 ret.Clear();
107
108 lldb::addr_t func_local_addr = LLDB_INVALID_ADDRESS;
109 lldb::addr_t func_remote_addr = LLDB_INVALID_ADDRESS;
110
111 for (JittedFunction &function : m_jitted_functions)
112 {
113 if (strstr(function.m_name.c_str(), m_name.AsCString()))
114 {
115 func_local_addr = function.m_local_addr;
116 func_remote_addr = function.m_remote_addr;
117 }
118 }
119
120 if (func_local_addr == LLDB_INVALID_ADDRESS)
121 {
122 ret.SetErrorToGenericError();
123 ret.SetErrorStringWithFormat("Couldn't find function %s for disassembly", m_name.AsCString());
124 return ret;
125 }
126
127 if (log)
128 log->Printf("Found function, has local address 0x%" PRIx64 " and remote address 0x%" PRIx64, (uint64_t)func_local_addr, (uint64_t)func_remote_addr);
129
130 std::pair <lldb::addr_t, lldb::addr_t> func_range;
131
132 func_range = GetRemoteRangeForLocal(func_local_addr);
133
134 if (func_range.first == 0 && func_range.second == 0)
135 {
136 ret.SetErrorToGenericError();
137 ret.SetErrorStringWithFormat("Couldn't find code range for function %s", m_name.AsCString());
138 return ret;
139 }
140
141 if (log)
142 log->Printf("Function's code range is [0x%" PRIx64 "+0x%" PRIx64 "]", func_range.first, func_range.second);
143
144 Target *target = exe_ctx.GetTargetPtr();
145 if (!target)
146 {
147 ret.SetErrorToGenericError();
148 ret.SetErrorString("Couldn't find the target");
149 return ret;
150 }
151
152 lldb::DataBufferSP buffer_sp(new DataBufferHeap(func_range.second, 0));
153
154 Process *process = exe_ctx.GetProcessPtr();
155 Error err;
156 process->ReadMemory(func_remote_addr, buffer_sp->GetBytes(), buffer_sp->GetByteSize(), err);
157
158 if (!err.Success())
159 {
160 ret.SetErrorToGenericError();
161 ret.SetErrorStringWithFormat("Couldn't read from process: %s", err.AsCString("unknown error"));
162 return ret;
163 }
164
165 ArchSpec arch(target->GetArchitecture());
166
167 const char *plugin_name = NULL;
168 const char *flavor_string = NULL;
Jim Ingham56d40422013-07-31 02:19:15 +0000169 lldb::DisassemblerSP disassembler_sp = Disassembler::FindPlugin(arch, flavor_string, plugin_name);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000170
Jim Ingham56d40422013-07-31 02:19:15 +0000171 if (!disassembler_sp)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000172 {
173 ret.SetErrorToGenericError();
174 ret.SetErrorStringWithFormat("Unable to find disassembler plug-in for %s architecture.", arch.GetArchitectureName());
175 return ret;
176 }
177
178 if (!process)
179 {
180 ret.SetErrorToGenericError();
181 ret.SetErrorString("Couldn't find the process");
182 return ret;
183 }
184
185 DataExtractor extractor(buffer_sp,
186 process->GetByteOrder(),
187 target->GetArchitecture().GetAddressByteSize());
188
189 if (log)
190 {
191 log->Printf("Function data has contents:");
Greg Clayton5160ce52013-03-27 23:08:40 +0000192 extractor.PutToLog (log,
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000193 0,
194 extractor.GetByteSize(),
195 func_remote_addr,
196 16,
197 DataExtractor::TypeUInt8);
198 }
199
Jim Ingham56d40422013-07-31 02:19:15 +0000200 disassembler_sp->DecodeInstructions (Address (func_remote_addr), extractor, 0, UINT32_MAX, false, false);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000201
Jim Ingham56d40422013-07-31 02:19:15 +0000202 InstructionList &instruction_list = disassembler_sp->GetInstructionList();
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000203 const uint32_t max_opcode_byte_size = instruction_list.GetMaxOpcocdeByteSize();
204
205 for (size_t instruction_index = 0, num_instructions = instruction_list.GetSize();
206 instruction_index < num_instructions;
207 ++instruction_index)
208 {
209 Instruction *instruction = instruction_list.GetInstructionAtIndex(instruction_index).get();
210 instruction->Dump (&stream,
211 max_opcode_byte_size,
212 true,
213 true,
214 &exe_ctx);
215 stream.PutChar('\n');
216 }
Jim Ingham56d40422013-07-31 02:19:15 +0000217 // FIXME: The DisassemblerLLVMC has a reference cycle and won't go away if it has any active instructions.
218 // I'll fix that but for now, just clear the list and it will go away nicely.
219 disassembler_sp->GetInstructionList().Clear();
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000220 return ret;
221}
222
Sean Callanan44bc6572013-03-27 03:09:55 +0000223static void ReportInlineAsmError(const llvm::SMDiagnostic &diagnostic, void *Context, unsigned LocCookie)
224{
225 Error *err = static_cast<Error*>(Context);
226
227 if (err && err->Success())
228 {
229 err->SetErrorToGenericError();
230 err->SetErrorStringWithFormat("Inline assembly error: %s", diagnostic.getMessage().str().c_str());
231 }
232}
233
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000234void
235IRExecutionUnit::GetRunnableInfo(Error &error,
236 lldb::addr_t &func_addr,
237 lldb::addr_t &func_end)
238{
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000239 lldb::ProcessSP process_sp(GetProcessWP().lock());
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000240
241 func_addr = LLDB_INVALID_ADDRESS;
242 func_end = LLDB_INVALID_ADDRESS;
243
244 if (!process_sp)
245 {
246 error.SetErrorToGenericError();
247 error.SetErrorString("Couldn't write the JIT compiled code into the process because the process is invalid");
248 return;
249 }
250
251 if (m_did_jit)
252 {
253 func_addr = m_function_load_addr;
254 func_end = m_function_end_load_addr;
255
256 return;
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000257 };
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000258
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000259 m_did_jit = true;
260
261 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
262
263 std::string error_string;
264
265 if (log)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000266 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000267 std::string s;
268 llvm::raw_string_ostream oss(s);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000269
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000270 m_module->print(oss, NULL);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000271
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000272 oss.flush();
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000273
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000274 log->Printf ("Module being sent to JIT: \n%s", s.c_str());
275 }
276
277 llvm::Triple triple(m_module->getTargetTriple());
278 llvm::Function *function = m_module->getFunction (m_name.AsCString());
279 llvm::Reloc::Model relocModel;
280 llvm::CodeModel::Model codeModel;
281
282 if (triple.isOSBinFormatELF())
283 {
284 relocModel = llvm::Reloc::Static;
285 // This will be small for 32-bit and large for 64-bit.
286 codeModel = llvm::CodeModel::JITDefault;
287 }
288 else
289 {
290 relocModel = llvm::Reloc::PIC_;
291 codeModel = llvm::CodeModel::Small;
292 }
293
294 m_module_ap->getContext().setInlineAsmDiagnosticHandler(ReportInlineAsmError, &error);
295
296 llvm::EngineBuilder builder(m_module_ap.get());
297
298 builder.setEngineKind(llvm::EngineKind::JIT)
299 .setErrorStr(&error_string)
300 .setRelocationModel(relocModel)
301 .setJITMemoryManager(new MemoryManager(*this))
302 .setOptLevel(llvm::CodeGenOpt::Less)
303 .setAllocateGVsWithCode(true)
304 .setCodeModel(codeModel)
305 .setUseMCJIT(true);
306
307 llvm::StringRef mArch;
308 llvm::StringRef mCPU;
309 llvm::SmallVector<std::string, 0> mAttrs;
310
311 for (std::string &feature : m_cpu_features)
312 mAttrs.push_back(feature);
313
314 llvm::TargetMachine *target_machine = builder.selectTarget(triple,
315 mArch,
316 mCPU,
317 mAttrs);
318
319 m_execution_engine_ap.reset(builder.create(target_machine));
320
321 if (!m_execution_engine_ap.get())
322 {
323 error.SetErrorToGenericError();
324 error.SetErrorStringWithFormat("Couldn't JIT the function: %s", error_string.c_str());
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000325 return;
326 }
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000327 else
328 {
329 m_module_ap.release(); // ownership was transferred
330 }
331
332 m_execution_engine_ap->DisableLazyCompilation();
333
334 // We don't actually need the function pointer here, this just forces it to get resolved.
335
336 void *fun_ptr = m_execution_engine_ap->getPointerToFunction(function);
337
338 if (!error.Success())
339 {
340 // We got an error through our callback!
341 return;
342 }
343
344 if (!function)
345 {
346 error.SetErrorToGenericError();
347 error.SetErrorStringWithFormat("Couldn't find '%s' in the JITted module", m_name.AsCString());
348 return;
349 }
350
351 if (!fun_ptr)
352 {
353 error.SetErrorToGenericError();
354 error.SetErrorStringWithFormat("'%s' was in the JITted module but wasn't lowered", m_name.AsCString());
355 return;
356 }
357
358 m_jitted_functions.push_back (JittedFunction(m_name.AsCString(), (lldb::addr_t)fun_ptr));
359
360 CommitAllocations(process_sp);
361 ReportAllocations(*m_execution_engine_ap);
362 WriteData(process_sp);
363
364 for (JittedFunction &jitted_function : m_jitted_functions)
365 {
366 jitted_function.m_remote_addr = GetRemoteAddressForLocal (jitted_function.m_local_addr);
367
368 if (!jitted_function.m_name.compare(m_name.AsCString()))
369 {
370 AddrRange func_range = GetRemoteRangeForLocal(jitted_function.m_local_addr);
371 m_function_end_load_addr = func_range.first + func_range.second;
372 m_function_load_addr = jitted_function.m_remote_addr;
373 }
374 }
375
376 if (log)
377 {
378 log->Printf("Code can be run in the target.");
379
380 StreamString disassembly_stream;
381
382 Error err = DisassembleFunction(disassembly_stream, process_sp);
383
384 if (!err.Success())
385 {
386 log->Printf("Couldn't disassemble function : %s", err.AsCString("unknown error"));
387 }
388 else
389 {
390 log->Printf("Function disassembly:\n%s", disassembly_stream.GetData());
391 }
Sean Callanan4f2c1982014-01-21 00:54:48 +0000392
393 log->Printf("Sections: ");
394 for (AllocationRecord &record : m_records)
395 {
396 if (record.m_process_address != LLDB_INVALID_ADDRESS)
397 {
398 record.dump(log);
399
400 DataBufferHeap my_buffer(record.m_size, 0);
401 Error err;
402 ReadMemory(my_buffer.GetBytes(), record.m_process_address, record.m_size, err);
403
404 if (err.Success())
405 {
406 DataExtractor my_extractor(my_buffer.GetBytes(), my_buffer.GetByteSize(), lldb::eByteOrderBig, 8);
407 my_extractor.PutToLog(log, 0, my_buffer.GetByteSize(), record.m_process_address, 16, DataExtractor::TypeUInt8);
408 }
409 }
410 }
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000411 }
412
413 func_addr = m_function_load_addr;
414 func_end = m_function_end_load_addr;
415
416 return;
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000417}
418
419IRExecutionUnit::~IRExecutionUnit ()
420{
Sean Callanan14b1bae2013-04-16 23:25:35 +0000421 m_module_ap.reset();
422 m_execution_engine_ap.reset();
423 m_context_ap.reset();
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000424}
425
426IRExecutionUnit::MemoryManager::MemoryManager (IRExecutionUnit &parent) :
427 m_default_mm_ap (llvm::JITMemoryManager::CreateDefaultMemManager()),
428 m_parent (parent)
429{
430}
431
432void
433IRExecutionUnit::MemoryManager::setMemoryWritable ()
434{
435 m_default_mm_ap->setMemoryWritable();
436}
437
438void
439IRExecutionUnit::MemoryManager::setMemoryExecutable ()
440{
441 m_default_mm_ap->setMemoryExecutable();
442}
443
444
445uint8_t *
446IRExecutionUnit::MemoryManager::startFunctionBody(const llvm::Function *F,
447 uintptr_t &ActualSize)
448{
449 return m_default_mm_ap->startFunctionBody(F, ActualSize);
450}
451
452uint8_t *
453IRExecutionUnit::MemoryManager::allocateStub(const llvm::GlobalValue* F,
454 unsigned StubSize,
455 unsigned Alignment)
456{
Greg Clayton5160ce52013-03-27 23:08:40 +0000457 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000458
459 uint8_t *return_value = m_default_mm_ap->allocateStub(F, StubSize, Alignment);
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000460
461 m_parent.m_records.push_back(AllocationRecord((uintptr_t)return_value,
462 lldb::ePermissionsReadable | lldb::ePermissionsWritable,
463 StubSize,
464 Alignment));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000465
466 if (log)
467 {
468 log->Printf("IRExecutionUnit::allocateStub (F=%p, StubSize=%u, Alignment=%u) = %p",
469 F, StubSize, Alignment, return_value);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000470 }
Sean Callanan2c047352013-03-19 23:03:21 +0000471
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000472 return return_value;
473}
474
475void
476IRExecutionUnit::MemoryManager::endFunctionBody(const llvm::Function *F,
477 uint8_t *FunctionStart,
478 uint8_t *FunctionEnd)
479{
480 m_default_mm_ap->endFunctionBody(F, FunctionStart, FunctionEnd);
481}
482
483uint8_t *
484IRExecutionUnit::MemoryManager::allocateSpace(intptr_t Size, unsigned Alignment)
485{
Greg Clayton5160ce52013-03-27 23:08:40 +0000486 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000487
488 uint8_t *return_value = m_default_mm_ap->allocateSpace(Size, Alignment);
489
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000490 m_parent.m_records.push_back(AllocationRecord((uintptr_t)return_value,
491 lldb::ePermissionsReadable | lldb::ePermissionsWritable,
492 Size,
493 Alignment));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000494
495 if (log)
496 {
497 log->Printf("IRExecutionUnit::allocateSpace(Size=%" PRIu64 ", Alignment=%u) = %p",
498 (uint64_t)Size, Alignment, return_value);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000499 }
Sean Callanan2c047352013-03-19 23:03:21 +0000500
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000501 return return_value;
502}
503
504uint8_t *
505IRExecutionUnit::MemoryManager::allocateCodeSection(uintptr_t Size,
506 unsigned Alignment,
Filip Pizlobfcff682013-10-02 01:43:46 +0000507 unsigned SectionID,
508 llvm::StringRef SectionName)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000509{
Greg Clayton5160ce52013-03-27 23:08:40 +0000510 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000511
Filip Pizlobfcff682013-10-02 01:43:46 +0000512 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID, SectionName);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000513
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000514 m_parent.m_records.push_back(AllocationRecord((uintptr_t)return_value,
Sean Callananec1c0b32013-04-09 01:13:08 +0000515 lldb::ePermissionsReadable | lldb::ePermissionsExecutable,
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000516 Size,
517 Alignment,
518 SectionID));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000519
520 if (log)
521 {
522 log->Printf("IRExecutionUnit::allocateCodeSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
523 (uint64_t)Size, Alignment, SectionID, return_value);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000524 }
Sean Callanan2c047352013-03-19 23:03:21 +0000525
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000526 return return_value;
527}
528
529uint8_t *
530IRExecutionUnit::MemoryManager::allocateDataSection(uintptr_t Size,
531 unsigned Alignment,
532 unsigned SectionID,
Filip Pizlobfcff682013-10-02 01:43:46 +0000533 llvm::StringRef SectionName,
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000534 bool IsReadOnly)
535{
Greg Clayton5160ce52013-03-27 23:08:40 +0000536 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000537
Filip Pizlobfcff682013-10-02 01:43:46 +0000538 uint8_t *return_value = m_default_mm_ap->allocateDataSection(Size, Alignment, SectionID, SectionName, IsReadOnly);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000539
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000540 m_parent.m_records.push_back(AllocationRecord((uintptr_t)return_value,
541 lldb::ePermissionsReadable | lldb::ePermissionsWritable,
542 Size,
543 Alignment,
544 SectionID));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000545 if (log)
546 {
547 log->Printf("IRExecutionUnit::allocateDataSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
548 (uint64_t)Size, Alignment, SectionID, return_value);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000549 }
Sean Callanan2c047352013-03-19 23:03:21 +0000550
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000551 return return_value;
552}
553
554uint8_t *
555IRExecutionUnit::MemoryManager::allocateGlobal(uintptr_t Size,
556 unsigned Alignment)
557{
Greg Clayton5160ce52013-03-27 23:08:40 +0000558 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000559
560 uint8_t *return_value = m_default_mm_ap->allocateGlobal(Size, Alignment);
561
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000562 m_parent.m_records.push_back(AllocationRecord((uintptr_t)return_value,
563 lldb::ePermissionsReadable | lldb::ePermissionsWritable,
564 Size,
565 Alignment));
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000566
567 if (log)
568 {
569 log->Printf("IRExecutionUnit::allocateGlobal(Size=0x%" PRIx64 ", Alignment=%u) = %p",
570 (uint64_t)Size, Alignment, return_value);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000571 }
572
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000573 return return_value;
574}
575
576void
577IRExecutionUnit::MemoryManager::deallocateFunctionBody(void *Body)
578{
579 m_default_mm_ap->deallocateFunctionBody(Body);
580}
581
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000582lldb::addr_t
583IRExecutionUnit::GetRemoteAddressForLocal (lldb::addr_t local_address)
584{
Sean Callananffae9442013-06-27 01:42:47 +0000585 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
586
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000587 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000588 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000589 if (local_address >= record.m_host_address &&
590 local_address < record.m_host_address + record.m_size)
591 {
592 if (record.m_process_address == LLDB_INVALID_ADDRESS)
593 return LLDB_INVALID_ADDRESS;
Sean Callananffae9442013-06-27 01:42:47 +0000594
595 lldb::addr_t ret = record.m_process_address + (local_address - record.m_host_address);
596
597 if (log)
598 {
599 log->Printf("IRExecutionUnit::GetRemoteAddressForLocal() found 0x%" PRIx64 " in [0x%" PRIx64 "..0x%" PRIx64 "], and returned 0x%" PRIx64 " from [0x%" PRIx64 "..0x%" PRIx64 "].",
600 local_address,
Michael Sartain89c862f2013-08-07 19:05:15 +0000601 (uint64_t)record.m_host_address,
602 (uint64_t)record.m_host_address + (uint64_t)record.m_size,
Sean Callananffae9442013-06-27 01:42:47 +0000603 ret,
604 record.m_process_address,
605 record.m_process_address + record.m_size);
606 }
607
608 return ret;
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000609 }
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000610 }
611
612 return LLDB_INVALID_ADDRESS;
613}
614
615IRExecutionUnit::AddrRange
616IRExecutionUnit::GetRemoteRangeForLocal (lldb::addr_t local_address)
617{
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000618 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000619 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000620 if (local_address >= record.m_host_address &&
621 local_address < record.m_host_address + record.m_size)
622 {
623 if (record.m_process_address == LLDB_INVALID_ADDRESS)
624 return AddrRange(0, 0);
625
626 return AddrRange(record.m_process_address, record.m_size);
627 }
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000628 }
629
630 return AddrRange (0, 0);
631}
632
633bool
634IRExecutionUnit::CommitAllocations (lldb::ProcessSP &process_sp)
635{
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000636 bool ret = true;
637
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000638 lldb_private::Error err;
639
640 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000641 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000642 if (record.m_process_address != LLDB_INVALID_ADDRESS)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000643 continue;
644
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000645
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000646 record.m_process_address = Malloc(record.m_size,
647 record.m_alignment,
648 record.m_permissions,
649 eAllocationPolicyProcessOnly,
650 err);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000651
652 if (!err.Success())
653 {
654 ret = false;
655 break;
656 }
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000657 }
658
659 if (!ret)
660 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000661 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000662 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000663 if (record.m_process_address != LLDB_INVALID_ADDRESS)
664 {
665 Free(record.m_process_address, err);
666 record.m_process_address = LLDB_INVALID_ADDRESS;
667 }
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000668 }
669 }
670
671 return ret;
672}
673
674void
675IRExecutionUnit::ReportAllocations (llvm::ExecutionEngine &engine)
676{
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000677 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000678 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000679 if (record.m_process_address == LLDB_INVALID_ADDRESS)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000680 continue;
681
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000682 if (record.m_section_id == eSectionIDInvalid)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000683 continue;
684
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000685 engine.mapSectionAddress((void*)record.m_host_address, record.m_process_address);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000686 }
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000687
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000688 // Trigger re-application of relocations.
689 engine.finalizeObject();
690}
691
692bool
693IRExecutionUnit::WriteData (lldb::ProcessSP &process_sp)
694{
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000695 for (AllocationRecord &record : m_records)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000696 {
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000697 if (record.m_process_address == LLDB_INVALID_ADDRESS)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000698 return false;
699
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000700 lldb_private::Error err;
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000701
702 WriteMemory (record.m_process_address, (uint8_t*)record.m_host_address, record.m_size, err);
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000703 }
704
705 return true;
706}
707
708void
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000709IRExecutionUnit::AllocationRecord::dump (Log *log)
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000710{
711 if (!log)
712 return;
713
714 log->Printf("[0x%llx+0x%llx]->0x%llx (alignment %d, section ID %d)",
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000715 (unsigned long long)m_host_address,
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000716 (unsigned long long)m_size,
Sean Callanan5a1af4e2013-04-05 02:22:57 +0000717 (unsigned long long)m_process_address,
Sean Callanan8dfb68e2013-03-19 00:10:07 +0000718 (unsigned)m_alignment,
719 (unsigned)m_section_id);
720}