Home
last modified time | relevance | path

Searched refs:MCtx (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp459 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 DSemaDecl.cpp4380 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 DSemaExpr.cpp15277 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 DCGVTables.cpp501 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 DASTContext.cpp11155 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()