OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TheTarget
(Results
1 - 13
of
13
) sorted by null
/external/llvm/lib/ExecutionEngine/
TargetSelect.cpp
50
const Target *
TheTarget
= 0;
55
TheTarget
= &*it;
60
if (!
TheTarget
) {
74
TheTarget
= TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
75
if (
TheTarget
== 0) {
100
TargetMachine *Target =
TheTarget
->createTargetMachine(TheTriple.getTriple(),
/external/llvm/lib/Support/
TargetRegistry.cpp
32
const Target *
TheTarget
= 0;
37
TheTarget
= &*it;
42
if (!
TheTarget
) {
55
TheTarget
= TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
56
if (
TheTarget
== 0) {
64
return
TheTarget
;
128
const Target *
TheTarget
= lookupTarget(sys::getDefaultTargetTriple(), Error);
130
if (
TheTarget
&& !
TheTarget
->hasJIT()) {
135
return
TheTarget
;
[
all
...]
/external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp
44
const Target *
TheTarget
= TargetRegistry::lookupTarget(Triple, Error);
45
if (!
TheTarget
)
48
const MCRegisterInfo *MRI =
TheTarget
->createMCRegInfo(Triple);
53
const MCAsmInfo *MAI =
TheTarget
->createMCAsmInfo(*MRI, Triple);
57
const MCInstrInfo *MII =
TheTarget
->createMCInstrInfo();
64
const MCSubtargetInfo *STI =
TheTarget
->createMCSubtargetInfo(Triple, CPU,
75
MCDisassembler *DisAsm =
TheTarget
->createMCDisassembler(*STI);
80
TheTarget
->createMCRelocationInfo(Triple, *Ctx));
85
TheTarget
->createMCSymbolizer(Triple, GetOpInfo, SymbolLookUp, DisInfo,
92
MCInstPrinter *IP =
TheTarget
->createMCInstPrinter(AsmPrinterVariant
[
all
...]
Disassembler.h
61
const Target *
TheTarget
;
85
const Target *
theTarget
, const MCAsmInfo *mAI,
92
SymbolLookUp(symbolLookUp),
TheTarget
(
theTarget
),
109
const Target *getTarget() const { return
TheTarget
; }
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp
87
const Target &
TheTarget
;
89
PPCAsmBackend(const Target &T) : MCAsmBackend(),
TheTarget
(T) {}
160
StringRef Name =
TheTarget
.getName();
/external/llvm/tools/llc/
llc.cpp
234
const Target *
TheTarget
= TargetRegistry::lookupTarget(MArch, TheTriple,
236
if (!
TheTarget
) {
284
target(
TheTarget
->createTargetMachine(TheTriple.getTriple(),
310
(GetOutputStream(
TheTarget
->getName(), TheTriple.getOS(), argv[0]));
/external/llvm/tools/llvm-mc/
llvm-mc.cpp
196
const Target *
TheTarget
= TargetRegistry::lookupTarget(ArchName, TheTriple,
198
if (!
TheTarget
) {
205
return
TheTarget
;
320
static int AssembleInput(const char *ProgName, const Target *
TheTarget
,
325
OwningPtr<MCTargetAsmParser> TAP(
TheTarget
->createMCAsmParser(STI, *Parser));
362
const Target *
TheTarget
= GetTarget(ProgName);
363
if (!
TheTarget
)
382
llvm::OwningPtr<MCRegisterInfo> MRI(
TheTarget
->createMCRegInfo(TripleName));
385
llvm::OwningPtr<MCAsmInfo> MAI(
TheTarget
->createMCAsmInfo(*MRI, TripleName));
423
OwningPtr<MCInstrInfo> MCII(
TheTarget
->createMCInstrInfo())
[
all
...]
/external/clang/lib/CodeGen/
BackendUtil.cpp
331
const llvm::Target *
TheTarget
= TargetRegistry::lookupTarget(Triple, Error);
332
if (!
TheTarget
) {
459
TargetMachine *TM =
TheTarget
->createTargetMachine(Triple, TargetOpts.CPU,
/external/llvm/include/llvm/Target/
TargetMachine.h
63
///
TheTarget
- The Target that this machine was created for.
64
const Target &
TheTarget
;
89
const Target &getTarget() const { return
TheTarget
; }
/external/llvm/tools/opt/
opt.cpp
527
const Target *
TheTarget
= TargetRegistry::lookupTarget(MArch, TheTriple,
530
if (!
TheTarget
) {
543
return
TheTarget
->createTargetMachine(TheTriple.getTriple(),
/external/llvm/tools/llvm-objdump/
MachODump.cpp
62
const Target *
TheTarget
= TargetRegistry::lookupTarget(TripleName, Error);
63
if (
TheTarget
)
64
return
TheTarget
;
218
const Target *
TheTarget
= GetTarget(MachOOF);
219
if (!
TheTarget
) {
223
OwningPtr<const MCInstrInfo> InstrInfo(
TheTarget
->createMCInstrInfo());
225
InstrAnalysis(
TheTarget
->createMCInstrAnalysis(InstrInfo.get()));
228
OwningPtr<const MCRegisterInfo> MRI(
TheTarget
->createMCRegInfo(TripleName));
230
TheTarget
->createMCAsmInfo(*MRI, TripleName));
232
STI(
TheTarget
->createMCSubtargetInfo(TripleName, "", ""))
[
all
...]
llvm-objdump.cpp
168
const Target *
TheTarget
= TargetRegistry::lookupTarget(ArchName, TheTriple,
170
if (!
TheTarget
) {
177
return
TheTarget
;
260
const Target *
TheTarget
= getTarget(Obj);
263
if (!
TheTarget
)
275
OwningPtr<const MCRegisterInfo> MRI(
TheTarget
->createMCRegInfo(TripleName));
283
TheTarget
->createMCAsmInfo(*MRI, TripleName));
290
TheTarget
->createMCSubtargetInfo(TripleName, "", FeaturesStr));
296
OwningPtr<const MCInstrInfo> MII(
TheTarget
->createMCInstrInfo());
302
OwningPtr<MCDisassembler> DisAsm(
TheTarget
->createMCDisassembler(*STI))
[
all
...]
/frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp
[
all
...]
Completed in 322 milliseconds