OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TheTarget
(Results
1 - 14
of
14
) sorted by null
/external/llvm/lib/Target/
TargetAsmLexer.cpp
13
TargetAsmLexer::TargetAsmLexer(const Target &T) :
TheTarget
(T), Lexer(NULL) {}
TargetMachine.cpp
205
:
TheTarget
(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
/external/llvm/lib/ExecutionEngine/
TargetSelect.cpp
40
const Target *
TheTarget
= 0;
45
TheTarget
= &*it;
50
if (!
TheTarget
) {
63
TheTarget
= TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
64
if (
TheTarget
== 0) {
71
if (!
TheTarget
->hasJIT()) {
87
TargetMachine *Target =
TheTarget
->createTargetMachine(TheTriple.getTriple(),
/external/llvm/lib/Support/
TargetRegistry.cpp
83
const Target *
TheTarget
= lookupTarget(sys::getHostTriple(), Error);
85
if (
TheTarget
&& !
TheTarget
->hasJIT()) {
90
return
TheTarget
;
/external/llvm/tools/llvm-mc/
llvm-mc.cpp
170
const Target *
TheTarget
= TargetRegistry::lookupTarget(TripleName, Error);
171
if (
TheTarget
)
172
return
TheTarget
;
212
const Target *
TheTarget
= GetTarget(ProgName);
213
if (!
TheTarget
)
216
llvm::OwningPtr<MCAsmInfo> MAI(
TheTarget
->createMCAsmInfo(TripleName));
305
const Target *
TheTarget
= GetTarget(ProgName);
306
if (!
TheTarget
)
326
llvm::OwningPtr<MCAsmInfo> MAI(
TheTarget
->createMCAsmInfo(TripleName));
329
llvm::OwningPtr<MCRegisterInfo> MRI(
TheTarget
->createMCRegInfo(TripleName))
[
all
...]
/external/llvm/include/llvm/Target/
TargetAsmLexer.h
39
///
TheTarget
- The Target that this machine was created for.
40
const Target &
TheTarget
;
46
const Target &getTarget() const { return
TheTarget
; }
TargetMachine.h
94
///
TheTarget
- The Target that this machine was created for.
95
const Target &
TheTarget
;
120
const Target &getTarget() const { return
TheTarget
; }
/external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp
52
const Target *
TheTarget
= TargetRegistry::lookupTarget(TripleName, Error);
53
assert(
TheTarget
&& "Unable to create target!");
56
const MCAsmInfo *MAI =
TheTarget
->createMCAsmInfo(TripleName);
59
const MCRegisterInfo *MRI =
TheTarget
->createMCRegInfo(TripleName);
69
TargetMachine *TM =
TheTarget
->createTargetMachine(TripleName, CPU,
82
MCDisassembler *DisAsm =
TheTarget
->createMCDisassembler();
88
MCInstPrinter *IP =
TheTarget
->createMCInstPrinter(AsmPrinterVariant,
94
TheTarget
, MAI, MRI, TM, tai,
Disassembler.h
59
const Target *
TheTarget
;
81
const Target *
theTarget
, const MCAsmInfo *mAI,
87
SymbolLookUp(symbolLookUp),
TheTarget
(
theTarget
), Tai(tai) {
/external/llvm/lib/Target/PowerPC/
PPCAsmBackend.cpp
35
const Target &
TheTarget
;
37
PPCAsmBackend(const Target &T) : TargetAsmBackend(),
TheTarget
(T) {}
78
StringRef Name =
TheTarget
.getName();