/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 195 Subs.append(Next->Subs.begin(), Next->Subs.end()); in append() 208 Subs.push_back(SubIn); in addSub() 227 std::stable_partition(Subs.begin(), Subs.end(), [&](CHRScope *Sub) { in split() 239 ArrayRef<CHRScope *> TailSubs(TailIt, Subs.end()); in split() 244 Subs.erase(TailIt, Subs.end()); in split() 259 SmallVector<CHRScope *, 8> Subs; // Subscopes. member in __anone1ce48180111::CHRScope 285 Subs(SubsIn.begin(), SubsIn.end()), BranchInsertPoint(nullptr) {} in CHRScope() 463 for (CHRScope *Sub : Subs) { in print() 1111 for (CHRScope *Sub : Scope->Subs) in getSelectsInScope() 1233 for (CHRScope *Sub : Split->Subs) { in splitScope() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | CommandLine.cpp | 176 if (Opt.Subs.empty()) { in forEachSubCommand() 180 if (Opt.Subs.size() == 1 && *Opt.Subs.begin() == &SubCommand::getAll()) { in forEachSubCommand() 186 for (auto *SC : Opt.Subs) { in forEachSubCommand() 2301 SmallVectorImpl<std::pair<const char *, SubCommand *>> &Subs) { in sortSubCommands() argument 2305 Subs.push_back(std::make_pair(S->getName().data(), S)); in sortSubCommands() 2307 array_pod_sort(Subs.begin(), Subs.end(), SubNameCompare); in sortSubCommands() 2325 void printSubCommands(StrSubCommandPairVector &Subs, size_t MaxSubLen) { in printSubCommands() argument 2326 for (const auto &S : Subs) { in printSubCommands() 2359 StrSubCommandPairVector Subs; in printHelp() local 2360 sortSubCommands(GlobalParser->RegisteredSubCommands, Subs); in printHelp() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 240 SmallVector<SubCommand *, 4> Subs; variable 243 SubCommandGroup(std::initializer_list<SubCommand *> IL) : Subs(IL) {} in SubCommandGroup() 245 ArrayRef<SubCommand *> getSubCommands() const { return Subs; } in getSubCommands() 287 SmallPtrSet<SubCommand *, 1> Subs; // The subcommands this option belongs to. variable 332 void addSubCommand(SubCommand &S) { Subs.insert(&S); } in addSubCommand() 1945 if (!Subs.empty()) 1947 Subs = AliasFor->Subs;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RDFLiveness.cpp | 660 std::unordered_map<RegisterAggr, SubMap> Subs; in computePhiInfo() local 690 if (Subs.find(MidDefs) == Subs.end()) { in computePhiInfo() 691 Subs.insert({MidDefs, SubMap(1, RefHash(), RefEqual(PRI))}); in computePhiInfo() 693 SubMap &SM = Subs.at(MidDefs); in computePhiInfo()
|
H A D | ModuloSchedule.cpp | 1624 SmallVector<std::pair<MachineInstr *, Register>, 4> Subs; in filterInstructions() local 1631 Subs.emplace_back(&UseMI, Reg); in filterInstructions() 1633 for (auto &Sub : Subs) in filterInstructions() 1939 SmallVector<std::pair<MachineInstr *, Register>, 4> Subs; in rewriteUsesOf() local 1946 Subs.emplace_back(&UseMI, Reg); in rewriteUsesOf() 1948 for (auto &Sub : Subs) in rewriteUsesOf()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | ItaniumDemangle.h | 2619 PODSmallVector<Node *, 32> Subs; member 2696 Subs.clear(); in reset() 2942 Subs.push_back(Result); in parseName() 3102 Subs.push_back(Module); in parseModuleNameOpt() 3548 Subs.push_back(SoFar); in parseNestedName() 3555 if (SoFar == nullptr || Subs.empty()) in parseNestedName() 3558 Subs.pop_back(); in parseNestedName() 3600 Subs.push_back(TP); in parseUnresolvedType() 3607 Subs.push_back(DT); in parseUnresolvedType() 4411 Subs.push_back(Result); in parseType() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugInfo.cpp | 1311 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts), in LLVMDIBuilderCreateArrayType() local 1314 unwrapDI<DIType>(Ty), Subs)); in LLVMDIBuilderCreateArrayType() 1322 auto Subs = unwrap(Builder)->getOrCreateArray({unwrap(Subscripts), in LLVMDIBuilderCreateVectorType() local 1325 unwrapDI<DIType>(Ty), Subs)); in LLVMDIBuilderCreateVectorType()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 4245 SmallVector<SDValue, 4> Subs; in SplitOpsAndApply() local 4254 Subs.push_back(Builder(DAG, DL, SubOps)); in SplitOpsAndApply() 4256 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Subs); in SplitOpsAndApply() 56175 SmallVector<SDValue> Subs; in combineConcatVectorOps() local 56177 Subs.push_back(SubOp.getOperand(I)); in combineConcatVectorOps() 56179 EVT SubVT = peekThroughBitcasts(Subs[0]).getValueType(); in combineConcatVectorOps() 56183 SubVT.getVectorElementCount() * Subs.size()); in combineConcatVectorOps() 56184 for (SDValue &Sub : Subs) in combineConcatVectorOps() 56187 VT, DAG.getNode(ISD::CONCAT_VECTORS, DL, ConcatVT, Subs)); in combineConcatVectorOps() 56189 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Subs); in combineConcatVectorOps()
|