Home
last modified time | relevance | path

Searched refs:CM (Results 1 – 25 of 210) sorted by relevance

123456789

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp44 const coverage::CoverageMapping &CM, in matches() argument
46 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
51 const coverage::CoverageMapping &CM, in matches() argument
53 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
61 bool CoverageFilters::matches(const coverage::CoverageMapping &CM, in matches() argument
64 if (Filter->matches(CM, Function)) in matches()
79 const coverage::CoverageMapping &CM, in matches() argument
82 if (!Filter->matches(CM, Function)) in matches()
H A DCoverageFilters.h34 virtual bool matches(const coverage::CoverageMapping &CM, in matches() argument
52 bool matches(const coverage::CoverageMapping &CM,
63 bool matches(const coverage::CoverageMapping &CM,
78 bool matches(const coverage::CoverageMapping &CM,
115 bool matches(const coverage::CoverageMapping &CM,
127 bool matches(const coverage::CoverageMapping &CM,
144 bool matches(const coverage::CoverageMapping &CM,
155 bool matches(const coverage::CoverageMapping &CM,
H A DCoverageSummaryInfo.cpp38 const CoverageMapping &CM, in sumBranchExpansions() argument
41 auto CE = CM.getCoverageForExpansion(Expansion); in sumBranchExpansions()
43 sumBranchExpansions(NumBranches, CoveredBranches, CM, CE.getExpansions()); in sumBranchExpansions()
63 FunctionCoverageSummary::get(const CoverageMapping &CM, in get() argument
77 CoverageData CD = CM.getCoverageForFunction(Function); in get()
89 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp80 getEffectiveSparcCodeModel(std::optional<CodeModel::Model> CM, Reloc::Model RM, in getEffectiveSparcCodeModel() argument
82 if (CM) { in getEffectiveSparcCodeModel()
83 if (*CM == CodeModel::Tiny) in getEffectiveSparcCodeModel()
85 if (*CM == CodeModel::Kernel) in getEffectiveSparcCodeModel()
87 return *CM; in getEffectiveSparcCodeModel()
102 std::optional<CodeModel::Model> CM, in SparcTargetMachine() argument
108 CM, getEffectiveRelocModel(RM), is64bit, JIT), in SparcTargetMachine()
204 std::optional<CodeModel::Model> CM, in SparcV8TargetMachine() argument
206 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcV8TargetMachine()
216 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in SparcV9TargetMachine()
[all …]
H A DSparcTargetMachine.h32 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
58 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
71 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
82 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetMachine.cpp34 getEffectiveXCoreCodeModel(std::optional<CodeModel::Model> CM) { in getEffectiveXCoreCodeModel() argument
35 if (CM) { in getEffectiveXCoreCodeModel()
36 if (*CM != CodeModel::Small && *CM != CodeModel::Large) in getEffectiveXCoreCodeModel()
38 return *CM; in getEffectiveXCoreCodeModel()
49 std::optional<CodeModel::Model> CM, in XCoreTargetMachine() argument
54 getEffectiveXCoreCodeModel(CM), OL), in XCoreTargetMachine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp100 ConstantInt *CSL = nullptr, *CSR = nullptr, *CM = nullptr; in INITIALIZE_PASS_DEPENDENCY() local
109 m_ConstantInt(CM))); in INITIALIZE_PASS_DEPENDENCY()
116 m_ConstantInt(CM))); in INITIALIZE_PASS_DEPENDENCY()
123 m_ConstantInt(CM))); in INITIALIZE_PASS_DEPENDENCY()
132 m_ConstantInt(CM))); in INITIALIZE_PASS_DEPENDENCY()
139 m_ConstantInt(CM))); in INITIALIZE_PASS_DEPENDENCY()
142 CM = nullptr; in INITIALIZE_PASS_DEPENDENCY()
149 CM = nullptr; in INITIALIZE_PASS_DEPENDENCY()
168 if (!CM) { in INITIALIZE_PASS_DEPENDENCY()
175 CM = ConstantInt::get(Ctx, A); in INITIALIZE_PASS_DEPENDENCY()
[all …]
H A DHexagonGenMux.cpp229 CondsetMap CM; in genMuxInBlock() local
245 CondsetMap::iterator F = CM.find(DR); in genMuxInBlock()
250 if (F != CM.end() && F->second.PredR != PR) { in genMuxInBlock()
251 CM.erase(F); in genMuxInBlock()
252 F = CM.end(); in genMuxInBlock()
254 if (F == CM.end()) { in genMuxInBlock()
255 auto It = CM.insert(std::make_pair(DR, CondsetInfo())); in genMuxInBlock()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kTargetMachine.cpp86 CodeModel::Model getEffectiveCodeModel(std::optional<CodeModel::Model> CM, in getEffectiveCodeModel() argument
88 if (!CM) { in getEffectiveCodeModel()
90 } else if (CM == CodeModel::Large) { in getEffectiveCodeModel()
92 } else if (CM == CodeModel::Kernel) { in getEffectiveCodeModel()
95 return CM.value(); in getEffectiveCodeModel()
103 std::optional<CodeModel::Model> CM, in M68kTargetMachine() argument
107 ::getEffectiveCodeModel(CM, JIT), OL), in M68kTargetMachine()
/freebsd-14.2/usr.bin/tip/tip/
H A Dacu.c75 if (CM != NOSTR) in con()
76 parwrite(FD, CM, size(CM)); in con()
149 if (CM != NOSTR) in con()
150 parwrite(FD, CM, size(CM)); in con()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchTargetMachine.cpp60 std::optional<CodeModel::Model> CM) { in getEffectiveLoongArchCodeModel() argument
61 if (!CM) in getEffectiveLoongArchCodeModel()
64 switch (*CM) { in getEffectiveLoongArchCodeModel()
66 return *CM; in getEffectiveLoongArchCodeModel()
71 return *CM; in getEffectiveLoongArchCodeModel()
81 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT) in LoongArchTargetMachine() argument
84 getEffectiveLoongArchCodeModel(TT, CM), OL), in LoongArchTargetMachine()
/freebsd-14.2/sys/contrib/device-tree/src/arm/
H A Domap3-sbc-t3730.dts3 * Suppport for CompuLab SBC-T3730 with CM-T3730
10 model = "CompuLab SBC-T3730 with CM-T3730";
31 ranges = <5 0 0x2c000000 0x01000000>, /* CM-T3x30 SMSC9x Eth */
33 <0 0 0x00000000 0x01000000>; /* CM-T3x NAND */
H A Domap3-sbc-t3530.dts3 * Suppport for CompuLab SBC-T3530 with CM-T3530
10 model = "CompuLab SBC-T3530 with CM-T3530";
31 ranges = <5 0 0x2c000000 0x01000000>, /* CM-T3x30 SMSC9x Eth */
33 <0 0 0x00000000 0x01000000>; /* CM-T3x NAND */
H A Domap3-sbc-t3517.dts3 * Suppport for CompuLab SBC-T3517 with CM-T3517
10 model = "CompuLab SBC-T3517 with CM-T3517";
18 /* Only one GPMC smsc9220 on SBC-T3517, CM-T3517 uses am35x Ethernet */
75 <0 0 0x00000000 0x01000000>; /* CM-T3x NAND */
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h93 JITTargetMachineBuilder &setCodeModel(std::optional<CodeModel::Model> CM) { in setCodeModel() argument
94 this->CM = std::move(CM); in setCodeModel()
99 const std::optional<CodeModel::Model> &getCodeModel() const { return CM; } in getCodeModel()
152 std::optional<CodeModel::Model> CM; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp127 getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM, in getEffectiveSystemZCodeModel() argument
129 if (CM) { in getEffectiveSystemZCodeModel()
130 if (*CM == CodeModel::Tiny) in getEffectiveSystemZCodeModel()
132 if (*CM == CodeModel::Kernel) in getEffectiveSystemZCodeModel()
134 return *CM; in getEffectiveSystemZCodeModel()
145 std::optional<CodeModel::Model> CM, in SystemZTargetMachine() argument
150 getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT), in SystemZTargetMachine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaTargetMachine.cpp49 std::optional<CodeModel::Model> CM, in XtensaTargetMachine() argument
54 getEffectiveCodeModel(CM, CodeModel::Small), OL), in XtensaTargetMachine()
63 std::optional<CodeModel::Model> CM, in XtensaTargetMachine() argument
65 : XtensaTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in XtensaTargetMachine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp95 std::optional<CodeModel::Model> CM = GV.getParent()->getCodeModel(); in setGlobalVariableLargeSection() local
96 if (!CM || (*CM != CodeModel::Medium && *CM != CodeModel::Large)) in setGlobalVariableLargeSection()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h239 void setCodeModel(CodeModel::Model CM) { CMModel = CM; } in setCodeModel() argument
433 CodeModel::Model CM, CodeGenOptLevel OL);
524 getEffectiveCodeModel(std::optional<CodeModel::Model> CM, in getEffectiveCodeModel() argument
526 if (CM) { in getEffectiveCodeModel()
528 if (*CM == CodeModel::Tiny) in getEffectiveCodeModel()
530 if (*CM == CodeModel::Kernel) in getEffectiveCodeModel()
532 return *CM; in getEffectiveCodeModel()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPRecipeBuilder.h38 LoopVectorizationCostModel &CM; variable
112 LoopVectorizationCostModel &CM, in VPRecipeBuilder() argument
114 : OrigLoop(OrigLoop), TLI(TLI), Legal(Legal), CM(CM), PSE(PSE), in VPRecipeBuilder()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp304 std::optional<CodeModel::Model> CM, bool JIT) { in getEffectiveAArch64CodeModel() argument
305 if (CM) { in getEffectiveAArch64CodeModel()
306 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny && in getEffectiveAArch64CodeModel()
307 *CM != CodeModel::Large) { in getEffectiveAArch64CodeModel()
310 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) in getEffectiveAArch64CodeModel()
312 return *CM; in getEffectiveAArch64CodeModel()
331 std::optional<CodeModel::Model> CM, in AArch64TargetMachine() argument
338 getEffectiveAArch64CodeModel(TT, CM, JIT), OL), in AArch64TargetMachine()
465 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT) in AArch64leTargetMachine() argument
466 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in AArch64leTargetMachine()
[all …]
H A DAArch64TargetMachine.h34 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
87 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
100 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetMachine.cpp125 std::optional<CodeModel::Model> CM, in MipsTargetMachine() argument
130 getEffectiveCodeModel(CM, CodeModel::Small), OL), in MipsTargetMachine()
154 std::optional<CodeModel::Model> CM, in MipsebTargetMachine() argument
156 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in MipsebTargetMachine()
164 std::optional<CodeModel::Model> CM, in MipselTargetMachine() argument
166 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in MipselTargetMachine()
H A DMipsTargetMachine.h43 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
92 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
105 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.h41 std::optional<CodeModel::Model> CM, CodeGenOptLevel OP,
92 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
103 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,

123456789