OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ELFWriter
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/CodeGen/
ELFCodeEmitter.h
17
class
ELFWriter
;
20
/// ELFCodeEmitter - This class is used by the
ELFWriter
to
23
ELFWriter
&EW;
41
explicit ELFCodeEmitter(
ELFWriter
&ew) : EW(ew), TM(EW.TM) {}
ELFWriter.cpp
1
//===--
ELFWriter
.cpp - Target-independent ELF Writer code ----------------===//
31
#define DEBUG_TYPE "
elfwriter
"
33
#include "
ELFWriter
.h"
61
char
ELFWriter
::ID = 0;
64
//
ELFWriter
Implementation
67
ELFWriter
::
ELFWriter
(raw_ostream &o, TargetMachine &tm)
87
ELFWriter
::~
ELFWriter
() {
112
bool
ELFWriter
::doInitialization(Module &M)
[
all
...]
ELFWriter.h
1
//===--
ELFWriter
.h - Target-independent ELF writer support -----*- C++ -*-===//
10
// This file defines the
ELFWriter
class.
50
///
ELFWriter
- This class implements the common target-independent code for
54
class
ELFWriter
: public MachineFunctionPass {
65
ELFWriter
(raw_ostream &O, TargetMachine &TM);
66
~
ELFWriter
();
Android.mk
16
ELFWriter
.cpp \
/external/llvm/lib/ExecutionEngine/JIT/
JITDebugRegisterer.cpp
17
#include "../../CodeGen/
ELFWriter
.h"
68
// Stack allocate an empty module with an empty LLVMContext for the
ELFWriter
69
// API. We don't use the real module because then the
ELFWriter
would write
77
ELFWriter
EW(O, TM);
Completed in 78 milliseconds