LLVM: lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp Source File (original) (raw)
Go to the documentation of this file.
1
2
3
4
5
6
7
8
12using namespace llvm;
13
15 static Target ThePPC32Target;
16 return ThePPC32Target;
17}
19 static Target ThePPC32LETarget;
20 return ThePPC32LETarget;
21}
23 static Target ThePPC64Target;
24 return ThePPC64Target;
25}
27 static Target ThePPC64LETarget;
28 return ThePPC64LETarget;
29}
30
34 "PowerPC 32", "PPC");
35
38
40 "PowerPC 64", "PPC");
41
44}
#define LLVM_EXTERNAL_VISIBILITY
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializePowerPCTargetInfo()
Definition PowerPCTargetInfo.cpp:32
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Target - Wrapper for Target specific information.
This is an optimization pass for GlobalISel generic memory operations.
Target & getThePPC64LETarget()
Definition PowerPCTargetInfo.cpp:26
Target & getThePPC32Target()
Definition PowerPCTargetInfo.cpp:14
Target & getThePPC64Target()
Definition PowerPCTargetInfo.cpp:22
Target & getThePPC32LETarget()
Definition PowerPCTargetInfo.cpp:18
RegisterTarget - Helper template for registering a target, for use in the target's initialization fun...