Searched refs:Inserted (Results 1 - 20 of 20) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DPassRegistry.cpp59 bool Inserted = local
61 assert(Inserted && "Pass registered multiple times!");
62 (void)Inserted;
H A DVerifier.cpp1222 bool Inserted = SeenIDs.insert(std::make_pair(ID, Op)).second; local
1223 Assert(Inserted,
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h188 bool Inserted; local
189 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
190 if (Inserted) {
195 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
196 if (Inserted)
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineDominators.h236 bool Inserted = NewBBs.insert(NewBB).second; local
237 (void)Inserted;
238 assert(Inserted &&
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp659 bool Inserted = false; local
661 i != e && !Inserted; ++i) {
663 Inserted = true;
667 if (!Inserted)
H A DInlineSpiller.cpp493 bool Inserted; local
494 std::tie(SVI, Inserted) =
496 if (!Inserted) {
574 std::tie(SVI, Inserted) =
580 if (Inserted)
607 std::tie(SVI, Inserted) = SibValues.insert(
610 if (Inserted)
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DPassManager.h464 bool Inserted; local
465 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair(
470 if (Inserted) {
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DFoldingSet.h173 Node *Inserted = GetOrInsertNode(N); local
174 (void)Inserted;
175 assert(Inserted == N && "Node already inserted!");
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp292 bool Inserted; local
293 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
294 if (Inserted) {
H A DLoopUnswitch.cpp271 bool Inserted; local
272 std::tie(PropsIt, Inserted) =
277 if (Inserted) {
H A DLoopStrengthReduce.cpp3043 bool Inserted = InsertFormula(LU, LUIdx, F); local
3044 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3055 bool Inserted = InsertFormula(LU, LUIdx, F); local
3056 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
4635 DenseMap<BasicBlock *, Value *> Inserted; local
4680 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
H A DSROA.cpp844 bool Inserted;
846 std::tie(MTPI, Inserted) =
849 if (!Inserted) {
865 insertUse(II, Offset, Size, /*IsSplittable=*/Inserted && Length);
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCContext.cpp320 bool Inserted; local
321 std::tie(I, Inserted) = ELFRelSecNames.insert(std::make_pair(Name, true));
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp162 bool Inserted; local
163 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
164 if (Inserted)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DLocal.cpp921 auto Inserted = PHISet.insert(PN); local
922 if (!Inserted.second) {
924 PN->replaceAllUsesWith(*Inserted.first);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DVTableBuilder.cpp2897 bool Inserted; local
2898 std::tie(J, Inserted) = VisitedGroupIndices.insert(
2900 if (Inserted)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp1295 bool Inserted = FunctionsBeingProcessed.insert(&FI).second;
1296 (void)Inserted;
1297 assert(Inserted && "Recursively being processed?");
H A DMicrosoftCXXABI.cpp1633 bool Inserted; local
1634 std::tie(I, Inserted) = VTablesMap.insert(std::make_pair(ID, nullptr));
1635 if (!Inserted)
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2278 bool Inserted = Done.insert(BB).second;
2279 if (!Inserted)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp1833 bool Inserted = false; local
1835 PP.addModuleMacro(Owner, II, MMR.MI, Overrides, Inserted);

Completed in 238 milliseconds