LLVM: lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp Source File (original) (raw)
1
2
3
4
5
6
7
8
12using namespace llvm;
13
15 static Target TheRISCV32Target;
16 return TheRISCV32Target;
17}
18
20 static Target TheRISCV64Target;
21 return TheRISCV64Target;
22}
23
25 static Target TheRISCV32beTarget;
26 return TheRISCV32beTarget;
27}
28
30 static Target TheRISCV64beTarget;
31 return TheRISCV64beTarget;
32}
33
41 "32-bit big endian RISC-V", "RISCV");
43 "64-bit big endian RISC-V", "RISCV");
44}
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_EXTERNAL_VISIBILITY
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeRISCVTargetInfo()
Definition RISCVTargetInfo.cpp:35
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 & getTheRISCV32Target()
Definition RISCVTargetInfo.cpp:14
Target & getTheRISCV64beTarget()
Definition RISCVTargetInfo.cpp:29
Target & getTheRISCV64Target()
Definition RISCVTargetInfo.cpp:19
Target & getTheRISCV32beTarget()
Definition RISCVTargetInfo.cpp:24
RegisterTarget - Helper template for registering a target, for use in the target's initialization fun...