Home
last modified time | relevance | path

Searched refs:getOptions (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp138 getOptions().colored_ostream(OS, raw_ostream::CYAN) << getSourceName() in renderSourceName()
155 unsigned Length = getDividerWidth(getOptions()); in renderViewDivider()
183 getOptions().Colors && Highlight, /*Bold=*/false, in renderLine()
186 if (getOptions().Debug && Highlight) in renderLine()
200 getOptions().Colors && Highlight, /*Bold=*/false, /*BG=*/true) in renderLine()
204 if (getOptions().Debug) { in renderLine()
222 Line.hasMultipleRegions() && getOptions().Colors) in renderLineCoverageColumn()
242 OS.indent(getCombinedColumnWidth(getOptions())); in renderRegionMarkers()
264 if (getOptions().Debug) in renderRegionMarkers()
276 OS.indent(getCombinedColumnWidth(getOptions()) + (ViewDepth == 0 ? 0 : 1)); in renderExpansionSite()
[all …]
H A DSourceCoverageViewHTML.cpp906 OS << BeginSourceNameDiv << tag("pre", escape(getSourceName(), getOptions())) in renderSourceName()
959 Snippets[I] = escape(Snippets[I], getOptions()); in renderLine()
968 if (getOptions().Debug) in renderLine()
1004 if (getOptions().Debug) { in renderLine()
1035 if (getOptions().Debug) in renderLine()
1099 if (getOptions().Debug) in renderBranchView()
1111 if (getOptions().ShowBranchCounts) in renderBranchView()
1204 getOptions())) in renderInstantiationView()
1213 if (getOptions().hasProjectTitle()) in renderTitle()
1214 OS << tag(ProjectTitleTag, escape(getOptions().ProjectTitle, getOptions())); in renderTitle()
[all …]
H A DSourceCoverageView.cpp123 if (!getOptions().ShowRegionMarkers) in shouldRenderRegionMarkers()
240 if (getOptions().ShowLineNumbers) in print()
243 if (getOptions().ShowLineStats) in print()
249 getOptions().Colors) in print()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerImpl.cpp78 if (!GlobalData.getOptions().UpdateIndexTablesOnly) in addObjectFile()
96 dwarf::FormParams GlobalFormat = {GlobalData.getOptions().TargetDWARFVersion, in link()
114 if (GlobalData.getOptions().Verbose) { in link()
123 DumpOpts.Verbose = GlobalData.getOptions().Verbose; in link()
129 if (GlobalData.getOptions().VerifyInputDWARF) in link()
176 if (GlobalData.getOptions().Threads == 0) in link()
180 hardware_concurrency(GlobalData.getOptions().Threads); in link()
183 if (GlobalData.getOptions().Threads == 1) { in link()
231 if (GlobalData.getOptions().InputVerificationHandler) in verifyInput()
232 GlobalData.getOptions().InputVerificationHandler(File, OS.str()); in verifyInput()
[all …]
H A DDWARFLinkerTypeUnit.cpp139 if (!GlobalData.getOptions().AllowNonDeterministicOutput) { in prepareDataForTreeCreation()
147 if (!GlobalData.getOptions().AllowNonDeterministicOutput) { in prepareDataForTreeCreation()
192 if (!GlobalData.getOptions().AllowNonDeterministicOutput) { in prepareDataForTreeCreation()
214 if (!GlobalData.getOptions().AllowNonDeterministicOutput) { in prepareDataForTreeCreation()
349 if (llvm::is_contained(GlobalData.getOptions().AccelTables, in finishCloningAndEmit()
367 if (llvm::is_contained(GlobalData.getOptions().AccelTables, in finishCloningAndEmit()
H A DDWARFLinkerCompileUnit.cpp60 if (!GlobalData.getOptions().NoODR && Language.has_value()) in CompileUnit()
173 if (!isClangModule() && !getGlobalData().getOptions().UpdateIndexTablesOnly) in analyzeDWARFStructureRec()
254 if (!GlobalData.getOptions().ParseableSwiftInterfaces) in analyzeImportedModule()
282 auto &Entry = (*GlobalData.getOptions().ParseableSwiftInterfaces)[*Name]; in analyzeImportedModule()
441 if (getGlobalData().getOptions().UpdateIndexTablesOnly) in cloneAndEmitDebugLocations()
630 if (GlobalData.getOptions().UpdateIndexTablesOnly) in emitDebugAddrSection()
672 if (getGlobalData().getOptions().UpdateIndexTablesOnly) in cloneAndEmitRanges()
1162 } else if (!getGlobalData().getOptions().UpdateIndexTablesOnly && in cloneDieAttrExpression()
1180 } else if (!getGlobalData().getOptions().UpdateIndexTablesOnly && in cloneDieAttrExpression()
1274 if (llvm::is_contained(GlobalData.getOptions().AccelTables, in cloneAndEmit()
[all …]
H A DDWARFLinkerGlobalData.h98 const DWARFLinkerOptions &getOptions() const { return Options; } in getOptions() function
H A DDWARFLinkerImpl.h100 assert(!llvm::is_contained(GlobalData.getOptions().AccelTables, Kind)); in addAccelTableKind()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp263 return bool(Record->getOptions() & in hasConstructor()
271 return bool(Record->getOptions() & in hasAssignmentOperator()
279 return bool(Record->getOptions() & in hasNestedTypes()
287 return bool(Record->getOptions() & codeview::ClassOptions::Intrinsic); in isIntrinsic()
294 return bool(Record->getOptions() & in hasCastOperator()
320 return bool(Record->getOptions() & codeview::ClassOptions::Nested); in isNested()
327 return bool(Record->getOptions() & in hasOverloadedOperator()
335 return bool(Record->getOptions() & codeview::ClassOptions::Packed); in isPacked()
342 return bool(Record->getOptions() & codeview::ClassOptions::Scoped); in isScoped()
H A DNativeTypePointer.cpp135 return (Record->getOptions() & PointerOptions::Const) != PointerOptions::None; in isConstType()
141 return (Record->getOptions() & PointerOptions::Restrict) != in isRestrictedType()
148 return (Record->getOptions() & PointerOptions::Volatile) != in isVolatileType()
155 return (Record->getOptions() & PointerOptions::Unaligned) != in isUnalignedType()
H A DNativeTypeFunctionSig.cpp177 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor()
187 return (MemberFunc.getOptions() & in isConstructorVirtualBase()
194 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
H A DTpiHashing.cpp29 ClassOptions Opts = Rec.getOptions(); in getHashForUdt()
58 ClassOptions Opts = Deserialized.getOptions(); in getTagRecordHashForUdt()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp248 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitKnownRecord()
262 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitKnownRecord()
274 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitKnownRecord()
276 W->printFlags("Properties", uint16_t(Enum.getOptions()), in visitKnownRecord()
315 W->printFlags("FunctionOptions", uint8_t(Proc.getOptions()), in visitKnownRecord()
328 W->printFlags("FunctionOptions", uint8_t(MF.getOptions()), in visitKnownRecord()
340 printMemberAttributes(M.getAccess(), M.getMethodKind(), M.getOptions()); in visitKnownRecord()
475 printMemberAttributes(Method.getAccess(), K, Method.getOptions()); in visitKnownMember()
H A DTypeRecordHelpers.cpp24 return Record.getOptions(); in getUdtOptions()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h136 TargetOptions &getOptions() { return Options; } in getOptions() function
139 const TargetOptions &getOptions() const { return Options; } in getOptions() function
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Doptions_parser.h23 Options &getOptions();
H A Doptions_parser.cpp255 Options &getOptions() { return *getOptionsInternal(); } in getOptions() function
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp219 if (DC->getOptions() & LLVMDisassembler_Option_Color) { in LLVMDisasmInstruction()
227 if (DC->getOptions() & LLVMDisassembler_Option_PrintLatency) in LLVMDisasmInstruction()
H A DDisassembler.h116 uint64_t getOptions() const { return Options; } in getOptions() function
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp85 : IRCompiler(irManglingOptionsFromTargetOptions(JTMB.getOptions())), in ConcurrentIRCompiler()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h159 FunctionOptions getOptions() const { return Options; } in getOptions() function
190 FunctionOptions getOptions() const { return Options; } in getOptions() function
310 PointerOptions getOptions() const { in getOptions() function
452 ClassOptions getOptions() const { return Options; } in getOptions() function
734 MethodOptions getOptions() const { return Attrs.getFlags(); } in getOptions() function
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h176 const Options &getOptions() { return Opts; } in getOptions() function
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h298 LLVM_ABI static LVOptions *getOptions();
448 inline LVOptions &options() { return (*LVOptions::getOptions()); } in options()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp275 one_method.getOptions(), one_method.Attrs); in visitKnownMember()
293 method.getOptions(), method.Attrs); in visitKnownMember()
H A DPdbAstBuilder.cpp66 AddMethod(overloaded.Name, method.getAccess(), method.getOptions(), in visitKnownMember()
75 AddMethod(record.getName(), record.getAccess(), record.getOptions(), in visitKnownMember()
576 if ((pointer.getOptions() & PointerOptions::Const) != PointerOptions::None) in CreatePointerType()
579 if ((pointer.getOptions() & PointerOptions::Volatile) != PointerOptions::None) in CreatePointerType()
582 if ((pointer.getOptions() & PointerOptions::Restrict) != PointerOptions::None) in CreatePointerType()

12