Lines Matching defs:MCCtx
2904 auto &MCCtx = MF->getContext();
2906 MCCtx.createTempSymbol("post_getpc", /*AlwaysAddSuffix=*/true);
2910 MCCtx.createTempSymbol("offset_lo", /*AlwaysAddSuffix=*/true);
2912 MCCtx.createTempSymbol("offset_hi", /*AlwaysAddSuffix=*/true);
2987 MCSymbolRefExpr::create(DestLabel, MCCtx),
2988 MCSymbolRefExpr::create(PostGetPCLabel, MCCtx), MCCtx);
2990 auto *Mask = MCConstantExpr::create(0xFFFFFFFFULL, MCCtx);
2991 OffsetLo->setVariableValue(MCBinaryExpr::createAnd(Offset, Mask, MCCtx));
2992 auto *ShAmt = MCConstantExpr::create(32, MCCtx);
2993 OffsetHi->setVariableValue(MCBinaryExpr::createAShr(Offset, ShAmt, MCCtx));