HomeSort by: relevance | last modified time | path
    Searched refs:Model (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
CodeGenCWrappers.h 25 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
27 switch (Model) {
47 inline LLVMCodeModel wrap(CodeModel::Model Model) {
48 switch (Model) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/Stages/
InstructionTables.h 34 InstructionTables(const MCSchedModel &Model)
35 : Stage(), SM(Model), Masks(Model.getNumProcResourceKinds()) {
36 computeProcResourceMasks(Model, Masks);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CodeGen.h 10 // example, relocation model.
19 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Tiny, Small, Kernel, Medium, Large };
42 enum Model {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcTargetMachine.h 30 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
51 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
62 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
72 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
SparcTargetMachine.cpp 57 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
71 static CodeModel::Model
72 getEffectiveSparcCodeModel(Optional<CodeModel::Model> CM, Reloc::Model RM,
89 /// Create an ILP32 architecture model
92 const TargetOptions &Options, Optional<Reloc::Model> RM,
93 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit)
190 Optional<Reloc::Model> RM,
191 Optional<CodeModel::Model> CM
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/
TargetMachine.cpp 68 /// Returns the code generation relocation model. The choices are static, PIC,
70 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
72 /// Returns the code model. The choices are small, kernel, medium, large, and
74 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
76 /// Get the IR-specified TLS model for Var.
77 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
91 llvm_unreachable("invalid TLS model");
97 Reloc::Model RM = getRelocationModel();
152 // Due to the AIX linkage model, any global with default visibility is
170 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 33 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
77 Optional<Reloc::Model> RM,
78 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
89 Optional<Reloc::Model> RM,
90 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetMachine.h 44 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
89 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
99 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsTargetMachine.h 42 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
86 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
98 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 38 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
79 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
88 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreTargetMachine.cpp 28 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
32 static CodeModel::Model
33 getEffectiveXCoreCodeModel(Optional<CodeModel::Model> CM) {
42 /// Create an ILP32 architecture model
47 Optional<Reloc::Model> RM,
48 Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/
CSKYTargetMachine.h 27 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCTargetMachine.cpp 23 static Reloc::Model getRelocModel(Optional<Reloc::Model> RM) {
27 /// ARCTargetMachine ctor - Create an ILP32 architecture model
31 Optional<Reloc::Model> RM,
32 Optional<CodeModel::Model> CM,
ARCTargetMachine.h 30 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiTargetMachine.cpp 50 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
57 Optional<Reloc::Model> RM,
58 Optional<CodeModel::Model> CodeModel,
LanaiTargetMachine.h 32 Optional<Reloc::Model> RelocationModel,
33 Optional<CodeModel::Model> CodeModel,
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430TargetMachine.cpp 29 static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
43 Optional<Reloc::Model> RM,
44 Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
CommandFlags.h 41 Reloc::Model getRelocModel();
42 Optional<Reloc::Model> getExplicitRelocModel();
44 ThreadModel::Model getThreadModel();
46 CodeModel::Model getCodeModel();
47 Optional<CodeModel::Model> getExplicitCodeModel();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
JITTargetMachineBuilder.h 85 /// Set the relocation model.
86 JITTargetMachineBuilder &setRelocationModel(Optional<Reloc::Model> RM) {
91 /// Get the relocation model.
92 const Optional<Reloc::Model> &getRelocationModel() const { return RM; }
94 /// Set the code model.
95 JITTargetMachineBuilder &setCodeModel(Optional<CodeModel::Model> CM) {
100 /// Get the code model.
101 const Optional<CodeModel::Model> &getCodeModel() const { return CM; }
153 Optional<Reloc::Model> RM;
154 Optional<CodeModel::Model> CM
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetMachine.h 42 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
77 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
102 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kTargetMachine.cpp 62 Reloc::Model getEffectiveRelocModel(const Triple &TT,
63 Optional<Reloc::Model> RM) {
72 CodeModel::Model getEffectiveCodeModel(Optional<CodeModel::Model> CM,
77 llvm_unreachable("Large code model is not supported");
79 llvm_unreachable("Kernel code model is not implemented yet");
88 Optional<Reloc::Model> RM,
89 Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
SummaryView.cpp 25 SummaryView::SummaryView(const MCSchedModel &Model, ArrayRef<MCInst> S,
27 : SM(Model), Source(S), DispatchWidth(Width?Width: Model.IssueWidth),
30 ProcResourceUsage(Model.getNumProcResourceKinds(), 0),
31 ProcResourceMasks(Model.getNumProcResourceKinds()),
32 ResIdx2ProcResID(Model.getNumProcResourceKinds(), 0) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRTargetMachine.h 32 Optional<Reloc::Model> RM,
33 Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFTargetMachine.h 27 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 32 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,

Completed in 32 milliseconds

1 2 3 4 5 6