/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageFilters.cpp | 44 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 D | CoverageFilters.h | 34 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 D | CoverageSummaryInfo.cpp | 38 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() 77 CoverageData CD = CM.getCoverageForFunction(Function); in get() 89 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get() 48 get(const CoverageMapping & CM,const coverage::FunctionRecord & Function) get() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcTargetMachine.cpp | 80 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() 214 std::optional<CodeModel::Model> CM, in SparcV9TargetMachine() argument [all …]
|
H A D | SparcTargetMachine.h | 32 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/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreTargetMachine.cpp | 34 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/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonGenExtract.cpp | 100 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 D | HexagonGenMux.cpp | 229 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/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kTargetMachine.cpp | 86 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/usr.bin/tip/tip/ |
H A D | acu.c | 67 if (CM != NOSTR) in con() 68 parwrite(FD, CM, size(CM)); in con() 141 if (CM != NOSTR) in con() 142 parwrite(FD, CM, size(CM)); in con()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
H A D | LoongArchTargetMachine.cpp | 69 std::optional<CodeModel::Model> CM) { in getEffectiveLoongArchCodeModel() argument 70 if (!CM) in getEffectiveLoongArchCodeModel() 73 switch (*CM) { in getEffectiveLoongArchCodeModel() 75 return *CM; in getEffectiveLoongArchCodeModel() 80 return *CM; in getEffectiveLoongArchCodeModel() 90 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT) in LoongArchTargetMachine() argument 93 getEffectiveLoongArchCodeModel(TT, CM), OL), in LoongArchTargetMachine()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | JITTargetMachineBuilder.h | 93 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/sys/contrib/device-tree/src/arm/ti/omap/ |
H A D | omap3-sbc-t3730.dts | 3 * 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 D | omap3-sbc-t3530.dts | 3 * 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 D | omap3-sbc-t3517.dts | 3 * 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/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetMachine.cpp | 133 getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM, in getEffectiveSystemZCodeModel() argument 135 if (CM) { in getEffectiveSystemZCodeModel() 136 if (*CM == CodeModel::Tiny) in getEffectiveSystemZCodeModel() 138 if (*CM == CodeModel::Kernel) in getEffectiveSystemZCodeModel() 140 return *CM; in getEffectiveSystemZCodeModel() 151 std::optional<CodeModel::Model> CM, in SystemZTargetMachine() argument 156 getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT), in SystemZTargetMachine()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetMachine.h | 238 void setCodeModel(CodeModel::Model CM) { CMModel = CM; } in setCodeModel() argument 447 CodeModel::Model CM, CodeGenOptLevel OL); 531 getEffectiveCodeModel(std::optional<CodeModel::Model> CM, in getEffectiveCodeModel() argument 533 if (CM) { in getEffectiveCodeModel() 535 if (*CM == CodeModel::Tiny) in getEffectiveCodeModel() 537 if (*CM == CodeModel::Kernel) in getEffectiveCodeModel() 539 return *CM; in getEffectiveCodeModel()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
H A D | XtensaTargetMachine.cpp | 49 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/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPRecipeBuilder.h | 39 LoopVectorizationCostModel &CM; variable 108 LoopVectorizationCostModel &CM, in VPRecipeBuilder() argument 110 : Plan(Plan), OrigLoop(OrigLoop), TLI(TLI), Legal(Legal), CM(CM), in VPRecipeBuilder()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetMachine.cpp | 319 std::optional<CodeModel::Model> CM, bool JIT) { in getEffectiveAArch64CodeModel() argument 320 if (CM) { in getEffectiveAArch64CodeModel() 321 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny && in getEffectiveAArch64CodeModel() 322 *CM != CodeModel::Large) { in getEffectiveAArch64CodeModel() 325 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) in getEffectiveAArch64CodeModel() 327 return *CM; in getEffectiveAArch64CodeModel() 346 std::optional<CodeModel::Model> CM, in AArch64TargetMachine() argument 353 getEffectiveAArch64CodeModel(TT, CM, JIT), OL), in AArch64TargetMachine() 478 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT) in AArch64leTargetMachine() argument 479 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in AArch64leTargetMachine() [all …]
|
H A D | AArch64TargetMachine.h | 33 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, 85 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, 98 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsTargetMachine.cpp | 125 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 D | MipsTargetMachine.h | 43 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, 92 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, 105 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetMachine.cpp | 129 std::optional<CodeModel::Model> CM, in NVPTXTargetMachine() argument 135 getEffectiveCodeModel(CM, CodeModel::Small), OL), in NVPTXTargetMachine() 156 std::optional<CodeModel::Model> CM, in NVPTXTargetMachine32() argument 158 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} in NVPTXTargetMachine32() 166 std::optional<CodeModel::Model> CM, in NVPTXTargetMachine64() argument 168 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {} in NVPTXTargetMachine64()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCSubtarget.cpp | 236 CodeModel::Model CM = *MaybeCodeModel; in getCodeModel() local 237 assert((CM == CodeModel::Small || CM == CodeModel::Large) && in getCodeModel() 239 return CM; in getCodeModel()
|