Searched defs:Inserted (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/VMCore/
H A DPassRegistry.cpp108 bool Inserted = local
110 assert(Inserted && "Pass registered multiple times!");
111 (void)Inserted;
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h172 Node *Inserted = GetOrInsertNode(N); local
173 (void)Inserted;
174 assert(Inserted == N && "Node already inserted!");
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp585 bool Inserted = false; local
587 i != e && !Inserted; ++i) {
589 Inserted = true;
593 if (!Inserted)
H A DInlineSpiller.cpp476 bool Inserted; local
477 tie(SVI, Inserted) =
479 if (!Inserted) {
555 tie(SVI, Inserted) =
561 if (Inserted)
588 tie(SVI, Inserted) = SibValues.insert(std::make_pair(SrcVNI,
591 if (Inserted)
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp153 bool Inserted = CallSiteToFunctionMap.insert( local
155 (void)Inserted;
156 assert(Inserted && "Pair was already in CallSiteToFunctionMap");
/external/clang/lib/CodeGen/
H A DCGCall.cpp831 bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted; local
832 assert(Inserted && "Recursively being processed?");
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2895 bool Inserted = InsertFormula(LU, LUIdx, F); local
2896 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2907 bool Inserted = InsertFormula(LU, LUIdx, F); local
2908 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2939 SmallPtrSet<const SCEV *, 8> Inserted; local
2952 if (!Inserted.insert(U)) continue;
4442 DenseMap<BasicBlock *, Value *> Inserted; local
4482 Inserted
[all...]

Completed in 5073 milliseconds