Home
last modified time | relevance | path

Searched refs:CM (Results 1 - 25 of 72) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp74 getEffectiveSparcCodeModel(Optional<CodeModel::Model> CM, Reloc::Model RM, in getEffectiveSparcCodeModel() argument
76 if (CM) { in getEffectiveSparcCodeModel()
77 if (*CM == CodeModel::Tiny) in getEffectiveSparcCodeModel()
79 if (*CM == CodeModel::Kernel) in getEffectiveSparcCodeModel()
81 return *CM; in getEffectiveSparcCodeModel()
95 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit) in SparcTargetMachine()
99 CM, getEffectiveRelocModel(RM), is64bit, JIT), in SparcTargetMachine()
196 Optional<CodeModel::Model> CM, in SparcV8TargetMachine()
198 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcV8TargetMachine()
206 Optional<CodeModel::Model> CM, in SparcV9TargetMachine()
92 SparcTargetMachine( 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 is64bit) SparcTargetMachine() argument
192 SparcV8TargetMachine(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) SparcV8TargetMachine() argument
202 SparcV9TargetMachine(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) SparcV9TargetMachine() argument
212 SparcelTargetMachine(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) SparcelTargetMachine() argument
[all...]
H A DSparcTargetMachine.h30 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,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
H A DXCoreTargetMachine.cpp35 getEffectiveXCoreCodeModel(Optional<CodeModel::Model> CM) { in getEffectiveXCoreCodeModel() argument
36 if (CM) { in getEffectiveXCoreCodeModel()
37 if (*CM != CodeModel::Small && *CM != CodeModel::Large) in getEffectiveXCoreCodeModel()
39 return *CM; in getEffectiveXCoreCodeModel()
50 Optional<CodeModel::Model> CM, in XCoreTargetMachine()
55 getEffectiveXCoreCodeModel(CM), OL), in XCoreTargetMachine()
46 XCoreTargetMachine(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) XCoreTargetMachine() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp100 ConstantInt *CSL = nullptr, *CSR = nullptr, *CM = nullptr; in convert() local
109 m_ConstantInt(CM))); in convert()
116 m_ConstantInt(CM))); in convert()
123 m_ConstantInt(CM))); in convert()
132 m_ConstantInt(CM))); in convert()
139 m_ConstantInt(CM))); in convert()
142 CM = nullptr; in convert()
149 CM = nullptr; in convert()
168 if (!CM) { in convert()
175 CM in convert()
[all...]
H A DHexagonGenMux.cpp232 CondsetMap CM; in genMuxInBlock()
251 CondsetMap::iterator F = CM.find(DR); in genMuxInBlock()
256 if (F != CM.end() && F->second.PredR != PR) { in genMuxInBlock()
257 CM.erase(F); in genMuxInBlock()
258 F = CM.end(); in genMuxInBlock()
260 if (F == CM.end()) { in genMuxInBlock()
261 auto It = CM.insert(std::make_pair(DR, CondsetInfo())); in genMuxInBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp132 getEffectiveSystemZCodeModel(Optional<CodeModel::Model> CM, Reloc::Model RM, in getEffectiveSystemZCodeModel() argument
134 if (CM) { in getEffectiveSystemZCodeModel()
135 if (*CM == CodeModel::Tiny) in getEffectiveSystemZCodeModel()
137 if (*CM == CodeModel::Kernel) in getEffectiveSystemZCodeModel()
139 return *CM; in getEffectiveSystemZCodeModel()
150 Optional<CodeModel::Model> CM, in SystemZTargetMachine()
155 getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT), in SystemZTargetMachine()
146 SystemZTargetMachine(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) SystemZTargetMachine() argument
H A DSystemZSubtarget.cpp70 CodeModel::Model CM) const { in isPC32DBLSymbol()
77 if (CM == CodeModel::Small) in isPC32DBLSymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp234 getEffectiveAArch64CodeModel(const Triple &TT, Optional<CodeModel::Model> CM, in getEffectiveAArch64CodeModel() argument
236 if (CM) { in getEffectiveAArch64CodeModel()
237 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny && in getEffectiveAArch64CodeModel()
238 *CM != CodeModel::Large) { in getEffectiveAArch64CodeModel()
242 else if (*CM != CodeModel::Kernel) in getEffectiveAArch64CodeModel()
245 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) in getEffectiveAArch64CodeModel()
247 return *CM; in getEffectiveAArch64CodeModel()
266 Optional<CodeModel::Model> CM, in AArch64TargetMachine()
272 getEffectiveAArch64CodeModel(TT, CM, JI in AArch64TargetMachine()
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) AArch64TargetMachine() 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) AArch64leTargetMachine() 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) AArch64beTargetMachine() argument
[all...]
H A DAArch64TargetMachine.h33 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
64 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
76 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h86 JITTargetMachineBuilder &setCodeModel(Optional<CodeModel::Model> CM) { in setCodeModel() argument
87 this->CM = std::move(CM); in setCodeModel()
92 const Optional<CodeModel::Model> &getCodeModel() const { return CM; } in getCodeModel()
145 Optional<CodeModel::Model> CM; member in llvm::orc::JITTargetMachineBuilder
/third_party/ltp/testcases/realtime/stress/pi-tests/
H A Dlookup_pi_state.c45 pthread_cond_t CM; variable
84 pthread_cond_signal(&CM); in slave_thread()
119 pthread_cond_wait(&CM, &MM); in master_thread()
146 pthread_cond_timedwait(&CM, &MM, &ts_abs_timeout); in master_thread()
181 pthread_cond_init(&CM, NULL); in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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, in getEffectiveCodeModel() argument
383 if (CM) { in getEffectiveCodeModel()
385 if (*CM == CodeModel::Tiny) in getEffectiveCodeModel()
387 if (*CM == CodeModel::Kernel) in getEffectiveCodeModel()
389 return *CM; in getEffectiveCodeModel()
/third_party/python/Lib/test/
H A Dtest_coroutines.py1223 class CM: class
1231 async with CM():
1239 class CM: class
1247 async with CM():
1255 class CM: class
1262 async with CM():
1274 class CM: class
1282 async with CM():
1289 class CM: class
1297 async with CM()
1308 class CM: global() class
1336 class CM: global() class
1400 class CM: global() class
1420 class CM: global() class
1446 class CM: global() class
1468 class CM: global() class
1486 class CM: global() class
2252 class CM: global() class
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DVPRecipeBuilder.h36 LoopVectorizationCostModel &CM; member in llvm::VPRecipeBuilder
129 LoopVectorizationCostModel &CM, VPBuilder &Builder) in VPRecipeBuilder()
130 : OrigLoop(OrigLoop), TLI(TLI), Legal(Legal), CM(CM), Builder(Builder) {} in VPRecipeBuilder()
127 VPRecipeBuilder(Loop *OrigLoop, const TargetLibraryInfo *TLI, LoopVectorizationLegality *Legal, LoopVectorizationCostModel &CM, VPBuilder &Builder) VPRecipeBuilder() argument
H A DLoopVectorizationPlanner.h202 LoopVectorizationCostModel &CM; member in llvm::LoopVectorizationPlanner
231 LoopVectorizationCostModel &CM, in LoopVectorizationPlanner()
233 : OrigLoop(L), LI(LI), TLI(TLI), TTI(TTI), Legal(Legal), CM(CM), in LoopVectorizationPlanner()
228 LoopVectorizationPlanner(Loop *L, LoopInfo *LI, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, LoopVectorizationLegality *Legal, LoopVectorizationCostModel &CM, InterleavedAccessInfo &IAI) LoopVectorizationPlanner() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMTargetMachine.h44 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
83 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
93 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DARMTargetMachine.cpp211 Optional<CodeModel::Model> CM, in ARMBaseTargetMachine()
215 getEffectiveCodeModel(CM, CodeModel::Small), OL), in ARMBaseTargetMachine()
307 Optional<CodeModel::Model> CM, in ARMLETargetMachine()
309 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {} in ARMLETargetMachine()
315 Optional<CodeModel::Model> CM, in ARMBETargetMachine()
317 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} in ARMBETargetMachine()
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) ARMBaseTargetMachine() 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) ARMLETargetMachine() 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) ARMBETargetMachine() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsTargetMachine.h42 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
78 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
90 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DMipsTargetMachine.cpp115 Optional<CodeModel::Model> CM, in MipsTargetMachine()
120 getEffectiveCodeModel(CM, CodeModel::Small), OL), in MipsTargetMachine()
144 Optional<CodeModel::Model> CM, in MipsebTargetMachine()
146 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in MipsebTargetMachine()
154 Optional<CodeModel::Model> CM, in MipselTargetMachine()
156 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in MipselTargetMachine()
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) MipsTargetMachine() 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) MipsebTargetMachine() 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) MipselTargetMachine() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.h40 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
80 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
89 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
H A DNVPTXTargetMachine.cpp111 Optional<CodeModel::Model> CM, in NVPTXTargetMachine()
117 getEffectiveCodeModel(CM, CodeModel::Small), OL), in NVPTXTargetMachine()
138 Optional<CodeModel::Model> CM, in NVPTXTargetMachine32()
140 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} in NVPTXTargetMachine32()
148 Optional<CodeModel::Model> CM, in NVPTXTargetMachine64()
150 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {} in NVPTXTargetMachine64()
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) NVPTXTargetMachine() 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) NVPTXTargetMachine32() 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) NVPTXTargetMachine64() argument
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_test.c133 #define CM (PCRE2_CASELESS | PCRE2_MULTILINE) macro
165 { CM, A, 0, 0, "[^m]", "mMnN" },
167 { CM, A, 0, 0, "A[^B][^E]", "abacd" },
184 { CM, A, 0, 0, "1a2b3c4", "1a2B3c51A2B3C4" },
190 { CM, A, 0, 0, "\\Ca", "CDA" },
192 { CM, A, 0, 0 | F_NOMATCH, "\\Cx", "CDA" },
273 { CM, A, 0, 0, "ab|cd", "CD" },
274 { CM, A, 0, 0, "a1277|a1377|bX487", "bx487" },
275 { CM, A, 0, 0, "a1277|a1377|bx487", "bX487" },
503 { CM,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetMachine.h45 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
76 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
101 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp242 Optional<CodeModel::Model> CM, in getEffectivePPCCodeModel()
244 if (CM) { in getEffectivePPCCodeModel()
245 if (*CM == CodeModel::Tiny) in getEffectivePPCCodeModel()
247 if (*CM == CodeModel::Kernel) in getEffectivePPCCodeModel()
249 return *CM; in getEffectivePPCCodeModel()
297 Optional<CodeModel::Model> CM, in PPCTargetMachine()
302 getEffectivePPCCodeModel(TT, CM, JIT), OL), in PPCTargetMachine()
241 getEffectivePPCCodeModel(const Triple &TT, Optional<CodeModel::Model> CM, bool JIT) getEffectivePPCCodeModel() 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) PPCTargetMachine() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp200 static CodeModel::Model getEffectiveX86CodeModel(Optional<CodeModel::Model> CM, in getEffectiveX86CodeModel() argument
202 if (CM) { in getEffectiveX86CodeModel()
203 if (*CM == CodeModel::Tiny) in getEffectiveX86CodeModel()
205 return *CM; in getEffectiveX86CodeModel()
218 Optional<CodeModel::Model> CM, in X86TargetMachine()
223 getEffectiveX86CodeModel(CM, JIT, TT.getArch() == Triple::x86_64), in X86TargetMachine()
214 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) X86TargetMachine() argument

Completed in 15 milliseconds

123