HomeSort by relevance Sort by last modified time
    Searched defs:Returns (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Transforms/Utils/
CloneModule.cpp 103 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
104 CloneFunctionInto(F, I, VMap, /*ModuleLevelChanges=*/true, Returns);
CloneFunction.cpp 79 SmallVectorImpl<ReturnInst*> &Returns,
137 Returns.push_back(RI);
188 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
189 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
365 SmallVectorImpl<ReturnInst*> &Returns,
565 // because we can iteratively remove and merge returns above.
570 Returns.push_back(RI);
LowerInvoke.cpp 391 SmallVector<ReturnInst*,16> Returns;
399 Returns.push_back(RI);
562 // Finally, for any returns from this function, if this function contains an
565 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
566 ReturnInst *R = Returns[i];
InlineFunction.cpp 163 /// Returns true to indicate that the next block should be skipped.
481 /// block of the caller. This returns false if it is not possible to inline
564 SmallVector<ReturnInst*, 8> Returns;
604 /*ModuleLevelChanges=*/false, Returns, ".i",
672 for (unsigned ri = 0, re = Returns.size(); ri != re; ++ri) {
673 IRBuilder<> builder(Returns[ri]);
693 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
694 IRBuilder<>(Returns[i]).CreateCall(StackRestore, SavedPtr);
723 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
738 ReturnInst *R = Returns[0]
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 397 SmallVector<ReturnInst*, 16> Returns;
407 Returns.push_back(RI);
514 // Finally, for any returns from this function, if this function contains an
516 for (unsigned I = 0, E = Returns.size(); I != E; ++I)
517 CallInst::Create(UnregisterFn, FuncCtx, "", Returns[I]);
  /external/clang/include/clang/Sema/
ScopeInfo.h 97 SmallVector<ReturnStmt*, 4> Returns;
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 88 /// determine whether the name refers to a type. If so, returns an
90 /// type. Otherwise, returns NULL.
313 /// so, this returns the TST for the tag corresponding to it (TST_enum,
    [all...]

Completed in 861 milliseconds