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 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;
415 Returns.push_back(RI);
588 // Finally, for any returns from this function, if this function contains an
591 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
592 ReturnInst *R = Returns[i];
InlineFunction.cpp 398 /// block. Returns true if the call was forwarded.
502 /// Returns true to indicate that the next block should be skipped.
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 74 SmallVector<ReturnStmt*, 4> Returns;
  /external/llvm/lib/Linker/
LinkModules.cpp 835 SmallVector<ReturnInst*, 8> Returns; // Ignore returns.
836 CloneFunctionInto(Dst, Src, ValueMap, false, Returns);
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 405 SmallVector<ReturnInst*,16> Returns;
409 // Look through the terminators of the basic blocks to find invokes, returns
415 Returns.push_back(RI);
564 // branch to a dispatch block for non-zero returns. If we return normally,
706 // Finally, for any returns from this function, if this function contains an
708 for (unsigned i = 0, e = Returns.size(); i != e; ++i)
709 CallInst::Create(UnregisterFn, FunctionContext, "", Returns[i]);
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 64 /// determine whether the name refers to a type. If so, returns an
66 /// type. Otherwise, returns NULL.
284 /// so, this returns the TST for the tag corresponding to it (TST_enum,
    [all...]

Completed in 156 milliseconds