Searched refs:SL (Results 76 - 100 of 102) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp1531 RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL, argument
1541 return EmitAtomicLoad(LV, SL, AO, IsVolatile, Slot);
H A DCGExprConstant.cpp1958 auto *SL = cast<StringLiteral>(E->getSubExpr()->IgnoreParenCasts()); local
1959 return emitConstantObjCStringLiteral(SL, E->getType(), CGM);
H A DTargetInfo.cpp3355 const llvm::StructLayout *SL = TD.getStructLayout(STy);
3356 unsigned Elt = SL->getElementContainingOffset(IROffset);
3357 IROffset -= SL->getElementOffset(Elt);
3442 const llvm::StructLayout *SL = getDataLayout().getStructLayout(STy);
3443 if (IROffset < SL->getSizeInBytes()) {
3444 unsigned FieldIdx = SL->getElementContainingOffset(IROffset);
3445 IROffset -= SL->getElementOffset(FieldIdx);
H A DCGExpr.cpp2890 auto SL = E->getFunctionName(); local
2891 assert(SL != nullptr && "No StringLiteral name in PredefinedExpr");
2899 std::string Name = std::string(SL->getString());
2913 auto C = CGM.GetAddrOfConstantStringFromLiteral(SL, GVName);
H A DCGObjCMac.cpp1095 ConstantAddress GenerateConstantString(const StringLiteral *SL) override;
1096 ConstantAddress GenerateConstantNSString(const StringLiteral *SL);
1946 CGObjCCommonMac::GenerateConstantString(const StringLiteral *SL) { argument
1948 ? CGM.GetAddrOfConstantCFString(SL)
1949 : GenerateConstantNSString(SL));
H A DCodeGenFunction.h3609 RValue EmitAtomicLoad(LValue LV, SourceLocation SL,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2211 void setBody(Stmt *S, SourceLocation SL) { argument
2213 setSwitchLoc(SL);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1207 const char *SourceManager::getCharacterData(SourceLocation SL, argument
1211 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp496 const StructLayout *SL = DL.getStructLayout(STy); local
498 TmpOffset += SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp355 const StructLayout *SL = DL.getStructLayout(STy); local
357 TmpOffset += SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp827 const StructLayout *SL = DL.getStructLayout(STy); local
828 Offset += APInt(IntPtrWidth, SL->getElementOffset(ElementIdx));
H A DValueTracking.cpp1476 const StructLayout *SL = Q.DL.getStructLayout(STy); local
1477 uint64_t Offset = SL->getElementOffset(Idx);
2146 const StructLayout *SL = Q.DL.getStructLayout(STy); local
2147 uint64_t ElementOffset = SL->getElementOffset(ElementIdx);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3378 StringLiteral *SL = nullptr; local
3397 SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide,
3404 SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii,
3409 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL);
3436 StringLiteral *SL; local
3437 std::tie(ResultTy, SL) = GetUniqueStableNameInfo(
3441 PredefinedExpr::UniqueStableNameType, SL,
3448 StringLiteral *SL; local
3449 std::tie(ResultTy, SL) = GetUniqueStableNameInfo(
3453 PredefinedExpr::UniqueStableNameExpr, SL,
[all...]
H A DSemaType.cpp5448 SourceLocation SL) { RemovalLocs.push_back(SL); });
H A DSemaDecl.cpp11631 SourceLocation SL = I->getExprLoc(); local
11632 checkNonTrivialCUnionInInitializer(I, SL.isValid() ? SL : Loc);
H A DSemaDeclCXX.cpp10104 SourceLocation SL) {
10109 S.Diag(SL, DiagID) << QualName << SourceRange(SL);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1352 const char *getCharacterData(SourceLocation SL,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp2429 SDLoc SL(N);
2435 = DAG.getAtomic(ISD::ATOMIC_SWAP, SL, CastVT,
2444 Result = DAG.getNode(GetPromotionOpcode(VT, NFPVT), SL, NFPVT,
H A DSelectionDAG.cpp1161 SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT,
1164 return getNode(ISD::TRUNCATE, SL, VT, Op);
1167 return getNode(TLI->getExtendForContent(BType), SL, VT, Op);
9685 SDLoc SL(Op);
9687 Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT, Op,
9688 getVectorIdxConstant(i, SL)));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp191 const StructLayout *SL = DL.getStructLayout(STy); local
192 if (int64_t(SL->getSizeInBytes()) < Offset)
194 Idx = SL->getElementContainingOffset(Offset);
196 Rem = Offset - SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFastISel.cpp751 const StructLayout *SL = DL.getStructLayout(STy); local
753 TmpOffset += SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp912 const StructLayout *SL = DL.getStructLayout(STy); local
913 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4354 const StructLayout *SL = DL.getStructLayout(STy); local
4357 ConstantOffset += SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp630 const StructLayout *SL = DL.getStructLayout(STy); local
632 TmpOffset += SL->getElementOffset(Idx);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp10034 auto *SL = dyn_cast<StringLiteral>(E->getInit(0)->IgnoreParens());
10037 if (!SL)
10039 return VisitStringLiteral(SL, AllocType);

Completed in 686 milliseconds

12345