Home
last modified time | relevance | path

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

1234567

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
DLookupResult.cpp37 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const SourceLocation &SL) { in operator <<() argument
38 OS << SL.Name; in operator <<()
39 if (SL.Offset > 0) in operator <<()
40 OS << " + " << SL.Offset; in operator <<()
41 if (SL.Dir.size() || SL.Base.size()) { in operator <<()
43 if (!SL.Dir.empty()) { in operator <<()
44 OS << SL.Dir; in operator <<()
45 if (SL.Dir.contains('\\') and not SL.Dir.contains('/')) in operator <<()
50 if (SL.Base.empty()) in operator <<()
53 OS << SL.Base; in operator <<()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp1400 SDLoc SL(Op); in LowerCONCAT_VECTORS() local
1401 SDValue Lo = DAG.getNode(ISD::BITCAST, SL, MVT::i32, Op.getOperand(0)); in LowerCONCAT_VECTORS()
1402 SDValue Hi = DAG.getNode(ISD::BITCAST, SL, MVT::i32, Op.getOperand(1)); in LowerCONCAT_VECTORS()
1404 SDValue BV = DAG.getBuildVector(MVT::v2i32, SL, { Lo, Hi }); in LowerCONCAT_VECTORS()
1405 return DAG.getNode(ISD::BITCAST, SL, VT, BV); in LowerCONCAT_VECTORS()
1510 SDLoc SL(Op); in split64BitValue() local
1512 SDValue Vec = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Op); in split64BitValue()
1514 const SDValue Zero = DAG.getConstant(0, SL, MVT::i32); in split64BitValue()
1515 const SDValue One = DAG.getConstant(1, SL, MVT::i32); in split64BitValue()
1517 SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Vec, Zero); in split64BitValue()
[all …]
DSIISelLowering.cpp1650 const SDLoc &SL, in lowerKernArgParameterPtr() argument
1666 SDValue BasePtr = DAG.getCopyFromReg(Chain, SL, in lowerKernArgParameterPtr()
1669 return DAG.getObjectPtrOffset(SL, BasePtr, TypeSize::Fixed(Offset)); in lowerKernArgParameterPtr()
1673 const SDLoc &SL) const { in getImplicitArgPtr()
1676 return lowerKernArgParameterPtr(DAG, SL, DAG.getEntryNode(), Offset); in getImplicitArgPtr()
1680 const SDLoc &SL, SDValue Val, in convertArgType() argument
1689 Val = DAG.getNode(ISD::EXTRACT_SUBVECTOR, SL, NarrowedVT, Val, in convertArgType()
1690 DAG.getConstant(0, SL, MVT::i32)); in convertArgType()
1697 Val = DAG.getNode(Opc, SL, MemVT, Val, DAG.getValueType(VT)); in convertArgType()
1701 Val = getFPExtOrFPRound(DAG, Val, SL, VT); in convertArgType()
[all …]
DAMDGPUISelDAGToDAG.cpp83 SDLoc SL(N); in packConstantV2I16() local
87 return DAG.getMachineNode(AMDGPU::S_MOV_B32, SL, N->getValueType(0), in packConstantV2I16()
88 DAG.getTargetConstant(K, SL, MVT::i32)); in packConstantV2I16()
1200 SDLoc SL(N); in SelectFMA_W_CHAIN() local
1214 SDLoc SL(N); in SelectFMUL_W_CHAIN() local
1229 SDLoc SL(N); in SelectDIV_SCALE() local
1249 SDLoc SL(N); in SelectMAD_64_32() local
1253 SDValue Clamp = CurDAG->getTargetConstant(0, SL, MVT::i1); in SelectMAD_64_32()
1879 SDLoc SL(N); in SelectGlobalSAddr() local
1889 AMDGPU::V_MOV_B32_e32, SL, MVT::i32, in SelectGlobalSAddr()
[all …]
DSIISelLowering.h47 SDValue lowerKernArgParameterPtr(SelectionDAG &DAG, const SDLoc &SL,
49 SDValue getImplicitArgPtr(SelectionDAG &DAG, const SDLoc &SL) const;
51 const SDLoc &SL, SDValue Chain,
57 const SDLoc &SL, SDValue Chain,
130 SelectionDAG &DAG, EVT VT, EVT MemVT, const SDLoc &SL, SDValue Val,
165 SDValue splitBinaryBitConstantOp(DAGCombinerInfo &DCI, const SDLoc &SL,
175 SDValue getCanonicalConstantFP(SelectionDAG &DAG, const SDLoc &SL, EVT VT,
179 SDValue performFPMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
181 SDValue performIntMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
DAMDGPUISelLowering.h80 SDValue splitBinaryBitConstantOpImpl(DAGCombinerInfo &DCI, const SDLoc &SL,
90 SDValue performCtlz_CttzCombine(const SDLoc &SL, SDValue Cond, SDValue LHS,
281 const SDLoc &SL,
300 const SDLoc &SL,
304 const SDLoc &SL,
311 EVT VT, const SDLoc &SL,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
DMappedBlockStream.cpp63 MSFStreamLayout SL; in createIndexedStream() local
64 SL.Blocks = Layout.StreamMap[StreamIndex]; in createIndexedStream()
65 SL.Length = Layout.StreamSizes[StreamIndex]; in createIndexedStream()
67 Layout.SB->BlockSize, SL, MsfData, Allocator); in createIndexedStream()
74 MSFStreamLayout SL; in createDirectoryStream() local
75 SL.Blocks = Layout.DirectoryBlocks; in createDirectoryStream()
76 SL.Length = Layout.SB->NumDirectoryBytes; in createDirectoryStream()
77 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator); in createDirectoryStream()
84 MSFStreamLayout SL(getFpmStreamLayout(Layout)); in createFpmStream() local
85 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator); in createFpmStream()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DStackLifetime.cpp349 const StackLifetime &SL; member in StackLifetime::LifetimeAnnotationWriter
353 for (const auto &KV : SL.AllocaNumbering) { in printInstrAlive()
354 if (SL.LiveRanges[KV.getSecond()].test(InstrNo)) in printInstrAlive()
363 auto ItBB = SL.BlockInstRange.find(BB); in emitBasicBlockStartAnnot()
364 if (ItBB == SL.BlockInstRange.end()) in emitBasicBlockStartAnnot()
371 if (!Instr || !SL.isReachable(Instr)) in printInfoComment()
375 for (const auto &KV : SL.AllocaNumbering) { in printInfoComment()
376 if (SL.isAliveAfter(KV.getFirst(), Instr)) in printInfoComment()
384 LifetimeAnnotationWriter(const StackLifetime &SL) : SL(SL) {} in LifetimeAnnotationWriter() argument
398 StackLifetime SL(F, Allocas, Type); in run() local
[all …]
DTypeMetadataUtils.cpp139 const StructLayout *SL = DL.getStructLayout(C->getType()); in getPointerAtOffset() local
140 if (Offset >= SL->getSizeInBytes()) in getPointerAtOffset()
143 unsigned Op = SL->getElementContainingOffset(Offset); in getPointerAtOffset()
145 Offset - SL->getElementOffset(Op), M); in getPointerAtOffset()
DStackSafetyAnalysis.cpp246 const StackLifetime &SL);
333 const StackLifetime &SL) { in analyzeAllUses() argument
344 if (!SL.isReachable(I)) in analyzeAllUses()
351 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses()
369 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses()
390 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses()
453 StackLifetime SL(F, Allocas, StackLifetime::LivenessType::Must); in run() local
454 SL.run(); in run()
458 analyzeAllUses(AI, UI, SL); in run()
466 analyzeAllUses(&A, UI, SL); in run()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DAnalysisManager.h125 static bool isInCodeFile(SourceLocation SL, const SourceManager &SM) { in isInCodeFile() argument
126 if (SM.isInMainFile(SL)) in isInCodeFile()
133 SourceLocation IL = SM.getIncludeLoc(SM.getFileID(SL)); in isInCodeFile()
141 return llvm::StringSwitch<bool>(SM.getFilename(SL).rsplit('.').second) in isInCodeFile()
150 bool isInCodeFile(SourceLocation SL) { in isInCodeFile() argument
152 return isInCodeFile(SL, SM); in isInCodeFile()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
DSampleProfWriter.h74 virtual void resetSecLayout(SectionLayout SL) {} in resetSecLayout() argument
220 virtual void resetSecLayout(SectionLayout SL) override { in resetSecLayout() argument
221 verifySecLayout(SL); in resetSecLayout()
229 SecLayout = SL; in resetSecLayout()
230 SectionHdrLayout = ExtBinaryHdrLayoutTable[SL]; in resetSecLayout()
252 virtual void verifySecLayout(SectionLayout SL) = 0;
342 virtual void verifySecLayout(SectionLayout SL) override { in verifySecLayout() argument
343 assert((SL == DefaultLayout || SL == CtxSplitLayout) && in verifySecLayout()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
Dubsan_monitor.cpp65 SourceLocation SL = CurrentUBR->Loc.getSourceLocation(); in __ubsan_get_current_report_data() local
66 *OutFilename = SL.getFilename(); in __ubsan_get_current_report_data()
67 *OutLine = SL.getLine(); in __ubsan_get_current_report_data()
68 *OutCol = SL.getColumn(); in __ubsan_get_current_report_data()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonGenExtract.cpp166 uint32_t SL = CSL->getZExtValue(); in INITIALIZE_PASS_DEPENDENCY() local
172 if (!LogicalSR && (SR > SL)) in INITIALIZE_PASS_DEPENDENCY()
174 APInt A = APInt(BW, ~0ULL).lshr(SR).shl(SL); in INITIALIZE_PASS_DEPENDENCY()
180 APInt M = CM->getValue().lshr(SL); in INITIALIZE_PASS_DEPENDENCY()
185 uint32_t U = BW - std::max(SL, SR); in INITIALIZE_PASS_DEPENDENCY()
217 if (SL != 0) in INITIALIZE_PASS_DEPENDENCY()
218 NewIn = IRB.CreateShl(NewIn, SL, CSL->getName()); in INITIALIZE_PASS_DEPENDENCY()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DOperator.cpp45 const StructLayout *SL = DL.getStructLayout(STy); in getMaxPreservedAlignment() local
46 Offset = SL->getElementOffset(OpC->getZExtValue()); in getMaxPreservedAlignment()
117 const StructLayout *SL = DL.getStructLayout(STy); in accumulateConstantOffset() local
120 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx)), in accumulateConstantOffset()
180 const StructLayout *SL = DL.getStructLayout(STy); in collectOffset() local
182 CollectConstantOffset(APInt(BitWidth, SL->getElementOffset(ElementIdx)), in collectOffset()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DUnreachableCodeChecker.cpp148 SourceLocation SL; in checkEndAnalysis() local
160 SL = DL.asLocation(); in checkEndAnalysis()
161 if (SR.isInvalid() || !SL.isValid()) in checkEndAnalysis()
169 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL)) in checkEndAnalysis()
/freebsd-12-stable/usr.sbin/makefs/cd9660/
Diso9660_rrip.c525 current->attr.rr_entry.SL.h.version[0] = 1; in cd9660_createSL()
526 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE; in cd9660_createSL()
531 memcpy(current->attr.rr_entry.SL.component + path_count, in cd9660_createSL()
567 current->attr.rr_entry.SL.flags[0] |= SL_FLAGS_CONTINUE; in cd9660_createSL()
579 current->attr.rr_entry.SL.component + in cd9660_createSL()
585 current->attr.rr_entry.SL.h.length[0] = path_count + 5; in cd9660_createSL()
589 current->attr.rr_entry.SL.h.version[0] = 1; in cd9660_createSL()
590 current->attr.rr_entry.SL.flags[0] = SL_FLAGS_NONE; in cd9660_createSL()
596 current->attr.rr_entry.SL.component[ in cd9660_createSL()
601 current->attr.rr_entry.SL.component[1] in cd9660_createSL()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DGlobalSplit.cpp72 const StructLayout *SL = DL.getStructLayout(Init->getType()); in splitGlobal() local
85 unsigned SplitBegin = SL->getElementOffset(I); in splitGlobal()
87 ? SL->getSizeInBytes() in splitGlobal()
88 : SL->getElementOffset(I + 1); in splitGlobal()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DJITLinkGeneric.cpp225 auto &SL = KV.second; in layOutBlocks()
227 {std::make_pair(&SL.ContentBlocks, "content block"), in layOutBlocks()
228 std::make_pair(&SL.ZeroFillBlocks, "zero-fill block")}) { in layOutBlocks()
299 auto &SL = KV.second; in allocateSegments() local
304 for (auto *SIList : {&SL.ContentBlocks, &SL.ZeroFillBlocks}) in allocateSegments()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DUnifyLoopExits.cpp153 auto SL = LI.getLoopFor(S); in unifyLoopExits() local
156 if (SL == L || L->contains(SL)) in unifyLoopExits()
/freebsd-12-stable/sys/gnu/dts/mips/
DSL-R7205.dts6 compatible = "SL-R7205", "ralink,rt3052-soc";
7 model = "Skyline SL-R7205 Wireless 3G Router";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp209 bool processLoopStores(SmallVectorImpl<StoreInst *> &SL, const SCEV *BECount,
639 for (auto &SL : StoreRefsForMemset) in runOnLoopBlock() local
640 MadeChange |= processLoopStores(SL.second, BECount, ForMemset::Yes); in runOnLoopBlock()
642 for (auto &SL : StoreRefsForMemsetPattern) in runOnLoopBlock() local
643 MadeChange |= processLoopStores(SL.second, BECount, ForMemset::No); in runOnLoopBlock()
658 bool LoopIdiomRecognize::processLoopStores(SmallVectorImpl<StoreInst *> &SL, in processLoopStores() argument
667 for (unsigned i = 0, e = SL.size(); i < e; ++i) { in processLoopStores()
668 assert(SL[i]->isSimple() && "Expected only non-volatile stores."); in processLoopStores()
670 Value *FirstStoredVal = SL[i]->getValueOperand(); in processLoopStores()
671 Value *FirstStorePtr = SL[i]->getPointerOperand(); in processLoopStores()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
DAnalysisConsumer.cpp596 SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation(); in getModeForDecl() local
597 SL = SM.getExpansionLoc(SL); in getModeForDecl()
599 if (!Opts->AnalyzeAll && !Mgr->isInCodeFile(SL)) { in getModeForDecl()
600 if (SL.isInvalid() || SM.isInSystemHeader(SL)) in getModeForDecl()
/freebsd-12-stable/share/syscons/fonts/
Dhaik8-8x8.fnt29 MQL;&;SL```#;V]O;_P!\QL;`P/C`````>,S`P/#`?,;&QL9_!@```'C,S,Q^
33 M!@```,#`P,#`^,#`\]O;SL```,#`P//;SL#G/&;#PV8\`,`W#&;#QGP`P,#&
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DAnalysis.cpp92 const StructLayout *SL = Offsets ? DL.getStructLayout(STy) : nullptr; in ComputeValueVTs() local
98 uint64_t EltOffset = SL ? SL->getElementOffset(EI - EB) : 0; in ComputeValueVTs()
141 const StructLayout *SL = Offsets ? DL.getStructLayout(STy) : nullptr; in computeValueLLTs() local
143 uint64_t EltOffset = SL ? SL->getElementOffset(I) : 0; in computeValueLLTs()

1234567