HomeSort by relevance Sort by last modified time
    Searched refs:Inserted (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/IR/
PassRegistry.cpp 55 bool Inserted =
57 assert(Inserted && "Pass registered multiple times!");
58 (void)Inserted;
  /external/llvm/lib/Transforms/Instrumentation/
CFGMST.h 187 bool Inserted;
188 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
189 if (Inserted) {
190 // Newly inserted, update the real info.
194 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
195 if (Inserted)
196 // Newly inserted, update the real info.
  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 54 /// \brief Remember all the basic blocks that are inserted during
238 bool Inserted = NewBBs.insert(NewBB).second;
239 (void)Inserted;
240 assert(Inserted &&
241 "A basic block inserted via edge splitting cannot appear twice");
  /external/swiftshader/third_party/LLVM/lib/VMCore/
PassRegistry.cpp 108 bool Inserted =
110 assert(Inserted && "Pass registered multiple times!");
111 (void)Inserted;
  /external/llvm/unittests/ADT/
StringMapTest.cpp 237 bool Inserted;
239 std::tie(NewIt, Inserted) =
245 EXPECT_TRUE(Inserted);
248 std::tie(ExistingIt, Inserted) =
252 EXPECT_FALSE(Inserted);
258 // Check that the correct iterator is returned when the inserted element is
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
FoldingSet.h 31 /// it, otherwise return the bucket it should be inserted into.
73 /// If The result is equal to the input then the node has been inserted.
89 /// should be inserted using InsertNode.
172 Node *Inserted = GetOrInsertNode(N);
173 (void)Inserted;
174 assert(Inserted == N && "Node already inserted!");
614 /// types in an enclosing object so that they can be inserted into FoldingSets.
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 444 // LiveRegs was inserted in LiveOuts. Adjust all defs to be relative to
666 bool Inserted = false;
668 i != e && !Inserted; ++i) {
670 Inserted = true;
674 if (!Inserted)
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
InlineSpiller.cpp 39 STATISTIC(NumSpills, "Number of spills inserted");
41 STATISTIC(NumReloads, "Number of reloads inserted");
478 bool Inserted;
479 tie(SVI, Inserted) =
481 if (!Inserted) {
490 // List of (Reg, VNI) that have been inserted into SibValues, but need to be
517 // This is a PHI inserted by live range splitting. We could trace the
557 tie(SVI, Inserted) =
563 if (Inserted)
566 // Propagate to all inserted PHIs, not just VNI
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 27 /// it, otherwise return the bucket it should be inserted into.
69 /// If The result is equal to the input then the node has been inserted.
85 /// should be inserted using InsertNode.
172 Node *Inserted = GetOrInsertNode(N);
173 (void)Inserted;
174 assert(Inserted == N && "Node already inserted!");
711 /// types in an enclosing object so that they can be inserted into FoldingSets.
  /external/llvm/include/llvm/IR/
PassManager.h 527 bool Inserted;
528 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair(
533 if (Inserted) {
540 // P.run may have inserted elements into AnalysisResults and invalidated
543 assert(RI != AnalysisResults.end() && "we just inserted it!");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 195 bool Inserted;
196 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
197 if (Inserted) {
LoopUnrollPass.cpp 423 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
426 (void)Inserted;
427 assert(Inserted && "Cannot have a state for an unvisited instruction!");
    [all...]
LoopUnswitch.cpp 215 /// loop preheaders be inserted into the CFG.
267 bool Inserted;
268 std::tie(PropsIt, Inserted) =
273 if (Inserted) {
    [all...]
LoopStrengthReduce.cpp 266 /// However, every formula inserted into the LSRInstance must be in canonical
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/MC/
MCContext.cpp 317 bool Inserted;
318 std::tie(I, Inserted) =
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 149 bool Inserted = CallSiteToFunctionMap.insert(
151 (void)Inserted;
152 assert(Inserted && "Pair was already in CallSiteToFunctionMap");
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
LazyCallGraph.cpp 334 // constraint after the edge is inserted.
821 bool Inserted = ConnectedSet.insert(C).second;
822 (void)Inserted;
823 assert(Inserted && "Cannot insert a refSCC multiple times!");
834 // a connected set with the inserted edge, merge all of them into this SCC.
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 160 bool Inserted;
161 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
162 if (Inserted)
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 105 assert(BI->getParent() && "Terminator not inserted in block!");
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 699 bool inserted = FunctionsBeingProcessed.insert(FI).second; local
700 (void)inserted;
701 assert(inserted && "Recursively being processed?");
    [all...]
MicrosoftCXXABI.cpp     [all...]

Completed in 913 milliseconds

1 2