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

  /external/llvm/lib/Transforms/Utils/
CloneModule.cpp 101 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
102 CloneFunctionInto(F, I, VMap, /*ModuleLevelChanges=*/true, Returns);
CloneFunction.cpp 77 SmallVectorImpl<ReturnInst*> &Returns,
119 Returns.push_back(RI);
169 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
170 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
184 SmallVectorImpl<ReturnInst*> &Returns;
192 SmallVectorImpl<ReturnInst*> &returns,
198 Returns(returns), NameSuffix(nameSuffix), CodeInfo(codeInfo), TD(td) {
313 Returns.push_back(RI)
    [all...]
LowerInvoke.cpp 406 SmallVector<ReturnInst*,16> Returns;
414 Returns.push_back(RI);
583 // Finally, for any returns from this function, if this function contains an
586 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
587 ReturnInst *R = Returns[i];
InlineFunction.cpp 371 /// block. Returns true if the call was forwarded.
421 /// Returns true to indicate that the next block should be skipped.
787 // block of the caller. This returns false if it is not possible to inline this
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 74 llvm::SmallVector<ReturnStmt*, 4> Returns;
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 303 SmallVector<ReturnInst*,16> Returns;
307 // Look through the terminators of the basic blocks to find invokes, returns
313 Returns.push_back(RI);
434 // branch to a dispatch block for non-zero returns. If we return normally,
577 // Finally, for any returns from this function, if this function contains an
579 for (unsigned i = 0, e = Returns.size(); i != e; ++i)
580 CallInst::Create(UnregisterFn, FunctionContext, "", Returns[i]);
  /external/clang/lib/Sema/
SemaDecl.cpp 62 /// determine whether the name refers to a type. If so, returns an
64 /// type. Otherwise, returns NULL.
236 /// so, this returns the TST for the tag corresponding to it (TST_enum,
    [all...]

Completed in 2611 milliseconds