Home
last modified time | relevance | path

Searched refs:Params (Results 1 – 25 of 190) sorted by relevance

12345678

/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp563 std::tie(ParamName, Params) = Params.split(';'); in parseHardwareLoopOptions()
604 std::tie(ParamName, Params) = Params.split(';'); in parseLoopUnrollOptions()
646 std::tie(ParamName, Params) = Params.split(';'); in parseSinglePassOption()
721 std::tie(ParamName, Params) = Params.split(';'); in parseASanPassOptions()
739 std::tie(ParamName, Params) = Params.split(';'); in parseHWASanPassOptions()
759 std::tie(ParamName, Params) = Params.split(';'); in parseEmbedBitcodePassOptions()
779 std::tie(ParamName, Params) = Params.split(';'); in parseMSanPassOptions()
810 std::tie(ParamName, Params) = Params.split(';'); in parseSimplifyCFGOptions()
854 std::tie(ParamName, Params) = Params.split(';'); in parseInstCombineOptions()
884 std::tie(ParamName, Params) = Params.split(';'); in parseLoopVectorizeOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRuntimeLibcallSignatures.cpp532 assert(Params.empty()); in getLibcallSignature()
651 Params.push_back(PtrTy); in getLibcallSignature()
652 Params.push_back(PtrTy); in getLibcallSignature()
656 Params.push_back(PtrTy); in getLibcallSignature()
657 Params.push_back(PtrTy); in getLibcallSignature()
683 Params.push_back(PtrTy); in getLibcallSignature()
694 Params.push_back(PtrTy); in getLibcallSignature()
767 Params.push_back(PtrTy); in getLibcallSignature()
800 Params.push_back(PtrTy); in getLibcallSignature()
802 Params.push_back(PtrTy); in getLibcallSignature()
[all …]
H A DWebAssemblyMachineFunctionInfo.cpp68 SmallVectorImpl<MVT> &Params, in computeSignatureVTs() argument
80 Params.push_back(PtrVT); in computeSignatureVTs()
84 computeLegalValueVTs(ContextFunc, TM, Param, Params); in computeSignatureVTs()
86 Params.push_back(PtrVT); in computeSignatureVTs()
102 Params.push_back(PtrVT); in computeSignatureVTs()
104 Params.push_back(PtrVT); in computeSignatureVTs()
116 const SmallVectorImpl<MVT> &Params) { in signatureFromMVTs() argument
119 valTypesFromMVTs(Params, Sig->Params); in signatureFromMVTs()
127 Params.push_back(EVT(VT).getEVTString()); in WebAssemblyFunctionInfo()
157 for (auto VT : YamlMFI.Params) in initializeBaseYamlFields()
H A DWebAssemblyMachineFunctionInfo.h35 std::vector<MVT> Params; variable
81 void addParam(MVT VT) { Params.push_back(VT); } in addParam()
82 const std::vector<MVT> &getParams() const { return Params; } in getParams()
88 Params.clear(); in clearParamsAndResults()
169 SmallVectorImpl<MVT> &Params,
177 const SmallVectorImpl<MVT> &Params);
184 std::vector<FlowStringValue> Params; member
201 YamlIO.mapOptional("params", MFI.Params, std::vector<FlowStringValue>());
H A DWebAssemblyRuntimeLibcallSignatures.h28 SmallVectorImpl<wasm::ValType> &Params);
33 SmallVectorImpl<wasm::ValType> &Params);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineOrder.cpp47 const InlineParams &Params) { in getInlineCostWrapper() argument
70 return getInlineCost(CB, Params, CalleeTTI, GetAssumptionCache, GetTLI, in getInlineCostWrapper()
95 const InlineParams &Params) { in CostPriority() argument
115 const InlineParams &Params) { in CostBenefitPriority() argument
183 const InlineParams &Params) { in MLPriority() argument
213 It->second = PriorityT(CB, FAM, Params); in updateAndCheckDecreased()
235 : FAM(FAM), Params(Params) { in PriorityInlineOrder()
248 Priorities[CB] = PriorityT(CB, FAM, Params); in push()
277 const InlineParams &Params; member in __anon8b2eb5460111::PriorityInlineOrder
287 const InlineParams &Params, in getDefaultInlineOrder() argument
[all …]
H A DInlineCost.cpp555 const InlineParams &Params; member in __anond1042ba30111::InlineCostCallAnalyzer
684 auto IndirectCallParams = Params; in onLoweredCall()
1109 Params(Params), Threshold(Params.DefaultThreshold), in InlineCostCallAnalyzer()
1879 return Params.HotCallSiteThreshold; in getHotCallSiteThreshold()
3154 InlineParams Params; in getInlineParams() local
3166 Params.DefaultThreshold = Threshold; in getInlineParams()
3169 Params.HintThreshold = HintThreshold; in getInlineParams()
3199 Params.ColdThreshold = ColdThreshold; in getInlineParams()
3203 return Params; in getInlineParams()
3224 auto Params = in getInlineParams() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLFunctionalExtras.h38 template<typename Ret, typename ...Params>
39 class function_ref<Ret(Params...)> {
40 Ret (*callback)(intptr_t callable, Params ...params) = nullptr;
44 static Ret callback_fn(intptr_t callable, Params ...params) { in callback_fn()
46 std::forward<Params>(params)...); in callback_fn()
62 std::declval<Params>()...)),
67 Ret operator()(Params ...params) const { in operator()
68 return callback(callable, std::forward<Params>(params)...); in operator()
H A DFunctionExtras.h68 template <typename CallableT, typename Ret, typename... Params>
71 std::is_same<decltype(std::declval<CallableT>()(std::declval<Params>()...)),
74 std::declval<Params>()...)),
77 std::declval<Params>()...)),
122 AdjustedParamT<ParamTs>... Params);
219 AdjustedParamT<ParamTs>... Params) {
221 return Func(std::forward<ParamTs>(Params)...);
384 R operator()(P... Params) {
385 return this->getCallPtr()(this->getCalleePtr(), Params...);
410 R operator()(P... Params) const {
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSampleProfileInference.cpp88 MinCostMaxFlow(const ProfiParams &Params) : Params(Params) {} in MinCostMaxFlow() argument
97 if (Params.EvenFlowDistribution) in initialize()
581 const ProfiParams &Params; member in __anon1fb2f5b80111::MinCostMaxFlow
603 : Params(Params), Func(Func) {} in FlowAdjuster()
607 if (Params.JoinIslands) { in run()
612 if (Params.RebalanceUnknown) { in run()
755 return Params.CostUnlikely; in jumpDistance()
1041 const ProfiParams &Params; member in __anon1fb2f5b80111::FlowAdjuster
1131 return std::make_pair(Params.CostUnlikely, Params.CostUnlikely); in assignBlockCosts()
1159 return std::make_pair(Params.CostUnlikely, Params.CostUnlikely); in assignJumpCosts()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp59 NamedDecl *P = Params[Idx]; in TemplateParameterList()
205 for (NamedDecl *P : *Params) { in AdoptTemplateParameterList()
810 IdentifierInfo *Id, TemplateParameterList *Params, in TemplateTemplateParmDecl() argument
826 Params); in Create()
1107 TemplateParams(Params), ArgsAsWritten(ArgInfos), in ClassTemplatePartialSpecializationDecl()
1109 if (AdoptTemplateParameterList(Params, this)) in ClassTemplatePartialSpecializationDecl()
1117 TemplateParameterList *Params, in Create() argument
1157 if (!Params.empty()) { in Create()
1159 llvm::copy(Params, TPL); in Create()
1414 if (AdoptTemplateParameterList(Params, DC)) in VarTemplatePartialSpecializationDecl()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_primary32.h47 template <class Params>
51 (Params::kSpaceSize >> Params::kRegionSizeLog) >> 12;
55 using AddressSpaceView = typename Params::AddressSpaceView;
56 static const uptr kSpaceBeg = Params::kSpaceBeg;
57 static const u64 kSpaceSize = Params::kSpaceSize;
58 static const uptr kMetadataSize = Params::kMetadataSize;
59 typedef typename Params::SizeClassMap SizeClassMap;
60 static const uptr kRegionSizeLog = Params::kRegionSizeLog;
64 FlatByteMap<(Params::kSpaceSize >> Params::kRegionSizeLog),
71 static const bool kRandomShuffleChunks = Params::kFlags &
[all …]
H A Dsanitizer_stoptheworld_fuchsia.cpp28 struct Params { in StopTheWorld() struct
35 auto params = reinterpret_cast<Params *>(data); in StopTheWorld()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFunction.cpp21 llvm::DenseMap<unsigned, ParamDescriptor> &&Params, in Function() argument
25 ParamTypes(std::move(ParamTypes)), Params(std::move(Params)), in Function()
31 auto It = Params.find(Offset); in getParamDescriptor()
32 assert(It != Params.end() && "Invalid parameter offset"); in getParamDescriptor()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DModuleInliner.h29 ModuleInlinerPass(InlineParams Params = getInlineParams(),
32 : Params(Params), Mode(Mode), LTOPhase(LTOPhase){}; in Params() function
41 const InlineParams Params; variable
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp73 struct Params { in LockStuffAndStopTheWorld() struct
81 auto params = static_cast<const Params *>(data); in LockStuffAndStopTheWorld()
89 auto params = static_cast<const Params *>(data); in LockStuffAndStopTheWorld()
98 auto params = static_cast<const Params *>(data); in LockStuffAndStopTheWorld()
116 auto params = static_cast<const Params *>(data); in LockStuffAndStopTheWorld()
144 auto params = static_cast<const Params *>(data); in LockStuffAndStopTheWorld()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompression.h93 struct Params { struct
94 constexpr Params(Format F) in Params() argument
97 Params(DebugCompressionType Type) : Params(formatFor(Type)) {} in Params() argument
113 void compress(Params P, ArrayRef<uint8_t> Input, argument
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbtest.c1031 ACPI_OBJECT Params[2]; in AcpiDbReadFromObject() local
1036 Params[0].Type = ACPI_TYPE_LOCAL_REFERENCE; in AcpiDbReadFromObject()
1037 Params[0].Reference.ActualType = Node->Type; in AcpiDbReadFromObject()
1041 ParamObjects.Pointer = Params; in AcpiDbReadFromObject()
1118 ACPI_OBJECT Params[2]; in AcpiDbWriteToObject() local
1122 Params[0].Type = ACPI_TYPE_LOCAL_REFERENCE; in AcpiDbWriteToObject()
1123 Params[0].Reference.ActualType = Node->Type; in AcpiDbWriteToObject()
1128 memcpy (&Params[1], Value, sizeof (ACPI_OBJECT)); in AcpiDbWriteToObject()
1131 ParamObjects.Pointer = Params; in AcpiDbWriteToObject()
1265 ThisParam = Params; in AcpiDbEvaluateOnePredefinedName()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp645 ArrayRef<Value *> Params) { in getDeclarationForParams() argument
650 Type *OverloadTy = Params[0]->getType(); in getDeclarationForParams()
653 Params[*VPReductionIntrinsic::getVectorParamPos(VPID)]->getType(); in getDeclarationForParams()
673 VPFunc = Intrinsic::getDeclaration(M, VPID, {Params[0]->getType()}); in getDeclarationForParams()
677 VPFunc = Intrinsic::getDeclaration(M, VPID, {Params[1]->getType()}); in getDeclarationForParams()
681 M, VPID, {ReturnType, Params[0]->getType()}); in getDeclarationForParams()
685 M, VPID, {ReturnType, Params[0]->getType(), Params[1]->getType()}); in getDeclarationForParams()
689 M, VPID, {ReturnType, Params[0]->getType()}); in getDeclarationForParams()
693 M, VPID, {Params[0]->getType(), Params[1]->getType()}); in getDeclarationForParams()
698 {Params[0]->getType(), Params[1]->getType(), Params[2]->getType()}); in getDeclarationForParams()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h235 (assert(N == Params.size()), in FixedSizeTemplateParameterListStorage()
419 TemplateParameterList *Params, NamedDecl *Decl);
424 TemplateParameterList *Params) in TemplateDecl() argument
425 : TemplateDecl(DK, DC, L, Name, Params, nullptr) {} in TemplateDecl()
2107 TemplateParameterList *Params,
2453 TemplateParameterList **Params = nullptr;
2465 Params(Params), Friend(Friend), FriendLoc(FriendLoc) {}
2500 return Params[i];
2882 SourceLocation IdLoc, TemplateParameterList *Params,
3181 : TemplateDecl(Concept, DC, L, Name, Params),
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineOrder.h35 getDefaultInlineOrder(FunctionAnalysisManager &FAM, const InlineParams &Params,
39 getInlineOrder(FunctionAnalysisManager &FAM, const InlineParams &Params,
58 const InlineParams &Params,
H A DInlineAdvisor.h233 InlineParams Params, InlineContext IC) in DefaultInlineAdvisor() argument
234 : InlineAdvisor(M, FAM, IC), Params(Params) {} in DefaultInlineAdvisor()
239 InlineParams Params; variable
295 InlineParams Params,
330 bool tryCreate(InlineParams Params, InliningAdvisorMode Mode,
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h298 MCDwarfLineTableParams Params; in emitLineTableRows() local
299 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in emitLineTableRows()
300 Params.DWARF2LineBase = LineTable.Prologue.LineBase; in emitLineTableRows()
301 Params.DWARF2LineRange = LineTable.Prologue.LineRange; in emitLineTableRows()
308 MCDwarfLineAddr::encode(*MC, Params, std::numeric_limits<int64_t>::max(), in emitLineTableRows()
377 MCDwarfLineAddr::encode(*MC, Params, LineDelta, AddressDelta, in emitLineTableRows()
393 MCDwarfLineAddr::encode(*MC, Params, in emitLineTableRows()
405 MCDwarfLineAddr::encode(*MC, Params, std::numeric_limits<int64_t>::max(), in emitLineTableRows()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DMacroExpander.cpp36 SmallVector<FormatToken *, 8> Params; member
78 Def.Params.push_back(Current); in parseParams()
79 Def.ArgMap[Def.Params.back()->TokenText] = Def.Params.size() - 1; in parseParams()
147 FunctionLike[Definition.Name][Definition.Params.size()] = in parseDefinition()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp279 CUIDTablePair.second.emitCU(MCOS, Params, LineStr); in emit()
313 (Params.DWARF2LineOpcodeBase - 1U)); in Emit()
314 return Emit(MCOS, Params, in Emit()
533 MCOS->emitInt8(Params.DWARF2LineBase); in Emit()
534 MCOS->emitInt8(Params.DWARF2LineRange); in Emit()
679 return (op - Params.DWARF2LineOpcodeBase) / Params.DWARF2LineRange; in SpecialAddr()
713 Temp = LineDelta - Params.DWARF2LineBase; in encode()
717 if (Temp >= Params.DWARF2LineRange || in encode()
718 Temp + Params.DWARF2LineOpcodeBase > 255) { in encode()
723 Temp = 0 - Params.DWARF2LineBase; in encode()
[all …]

12345678