Home
last modified time | relevance | path

Searched refs:Subs (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp194 Subs.append(Next->Subs.begin(), Next->Subs.end()); in append()
207 Subs.push_back(SubIn); in addSub()
226 std::stable_partition(Subs.begin(), Subs.end(), [&](CHRScope *Sub) { in split()
238 ArrayRef<CHRScope *> TailSubs(TailIt, Subs.end()); in split()
243 Subs.erase(TailIt, Subs.end()); in split()
258 SmallVector<CHRScope *, 8> Subs; // Subscopes. member in __anone1ce48180111::CHRScope
283 : RegInfos(RegInfosIn), Subs(SubsIn), BranchInsertPoint(nullptr) {} in CHRScope()
461 for (CHRScope *Sub : Subs) { in print()
1105 for (CHRScope *Sub : Scope->Subs) in getSelectsInScope()
1226 for (CHRScope *Sub : Split->Subs) { in splitScope()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp177 if (Opt.Subs.empty()) { in forEachSubCommand()
181 if (Opt.Subs.size() == 1 && *Opt.Subs.begin() == &SubCommand::getAll()) { in forEachSubCommand()
187 for (auto *SC : Opt.Subs) { in forEachSubCommand()
2296 SmallVectorImpl<std::pair<const char *, SubCommand *>> &Subs) { in sortSubCommands() argument
2300 Subs.push_back(std::make_pair(S->getName().data(), S)); in sortSubCommands()
2302 array_pod_sort(Subs.begin(), Subs.end(), SubNameCompare); in sortSubCommands()
2320 void printSubCommands(StrSubCommandPairVector &Subs, size_t MaxSubLen) { in printSubCommands() argument
2321 for (const auto &S : Subs) { in printSubCommands()
2354 StrSubCommandPairVector Subs; in printHelp() local
2355 sortSubCommands(GlobalParser->RegisteredSubCommands, Subs); in printHelp()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h241 SmallVector<SubCommand *, 4> Subs; variable
244 SubCommandGroup(std::initializer_list<SubCommand *> IL) : Subs(IL) {} in SubCommandGroup()
246 ArrayRef<SubCommand *> getSubCommands() const { return Subs; } in getSubCommands()
288 SmallPtrSet<SubCommand *, 1> Subs; // The subcommands this option belongs to. variable
333 void addSubCommand(SubCommand &S) { Subs.insert(&S); } in addSubCommand()
1953 if (!Subs.empty())
1955 Subs = AliasFor->Subs;
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2756 PODSmallVector<Node *, 32> Subs; member
2833 Subs.clear(); in reset()
3079 Subs.push_back(Result); in parseName()
3239 Subs.push_back(Module); in parseModuleNameOpt()
3688 Subs.push_back(SoFar); in parseNestedName()
3695 if (SoFar == nullptr || Subs.empty()) in parseNestedName()
3698 Subs.pop_back(); in parseNestedName()
3740 Subs.push_back(TP); in parseUnresolvedType()
3747 Subs.push_back(DT); in parseUnresolvedType()
4579 Subs.push_back(Result); in parseType()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp1368 auto Subs = in LLVMDIBuilderCreateDynamicArrayType() local
1372 Size, AlignInBits, unwrapDI<DIType>(Ty), Subs, in LLVMDIBuilderCreateDynamicArrayType()
1405 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts), in LLVMDIBuilderCreateArrayType() local
1408 unwrapDI<DIType>(Ty), Subs)); in LLVMDIBuilderCreateArrayType()
1416 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts), in LLVMDIBuilderCreateVectorType() local
1419 unwrapDI<DIType>(Ty), Subs)); in LLVMDIBuilderCreateVectorType()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DModuloSchedule.cpp1643 SmallVector<std::pair<MachineInstr *, Register>, 4> Subs; in filterInstructions() local
1650 Subs.emplace_back(&UseMI, Reg); in filterInstructions()
1652 for (auto &Sub : Subs) in filterInstructions()
1958 SmallVector<std::pair<MachineInstr *, Register>, 4> Subs; in rewriteUsesOf() local
1965 Subs.emplace_back(&UseMI, Reg); in rewriteUsesOf()
1967 for (auto &Sub : Subs) in rewriteUsesOf()
H A DRDFLiveness.cpp657 std::unordered_map<RegisterAggr, SubMap> Subs; in computePhiInfo() local
687 SubMap &SM = Subs.try_emplace(MidDefs, 1, RefHash(), RefEqual(PRI)) in computePhiInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4477 SmallVector<SDValue, 4> Subs; in SplitOpsAndApply() local
4486 Subs.push_back(Builder(DAG, DL, SubOps)); in SplitOpsAndApply()
4488 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Subs); in SplitOpsAndApply()
58358 SmallVector<SDValue> Subs; in combineConcatVectorOps() local
58360 Subs.push_back(SubOp.getOperand(I)); in combineConcatVectorOps()
58362 EVT SubVT = peekThroughBitcasts(Subs[0]).getValueType(); in combineConcatVectorOps()
58366 SubVT.getVectorElementCount() * Subs.size()); in combineConcatVectorOps()
58367 for (SDValue &Sub : Subs) in combineConcatVectorOps()
58369 if (SDValue ConcatSrc = combineConcatVectorOps(DL, ConcatVT, Subs, DAG, in combineConcatVectorOps()
58373 VT, DAG.getNode(ISD::CONCAT_VECTORS, DL, ConcatVT, Subs)); in combineConcatVectorOps()
[all …]