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

  /external/llvm/lib/IR/
PassRegistry.cpp 59 bool Inserted =
61 assert(Inserted && "Pass registered multiple times!");
62 (void)Inserted;
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
CFGMST.h 188 bool Inserted;
189 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
190 if (Inserted) {
191 // Newly inserted, update the real info.
195 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
196 if (Inserted)
197 // Newly inserted, update the real info.
  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 54 /// \brief Remember all the basic blocks that are inserted during
236 bool Inserted = NewBBs.insert(NewBB).second;
237 (void)Inserted;
238 assert(Inserted &&
239 "A basic block inserted via edge splitting cannot appear twice");
  /external/chromium-trace/catapult/third_party/webapp2/docs/_themes/webapp2/
pygapp2.py 48 Generic.Inserted: "nobold noitalic #000",
  /external/llvm/unittests/ADT/
StringMapTest.cpp 209 bool Inserted;
211 std::tie(NewIt, Inserted) =
217 EXPECT_TRUE(Inserted);
220 std::tie(ExistingIt, Inserted) =
224 EXPECT_FALSE(Inserted);
230 // Check that the correct iterator is returned when the inserted element is
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 439 // LiveRegs was inserted in LiveOuts. Adjust all defs to be relative to
659 bool Inserted = false;
661 i != e && !Inserted; ++i) {
663 Inserted = true;
667 if (!Inserted)
InlineSpiller.cpp 44 STATISTIC(NumSpills, "Number of spills inserted");
46 STATISTIC(NumReloads, "Number of reloads inserted");
494 bool Inserted;
495 std::tie(SVI, Inserted) =
497 if (!Inserted) {
506 // List of (Reg, VNI) that have been inserted into SibValues, but need to be
537 // This is a PHI inserted by live range splitting. We could trace the
576 std::tie(SVI, Inserted) =
582 if (Inserted)
585 // Propagate to all inserted PHIs, not just VNI
    [all...]
  /external/llvm/include/llvm/ADT/
FoldingSet.h 29 /// it, otherwise return the bucket it should be inserted into.
71 /// If The result is equal to the input then the node has been inserted.
87 /// should be inserted using InsertNode.
173 Node *Inserted = GetOrInsertNode(N);
174 (void)Inserted;
175 assert(Inserted == N && "Node already inserted!");
697 /// types in an enclosing object so that they can be inserted into FoldingSets.
  /external/llvm/include/llvm/IR/
PassManager.h 464 bool Inserted;
465 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair(
470 if (Inserted) {
477 // P.run may have inserted elements into AnalysisResults and invalidated
480 assert(RI != AnalysisResults.end() && "we just inserted it!");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 292 bool Inserted;
293 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
294 if (Inserted) {
LoopUnswitch.cpp 210 /// loop preheaders be inserted into the CFG.
271 bool Inserted;
272 std::tie(PropsIt, Inserted) =
277 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 320 bool Inserted;
321 std::tie(I, Inserted) = ELFRelSecNames.insert(std::make_pair(Name, true));
  /external/llvm/lib/Transforms/Utils/
Local.cpp 102 assert(BI->getParent() && "Terminator not inserted in block!");
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 162 bool Inserted;
163 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
164 if (Inserted)
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 541 bool inserted = FunctionsBeingProcessed.insert(FI).second; local
542 (void)inserted;
543 assert(inserted && "Recursively being processed?");
    [all...]
MicrosoftCXXABI.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h 1085 BOOLEAN Inserted;
1094 #define KAPC_ACTUAL_LENGTH (FIELD_OFFSET(KAPC, Inserted) + sizeof(BOOLEAN))
1099 BOOLEAN Inserted;
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]

Completed in 740 milliseconds