Searched refs:CM (Results 26 - 50 of 90) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCTargetMachine.h30 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRTargetMachine.h33 Optional<CodeModel::Model> CM,
H A DAVRTargetMachine.cpp47 Optional<CodeModel::Model> CM,
51 getEffectiveCodeModel(CM, CodeModel::Small), OL),
43 AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVETargetMachine.h32 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DVETargetMachine.cpp71 Optional<CodeModel::Model> CM,
75 getEffectiveCodeModel(CM, CodeModel::Small), OL),
67 VETargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetMachine.h30 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DRISCVTargetMachine.cpp63 Optional<CodeModel::Model> CM,
67 getEffectiveCodeModel(CM, CodeModel::Small), OL),
59 RISCVTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetMachine.h39 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DX86TargetMachine.cpp202 static CodeModel::Model getEffectiveX86CodeModel(Optional<CodeModel::Model> CM, argument
204 if (CM) {
205 if (*CM == CodeModel::Tiny)
207 return *CM;
220 Optional<CodeModel::Model> CM,
225 getEffectiveX86CodeModel(CM, JIT, TT.getArch() == Triple::x86_64),
216 X86TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h319 CodeModel::Model CM, CodeGenOpt::Level OL);
378 /// CM does not have a value. The tiny and kernel models will produce
381 inline CodeModel::Model getEffectiveCodeModel(Optional<CodeModel::Model> CM, argument
383 if (CM) {
385 if (*CM == CodeModel::Tiny)
387 if (*CM == CodeModel::Kernel)
389 return *CM;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetMachine.cpp115 Optional<CodeModel::Model> CM,
120 getEffectiveCodeModel(CM, CodeModel::Small), OL),
144 Optional<CodeModel::Model> CM,
146 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
154 Optional<CodeModel::Model> CM,
156 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
111 MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool isLittle) argument
140 MipsebTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
150 MipselTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.cpp111 Optional<CodeModel::Model> CM,
117 getEffectiveCodeModel(CM, CodeModel::Small), OL),
138 Optional<CodeModel::Model> CM,
140 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
148 Optional<CodeModel::Model> CM,
150 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
107 NVPTXTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool is64bit) argument
134 NVPTXTargetMachine32(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
144 NVPTXTargetMachine64(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp234 getEffectiveAArch64CodeModel(const Triple &TT, Optional<CodeModel::Model> CM, argument
236 if (CM) {
237 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny &&
238 *CM != CodeModel::Large) {
242 else if (*CM != CodeModel::Kernel)
245 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF())
247 return *CM;
266 Optional<CodeModel::Model> CM,
272 getEffectiveAArch64CodeModel(TT, CM, JI
262 AArch64TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool LittleEndian) argument
346 AArch64leTargetMachine( const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
354 AArch64beTargetMachine( const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFTargetMachine.cpp60 Optional<CodeModel::Model> CM,
64 getEffectiveCodeModel(CM, CodeModel::Small), OL),
56 BPFTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDivZeroChecker.cpp78 ConstraintManager &CM = C.getConstraintManager();
80 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV);
H A DVLASizeChecker.cpp144 ConstraintManager &CM = C.getConstraintManager(); local
147 std::tie(StateNeg, StatePos) = CM.assumeDual(state, *LessThanZeroDVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.h37 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DPPCTargetMachine.cpp242 Optional<CodeModel::Model> CM,
244 if (CM) {
245 if (*CM == CodeModel::Tiny)
247 if (*CM == CodeModel::Kernel)
249 return *CM;
297 Optional<CodeModel::Model> CM,
302 getEffectivePPCCodeModel(TT, CM, JIT), OL),
241 getEffectivePPCCodeModel(const Triple &TT, Optional<CodeModel::Model> CM, bool JIT) argument
293 PPCTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.h31 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.cpp51 Options, RM, CM, OptLevel, /*JIT*/ true);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h202 LoopVectorizationCostModel &CM; member in class:llvm::LoopVectorizationPlanner
231 LoopVectorizationCostModel &CM,
233 : OrigLoop(L), LI(LI), TLI(TLI), TTI(TTI), Legal(Legal), CM(CM),
228 LoopVectorizationPlanner(Loop *L, LoopInfo *LI, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, LoopVectorizationLegality *Legal, LoopVectorizationCostModel &CM, InterleavedAccessInfo &IAI) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenMux.cpp232 CondsetMap CM;
251 CondsetMap::iterator F = CM.find(DR);
256 if (F != CM.end() && F->second.PredR != PR) {
257 CM.erase(F);
258 F = CM.end();
260 if (F == CM.end()) {
261 auto It = CM.insert(std::make_pair(DR, CondsetInfo()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp211 Optional<CodeModel::Model> CM,
215 getEffectiveCodeModel(CM, CodeModel::Small), OL),
307 Optional<CodeModel::Model> CM,
309 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
315 Optional<CodeModel::Model> CM,
317 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
207 ARMBaseTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool isLittle) argument
303 ARMLETargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
311 ARMBETargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/stand/i386/libi386/
H A Dvidconsole.c65 void CM(void);
308 CM(void) function
326 CM();
419 CM();
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp778 const CompleteMatchMatcher *CM = cast<CompleteMatchMatcher>(N);
784 GetPatFromTreePatternNode(CM->getPattern().getSrcPattern());
786 GetPatFromTreePatternNode(CM->getPattern().getDstPattern());
787 Record *PatRecord = CM->getPattern().getSrcRecord();
794 OS << "OPC_CompleteMatch, " << CM->getNumResults() << ", ";
796 for (unsigned i = 0, e = CM->getNumResults(); i != e; ++i)
797 NumResultBytes += EmitVBRValue(CM->getResult(i), OS);
801 << *CM->getPattern().getSrcPattern() << " - Complexity = "
802 << CM->getPattern().getPatternComplexity(CGP) << '\n';
804 << *CM
[all...]

Completed in 230 milliseconds

1234