HomeSort by: relevance | last modified time | path
    Searched defs:SL (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_monitor.cc 66 SourceLocation SL = CurrentUBR->Loc.getSourceLocation();
67 *OutFilename = SL.getFilename();
68 *OutLine = SL.getLine();
69 *OutCol = SL.getColumn();
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_monitor.cpp 65 SourceLocation SL = CurrentUBR->Loc.getSourceLocation();
66 *OutFilename = SL.getFilename();
67 *OutLine = SL.getLine();
68 *OutCol = SL.getColumn();
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_monitor.cpp 66 SourceLocation SL = CurrentUBR->Loc.getSourceLocation();
67 *OutFilename = SL.getFilename();
68 *OutLine = SL.getLine();
69 *OutCol = SL.getColumn();
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexInclusionStack.cpp 32 const SrcMgr::SLocEntry &SL =
34 if (!SL.isFile() || Invalid)
37 const SrcMgr::FileInfo &FI = SL.getFile();
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TypeMetadataUtils.cpp 139 const StructLayout *SL = DL.getStructLayout(C->getType());
140 if (Offset >= SL->getSizeInBytes())
143 unsigned Op = SL->getElementContainingOffset(Offset);
145 Offset - SL->getElementOffset(Op), M);
StackLifetime.cpp 349 const StackLifetime &SL;
353 for (const auto &KV : SL.AllocaNumbering) {
354 if (SL.LiveRanges[KV.getSecond()].test(InstrNo))
363 auto ItBB = SL.BlockInstRange.find(BB);
364 if (ItBB == SL.BlockInstRange.end())
371 if (!Instr || !SL.isReachable(Instr))
375 for (const auto &KV : SL.AllocaNumbering) {
376 if (SL.isAliveAfter(KV.getFirst(), Instr))
384 LifetimeAnnotationWriter(const StackLifetime &SL) : SL(SL) {
    [all...]
ModuleSummaryAnalysis.cpp 507 const StructLayout *SL = DL.getStructLayout(C->getType());
510 auto Offset = SL->getElementOffset(EI.index());
511 unsigned Op = SL->getElementContainingOffset(Offset);
  /src/external/gpl3/gcc.old/dist/libgcc/config/sh/
lib1funcs.h 65 #define SL(branch, dest, in_slot, in_slot_arg2) \
70 #define SL(branch, dest, in_slot, in_slot_arg2) \
  /src/external/gpl3/gcc/dist/libgcc/config/sh/
lib1funcs.h 65 #define SL(branch, dest, in_slot, in_slot_arg2) \
70 #define SL(branch, dest, in_slot, in_slot_arg2) \
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 148 SourceLocation SL;
160 SL = DL.asLocation();
161 if (SR.isInvalid() || !SL.isValid())
169 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL))
ExprInspectionChecker.cpp 434 const StringLiteral *SL = *SLPtr;
435 return std::string(SL->getBytes());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Operator.cpp 45 const StructLayout *SL = DL.getStructLayout(STy);
46 Offset = SL->getElementOffset(OpC->getZExtValue());
117 const StructLayout *SL = DL.getStructLayout(STy);
120 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx)),
180 const StructLayout *SL = DL.getStructLayout(STy);
182 CollectConstantOffset(APInt(BitWidth, SL->getElementOffset(ElementIdx)),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalSplit.cpp 72 const StructLayout *SL = DL.getStructLayout(Init->getType());
85 unsigned SplitBegin = SL->getElementOffset(I);
87 ? SL->getSizeInBytes()
88 : SL->getElementOffset(I + 1);
ArgumentPromotion.cpp 268 const StructLayout *SL = DL.getStructLayout(STy);
276 commonAlignment(StructAlign, SL->getElementOffset(i));
398 const StructLayout *SL = DL.getStructLayout(STy);
406 Align Alignment = commonAlignment(StructAlign, SL->getElementOffset(i));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
UnifyLoopExits.cpp 153 auto SL = LI.getLoopFor(S);
156 if (SL == L || L->contains(SL))
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp 105 // (and (shl (lshr x, #sr), #sl), #m)
112 // (and (shl (ashr x, #sr), #sl), #m)
119 // (and (shl x, #sl), #m)
143 // (shl (lshr x, #sr), #sl)
150 // (shl (ashr x, #sr), #sl)
166 uint32_t SL = CSL->getZExtValue();
172 if (!LogicalSR && (SR > SL))
174 APInt A = APInt(BW, ~0ULL).lshr(SR).shl(SL);
180 APInt M = CM->getValue().lshr(SL);
185 uint32_t U = BW - std::max(SL, SR)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 300 const auto *SL = cast<ObjCStringLiteral>(E);
301 return makeLoc(getRegionManager().getObjCStringRegion(SL));
305 const auto *SL = cast<StringLiteral>(E);
306 return makeLoc(getRegionManager().getStringRegion(SL));
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfWriter.h 74 virtual void resetSecLayout(SectionLayout SL) {}
220 virtual void resetSecLayout(SectionLayout SL) override {
221 verifySecLayout(SL);
229 SecLayout = SL;
230 SectionHdrLayout = ExtBinaryHdrLayoutTable[SL];
252 virtual void verifySecLayout(SectionLayout SL) = 0;
342 virtual void verifySecLayout(SectionLayout SL) override {
343 assert((SL == DefaultLayout || SL == CtxSplitLayout) &&
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 63 MSFStreamLayout SL;
64 SL.Blocks = Layout.StreamMap[StreamIndex];
65 SL.Length = Layout.StreamSizes[StreamIndex];
67 Layout.SB->BlockSize, SL, MsfData, Allocator);
74 MSFStreamLayout SL;
75 SL.Blocks = Layout.DirectoryBlocks;
76 SL.Length = Layout.SB->NumDirectoryBytes;
77 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator);
84 MSFStreamLayout SL(getFpmStreamLayout(Layout));
85 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkGeneric.cpp 225 auto &SL = KV.second;
227 {std::make_pair(&SL.ContentBlocks, "content block"),
228 std::make_pair(&SL.ZeroFillBlocks, "zero-fill block")}) {
299 auto &SL = KV.second;
304 for (auto *SIList : {&SL.ContentBlocks, &SL.ZeroFillBlocks})
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 637 SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation();
638 SL = SM.getExpansionLoc(SL);
640 if (!Opts->AnalyzeAll && !Mgr->isInCodeFile(SL)) {
641 if (SL.isInvalid() || SM.isInSystemHeader(SL))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
Analysis.cpp 92 const StructLayout *SL = Offsets ? DL.getStructLayout(STy) : nullptr;
98 uint64_t EltOffset = SL ? SL->getElementOffset(EI - EB) : 0;
141 const StructLayout *SL = Offsets ? DL.getStructLayout(STy) : nullptr;
143 uint64_t EltOffset = SL ? SL->getElementOffset(I) : 0;
  /src/usr.sbin/makefs/cd9660/
iso9660_rrip.h 182 ISO_RRIP_SL SL;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
IRTranslator.h 609 std::unique_ptr<GISelSwitchLowering> SL;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 411 std::unique_ptr<SDAGSwitchLowering> SL;
442 SL(std::make_unique<SDAGSwitchLowering>(this, funcinfo)), FuncInfo(funcinfo),

Completed in 50 milliseconds

1 2 3