Home
last modified time | relevance | path

Searched refs:SL (Results 1 – 25 of 75) sorted by relevance

123

/minix3/external/bsd/llvm/dist/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp684 const StructLayout *SL = TD->getStructLayout(ST); in LowerConstantInitializer() local
690 SDValue Offset = DAG.getConstant(SL->getElementOffset(I), PtrVT); in LowerConstantInitializer()
1186 SDLoc SL(Op); in ScalarizeVectorLoad() local
1191 SDValue Ptr = DAG.getNode(ISD::ADD, SL, PtrVT, Load->getBasePtr(), in ScalarizeVectorLoad()
1195 = DAG.getExtLoad(Load->getExtensionType(), SL, EltVT, in ScalarizeVectorLoad()
1205 DAG.getNode(ISD::BUILD_VECTOR, SL, LoadVT, Loads), in ScalarizeVectorLoad()
1206 DAG.getNode(ISD::TokenFactor, SL, MVT::Other, Chains) in ScalarizeVectorLoad()
1209 return DAG.getMergeValues(Ops, SL); in ScalarizeVectorLoad()
1225 SDLoc SL(Op); in SplitVectorLoad() local
1234 std::tie(Lo, Hi) = DAG.SplitVector(Op, SL, LoVT, HiVT); in SplitVectorLoad()
[all …]
H A DSIISelLowering.cpp377 SDLoc SL, SDValue Chain, in LowerParameter() argument
389 SDValue BasePtr = DAG.getCopyFromReg(Chain, SL, in LowerParameter()
391 SDValue Ptr = DAG.getNode(ISD::ADD, SL, MVT::i64, BasePtr, in LowerParameter()
397 VT, SL, Chain, Ptr, PtrOffset, PtrInfo, MemVT, in LowerParameter()
1039 SDLoc SL(Op); in LowerFastFDIV() local
1058 return DAG.getNode(AMDGPUISD::RSQ, SL, VT, RHS.getOperand(0)); in LowerFastFDIV()
1061 return DAG.getNode(AMDGPUISD::RCP, SL, VT, RHS); in LowerFastFDIV()
1068 SDValue Recip = DAG.getNode(AMDGPUISD::RCP, SL, VT, RHS); in LowerFastFDIV()
1069 return DAG.getNode(ISD::FMUL, SL, VT, LHS, Recip); in LowerFastFDIV()
1085 SDLoc SL(Op); in LowerFDIV32() local
[all …]
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndexInclusionStack.cpp51 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid); in clang_getInclusions() local
53 if (!SL.isFile() || Invalid) in clang_getInclusions()
56 const SrcMgr::FileInfo &FI = SL.getFile(); in clang_getInclusions()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp152 SourceLocation SL; in checkEndAnalysis() local
156 SL = DL.asLocation(); in checkEndAnalysis()
157 if (SR.isInvalid() || !SL.isValid()) in checkEndAnalysis()
165 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL)) in checkEndAnalysis()
/minix3/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.c524 current->attr.rr_entry.SL.h.version[0] = 1; in cd9660_createSL()
525 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE; in cd9660_createSL()
530 memcpy(current->attr.rr_entry.SL.component + path_count, in cd9660_createSL()
566 current->attr.rr_entry.SL.flags[0] |= SL_FLAGS_CONTINUE; in cd9660_createSL()
578 current->attr.rr_entry.SL.component + in cd9660_createSL()
584 current->attr.rr_entry.SL.h.length[0] = path_count + 5; in cd9660_createSL()
588 current->attr.rr_entry.SL.h.version[0] = 1; in cd9660_createSL()
589 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE; in cd9660_createSL()
595 current->attr.rr_entry.SL.component[ in cd9660_createSL()
600 current->attr.rr_entry.SL.component[1] in cd9660_createSL()
[all …]
H A Diso9660_rrip.h180 ISO_RRIP_SL SL; member
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DMicrosoftMangle.cpp97 bool shouldMangleStringLiteral(const StringLiteral *SL) override;
137 void mangleStringLiteral(const StringLiteral *SL, raw_ostream &Out) override;
340 MicrosoftMangleContextImpl::shouldMangleStringLiteral(const StringLiteral *SL) { in shouldMangleStringLiteral() argument
2417 void MicrosoftMangleContextImpl::mangleStringLiteral(const StringLiteral *SL, in mangleStringLiteral() argument
2442 if (SL->isWide()) in mangleStringLiteral()
2452 Mangler.mangleNumber(SL->getByteLength() + SL->getCharByteWidth()); in mangleStringLiteral()
2476 auto GetLittleEndianByte = [&Mangler, &SL](unsigned Index) { in mangleStringLiteral()
2477 unsigned CharByteWidth = SL->getCharByteWidth(); in mangleStringLiteral()
2478 uint32_t CodeUnit = SL->getCodeUnit(Index / CharByteWidth); in mangleStringLiteral()
2483 auto GetBigEndianByte = [&Mangler, &SL](unsigned Index) { in mangleStringLiteral()
[all …]
H A DExpr.cpp442 StringLiteral *SL) in PredefinedExpr() argument
447 Loc(L), Type(IT), FnName(SL) {} in PredefinedExpr()
844 StringLiteral *SL = new (Mem) StringLiteral(Ty); in Create() local
847 SL->setString(C,Str,Kind,Pascal); in Create()
849 SL->TokLocs[0] = Loc[0]; in Create()
850 SL->NumConcatenated = NumStrs; in Create()
853 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1)); in Create()
854 return SL; in Create()
862 StringLiteral *SL = new (Mem) StringLiteral(QualType()); in CreateEmpty() local
863 SL->CharByteWidth = 0; in CreateEmpty()
[all …]
/minix3/tests/lib/libc/regex/data/
H A Dregress.in5 (ALAK)|(ALT[AB])|(CC[123]1)|(CM[123]1)|(GAMC)|(LC[23][EO ])|(SEM[1234])|(SL[ES][12])|(SLWW)|(SLF )|…
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DMangle.h94 virtual bool shouldMangleStringLiteral(const StringLiteral *SL) = 0;
114 virtual void mangleStringLiteral(const StringLiteral *SL, raw_ostream &) = 0;
H A DCommentLexer.h83 void setLocation(SourceLocation SL) { Loc = SL; } in setLocation() argument
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp243 const ObjCStringLiteral *SL = cast<ObjCStringLiteral>(E); in getConstantVal() local
244 return makeLoc(getRegionManager().getObjCStringRegion(SL)); in getConstantVal()
248 const StringLiteral *SL = cast<StringLiteral>(E); in getConstantVal() local
249 return makeLoc(getRegionManager().getStringRegion(SL)); in getConstantVal()
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dxcore-stringtype.c32 signed int SI, long L, unsigned long UL, signed long SL, in builtinType() argument
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DDataLayout.cpp526 StructLayout *&SL = (*STM)[Ty]; in getStructLayout() local
527 if (SL) return SL; in getStructLayout()
537 SL = L; in getStructLayout()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp592 SourceLocation SL = SM.getExpansionLoc(D->getLocation()); in getModeForDecl() local
593 if (!Opts->AnalyzeAll && !SM.isInMainFile(SL)) { in getModeForDecl()
594 if (SL.isInvalid() || SM.isInSystemHeader(SL)) in getModeForDecl()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h464 const StructLayout *SL = DL.getStructLayout(STy); in accumulateConstantOffset() local
466 SL->getElementOffset(ElementIdx)); in accumulateConstantOffset()
/minix3/external/public-domain/tz/dist/
H A Dbackzone125 Rule SL 1935 1942 - Jun 1 0:00 0:40 SLST
126 Rule SL 1935 1942 - Oct 1 0:00 0 WAT
127 Rule SL 1957 1962 - Jun 1 0:00 1:00 SLST
128 Rule SL 1957 1962 - Sep 1 0:00 0 GMT
131 -1:00 SL %s 1957
132 0:00 SL %s
/minix3/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp326 const StructLayout *SL = TD.getStructLayout(CS->getType()); in ReadDataFromGlobal() local
327 unsigned Index = SL->getElementContainingOffset(ByteOffset); in ReadDataFromGlobal()
328 uint64_t CurEltOffset = SL->getElementOffset(Index); in ReadDataFromGlobal()
348 uint64_t NextEltOffset = SL->getElementOffset(Index); in ReadDataFromGlobal()
853 const StructLayout &SL = *TD->getStructLayout(STy); in SymbolicallyEvaluateGEP() local
854 if (Offset.uge(SL.getSizeInBytes())) in SymbolicallyEvaluateGEP()
860 unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue()); in SymbolicallyEvaluateGEP()
863 Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx)); in SymbolicallyEvaluateGEP()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp714 const StructLayout *SL = DL.getStructLayout(STy); in visitGetElementPtrInst() local
716 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx)); in visitGetElementPtrInst()
1655 const StructLayout *SL = DL.getStructLayout(STy); in getNaturalGEPRecursively() local
1657 if (StructOffset >= SL->getSizeInBytes()) in getNaturalGEPRecursively()
1659 unsigned Index = SL->getElementContainingOffset(StructOffset); in getNaturalGEPRecursively()
1660 Offset -= APInt(Offset.getBitWidth(), SL->getElementOffset(Index)); in getNaturalGEPRecursively()
3340 const StructLayout *SL = DL.getStructLayout(STy); in stripAggregateTypeWrapping() local
3341 unsigned Index = SL->getElementContainingOffset(0); in stripAggregateTypeWrapping()
3415 const StructLayout *SL = DL.getStructLayout(STy); in getTypePartition() local
3416 if (Offset >= SL->getSizeInBytes()) in getTypePartition()
[all …]
/minix3/tests/bin/ps/
H A Dkeywords97 sl SL
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp741 const llvm::StructLayout *SL = getDataLayout().getStructLayout(ST); in ComputeRecordLayout() local
752 assert(AST_RL.getFieldOffset(i) == SL->getElementOffsetInBits(FieldNo) && in ComputeRecordLayout()
783 assert(Info.StorageSize <= SL->getSizeInBits() && in ComputeRecordLayout()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DAnalysis.cpp90 const StructLayout *SL = TLI.getDataLayout()->getStructLayout(STy); in ComputeValueVTs() local
96 StartingOffset + SL->getElementOffset(EI - EB)); in ComputeValueVTs()
/minix3/share/misc/
H A Dcountry217 Sierra Leone SL SLE 694 SL
/minix3/external/bsd/llvm/dist/clang/lib/Lex/
H A DPTHLexer.cpp520 std::unique_ptr<PTHStringIdLookup> SL( in Create() local
556 std::move(PerIDCache), std::move(SL), NumIds, in Create()
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParser.cpp1235 const auto *SL = cast<StringLiteral>(AsmString.get()); in ParseAsmStringLiteral() local
1236 if (!SL->isAscii()) { in ParseAsmStringLiteral()
1238 << SL->isWide() in ParseAsmStringLiteral()
1239 << SL->getSourceRange(); in ParseAsmStringLiteral()

123