Searched refs:MCtx (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 459 MangleNumberingContext *MCtx; in handleLambdaNumbering() local 461 std::tie(MCtx, ManglingContextDecl) = in handleLambdaNumbering() 464 if (!MCtx && getLangOpts().CUDA) { in handleLambdaNumbering() 469 MCtx = getMangleNumberingContext(Class, ManglingContextDecl); in handleLambdaNumbering() 470 assert(MCtx && "Retrieving mangle numbering context failed!"); in handleLambdaNumbering() 473 if (MCtx) { in handleLambdaNumbering() 474 unsigned ManglingNumber = MCtx->getManglingNumber(Method); in handleLambdaNumbering() 477 Class->setDeviceLambdaManglingNumber(MCtx->getDeviceManglingNumber(Method)); in handleLambdaNumbering()
|
| H A D | SemaDecl.cpp | 4380 MangleNumberingContext &MCtx = in handleTagNumbering() local 4383 Tag, MCtx.getManglingNumber( in handleTagNumbering() 4389 MangleNumberingContext *MCtx; in handleTagNumbering() local 4391 std::tie(MCtx, ManglingContextDecl) = in handleTagNumbering() 4393 if (MCtx) { in handleTagNumbering() 4395 Tag, MCtx->getManglingNumber( in handleTagNumbering() 5245 MangleNumberingContext *MCtx; in BuildAnonymousStructOrUnion() local 5247 std::tie(MCtx, ManglingContextDecl) = in BuildAnonymousStructOrUnion() 5249 if (MCtx) { in BuildAnonymousStructOrUnion() 5251 NewVD, MCtx->getManglingNumber( in BuildAnonymousStructOrUnion() [all …]
|
| H A D | SemaExpr.cpp | 15277 MangleNumberingContext *MCtx; in ActOnBlockStart() local 15279 std::tie(MCtx, ManglingContextDecl) = in ActOnBlockStart() 15281 if (MCtx) { in ActOnBlockStart() 15282 unsigned ManglingNumber = MCtx->getManglingNumber(Block); in ActOnBlockStart()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGVTables.cpp | 501 MangleContext &MCtx = CGM.getCXXABI().getMangleContext(); in maybeEmitThunk() local 504 MCtx.mangleCXXDtorThunk(DD, GD.getDtorType(), TI.This, Out); in maybeEmitThunk() 506 MCtx.mangleThunk(MD, TI, Out); in maybeEmitThunk()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ASTContext.cpp | 11155 std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC]; in getManglingNumberContext() local 11156 if (!MCtx) in getManglingNumberContext() 11157 MCtx = createMangleNumberingContext(); in getManglingNumberContext() 11158 return *MCtx; in getManglingNumberContext() 11164 std::unique_ptr<MangleNumberingContext> &MCtx = in getManglingNumberContext() local 11166 if (!MCtx) in getManglingNumberContext() 11167 MCtx = createMangleNumberingContext(); in getManglingNumberContext() 11168 return *MCtx; in getManglingNumberContext()
|