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

  /external/clang/include/clang/Sema/
Initialization.h 110 /// named return value optimization (NRVO).
111 bool NRVO;
165 bool NRVO = false)
169 LocAndNRVO.NRVO = NRVO;
234 QualType Type, bool NRVO) {
235 return InitializedEntity(EK_Result, ReturnLoc, Type, NRVO);
239 QualType Type, bool NRVO) {
240 return InitializedEntity(EK_BlockElement, BlockVarLoc, Type, NRVO);
245 QualType Type, bool NRVO) {
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 388 bool NRVO = flags.isForNormalCleanup() && NRVOFlag;
391 if (NRVO) {
392 // If we exited via NRVO, we skip the destructor call.
393 llvm::BasicBlock *RunDtorBB = CGF.createBasicBlock("nrvo.unused");
394 SkipDtorBB = CGF.createBasicBlock("nrvo.skipdtor");
395 llvm::Value *DidNRVO = CGF.Builder.CreateLoad(NRVOFlag, "nrvo.val");
405 if (NRVO) CGF.EmitBlock(SkipDtorBB);
843 bool NRVO = getLangOpts().ElideConstructors &&
860 // If the variable's a const type, and it's neither an NRVO
863 if (CGM.getCodeGenOpts().MergeAllConstants && !NRVO && !isByRef &
    [all...]
  /external/clang/include/clang/AST/
Decl.h 696 /// (NRVO).
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 59 milliseconds