LLVM: lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp Source File (original) (raw)
1
2
3
4
5
6
7
8
11using namespace llvm;
12
14 static Target ThePPC32Target;
15 return ThePPC32Target;
16}
18 static Target ThePPC32LETarget;
19 return ThePPC32LETarget;
20}
22 static Target ThePPC64Target;
23 return ThePPC64Target;
24}
26 static Target ThePPC64LETarget;
27 return ThePPC64LETarget;
28}
29
32 "PowerPC 32", "PPC");
33
36
38 "PowerPC 64", "PPC");
39
42}
#define LLVM_EXTERNAL_VISIBILITY
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
LLVM_EXTERNAL_VISIBILITY void LLVMInitializePowerPCTargetInfo()
Target - Wrapper for Target specific information.
This is an optimization pass for GlobalISel generic memory operations.
Target & getThePPC64LETarget()
Target & getThePPC32Target()
Target & getThePPC64Target()
Target & getThePPC32LETarget()
RegisterTarget - Helper template for registering a target, for use in the target's initialization fun...