OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RuntimeDyld
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h
1
//===--
RuntimeDyld
.h - Run-time dynamic linker for MC-JIT ------*- C++ -*-===//
31
class
RuntimeDyld
{
34
RuntimeDyld
(const
RuntimeDyld
&) LLVM_DELETED_FUNCTION;
35
void operator=(const
RuntimeDyld
&) LLVM_DELETED_FUNCTION;
37
// RuntimeDyldImpl is the actual class.
RuntimeDyld
is just the public
47
RuntimeDyld
(RTDyldMemoryManager *);
48
~
RuntimeDyld
();
81
/// registered with the memory manager. Note,
RuntimeDyld
is responsible
94
/// to this method will cause
RuntimeDyld
to pass all sections to it
[
all
...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
1
//===--
RuntimeDyld
.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
14
#include "llvm/ExecutionEngine/
RuntimeDyld
.h"
607
//
RuntimeDyld
::resolveRelocations().
677
//
RuntimeDyld
class implementation
678
RuntimeDyld
::
RuntimeDyld
(RTDyldMemoryManager *mm) {
680
//
RuntimeDyld
is used to load multiple objects. The current implementation
681
// associates a single memory manager with a
RuntimeDyld
instance. Even
690
RuntimeDyld
::~
RuntimeDyld
() { delete Dyld;
[
all
...]
Completed in 64 milliseconds