Home
last modified time | relevance | path

Searched refs:LSI (Results 1 – 25 of 41) sorted by relevance

12

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaLambda.cpp88 const clang::sema::LambdaScopeInfo *LSI = in getStackIndexOfNearestEnclosingCaptureReadyLambda() local
117 if (LSI->ImpCaptureStyle == sema::LambdaScopeInfo::ImpCap_None) { in getStackIndexOfNearestEnclosingCaptureReadyLambda()
118 if (IsCapturingVariable && !LSI->isCaptured(VarToCapture)) in getStackIndexOfNearestEnclosingCaptureReadyLambda()
120 if (IsCapturingThis && !LSI->isCXXThisCaptured()) in getStackIndexOfNearestEnclosingCaptureReadyLambda()
230 getGenericLambdaTemplateParameterList(LambdaScopeInfo *LSI, Sema &SemaRef) { in getGenericLambdaTemplateParameterList() argument
231 if (!LSI->GLTemplateParameterList && !LSI->TemplateParams.empty()) { in getGenericLambdaTemplateParameterList()
232 LSI->GLTemplateParameterList = TemplateParameterList::Create( in getGenericLambdaTemplateParameterList()
235 /*L angle loc*/ LSI->ExplicitTemplateParamsRange.getBegin(), in getGenericLambdaTemplateParameterList()
236 LSI->TemplateParams, in getGenericLambdaTemplateParameterList()
237 /*R angle loc*/LSI->ExplicitTemplateParamsRange.getEnd(), in getGenericLambdaTemplateParameterList()
[all …]
H A DSema.cpp2129 LambdaScopeInfo *const LSI = new LambdaScopeInfo(getDiagnostics()); in PushLambdaScope() local
2130 FunctionScopes.push_back(LSI); in PushLambdaScope()
2131 return LSI; in PushLambdaScope()
2135 if (LambdaScopeInfo *const LSI = getCurLambda()) { in RecordParsingTemplateParameterDepth() local
2136 LSI->AutoTemplateParameterDepth = Depth; in RecordParsingTemplateParameterDepth()
2326 if (auto *LSI = dyn_cast<sema::LambdaScopeInfo>(Scope)) { in getEnclosingLambda() local
2327 if (LSI->Lambda && !LSI->Lambda->Encloses(CurContext)) { in getEnclosingLambda()
2334 return LSI; in getEnclosingLambda()
2366 if (LambdaScopeInfo *LSI = getCurLambda()) { in getCurGenericLambda() local
2367 return (LSI->TemplateParams.size() || in getCurGenericLambda()
[all …]
H A DSemaTemplateVariadic.cpp303 if (auto *LSI = getEnclosingLambda()) { in DiagnoseUnexpandedParameterPacks() local
312 if (llvm::any_of(LSI->LocalPacks, DeclaresThisPack)) in DiagnoseUnexpandedParameterPacks()
339 if (Func == LSI) in DiagnoseUnexpandedParameterPacks()
344 LSI->ContainsUnexpandedParameterPack = true; in DiagnoseUnexpandedParameterPacks()
H A DSemaExpr.cpp3536 else if (const LambdaScopeInfo *LSI = getCurLambda()) in BuildPredefinedExpr() local
3537 currentDecl = LSI->CallOperator; in BuildPredefinedExpr()
4620 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CreateUnaryExprOrTypeTraitExpr() local
4621 DC = LSI->CallOperator; in CreateUnaryExprOrTypeTraitExpr()
5848 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CreateBuiltinArraySubscriptExpr() local
5849 DC = LSI->CallOperator; in CreateBuiltinArraySubscriptExpr()
18839 static bool captureInLambda(LambdaScopeInfo *LSI, ValueDecl *Var, in captureInLambda() argument
18851 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); in captureInLambda()
18932 if (!LSI->Mutable && !CaptureType->isReferenceType()) in captureInLambda()
18938 LSI->addCapture(Var, /*isBlock=*/false, ByRef, RefersToCapturedVariable, in captureInLambda()
[all …]
H A DSemaDecl.cpp8109 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, in getCaptureLocation() argument
8111 for (const Capture &Capture : LSI->Captures) { in getCaptureLocation()
8222 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); in CheckShadow() local
8224 CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl)); in CheckShadow()
8282 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { in DiagnoseShadowingLambdaDecls() argument
8283 for (const auto &Shadow : LSI->ShadowingDecls) { in DiagnoseShadowingLambdaDecls()
8286 SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl); in DiagnoseShadowingLambdaDecls()
14798 if (auto *LSI = getEnclosingLambda()) in CheckParameter() local
14799 LSI->LocalPacks.push_back(New); in CheckParameter()
15057 LambdaScopeInfo *LSI = S.PushLambdaScope(); in RebuildLambdaScopeInfo() local
[all …]
H A DSemaExprCXX.cpp1251 static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI) { in buildLambdaThisCaptureFixit() argument
1252 SourceLocation DiagLoc = LSI->IntroducerRange.getEnd(); in buildLambdaThisCaptureFixit()
1253 assert(!LSI->isCXXThisCaptured()); in buildLambdaThisCaptureFixit()
1255 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval && in buildLambdaThisCaptureFixit()
1260 DiagLoc, LSI->NumExplicitCaptures > 0 ? ", this" : "this"); in buildLambdaThisCaptureFixit()
1308 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI); in CheckCXXThisCapture() local
1309 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) { in CheckCXXThisCapture()
1315 buildLambdaThisCaptureFixit(*this, LSI); in CheckCXXThisCapture()
1338 buildLambdaThisCaptureFixit(*this, LSI); in CheckCXXThisCapture()
H A DSemaTemplate.cpp70 if (auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) { in getTemplateDepth() local
71 if (!LSI->TemplateParams.empty()) { in getTemplateDepth()
72 ParamsAtDepth(LSI->AutoTemplateParameterDepth); in getTemplateDepth()
75 if (LSI->GLTemplateParameterList) { in getTemplateDepth()
76 ParamsAtDepth(LSI->GLTemplateParameterList->getDepth()); in getTemplateDepth()
1056 if (auto *LSI = getEnclosingLambda()) in ActOnTypeParameter() local
1057 LSI->LocalPacks.push_back(Param); in ActOnTypeParameter()
1569 if (auto *LSI = getEnclosingLambda()) in ActOnNonTypeTemplateParameter() local
1570 LSI->LocalPacks.push_back(Param); in ActOnNonTypeTemplateParameter()
1637 if (auto *LSI = getEnclosingLambda()) in ActOnTemplateTemplateParameter() local
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dtic80-opc.c366 #define LSI (SUBF + 1) macro
371 #define LUI (LSI + 1)
618 {"add", OP_LI(0x3B1), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
624 {"addu", OP_LI(0x3B3), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
717 {"cmp", OP_LI(0x3A1), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
723 {"dcachec", OP_LI(0x371), F(1) | (MASK_LI & ~M_LI(1)) | S(1) | D(1), 0, {LSI, REG_BASE_M_LI} },
729 …{"dcachef", OP_LI(0x371) | F(1), F(1) | (MASK_LI & ~M_LI(1)) | S(1) | D(1), 0, {LSI, REG_BASE_…
806 …{"fmpy.iii", OP_LI(0x3E5) | PD(2) | P2(2) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
823 …{"frndm.id", OP_LI(0x3E9) | PD(1) | P2(3) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
825 …{"frndm.is", OP_LI(0x3E9) | PD(0) | P2(3) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
[all …]
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dtic80-opc.c366 #define LSI (SUBF + 1) macro
371 #define LUI (LSI + 1)
618 {"add", OP_LI(0x3B1), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
624 {"addu", OP_LI(0x3B3), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
717 {"cmp", OP_LI(0x3A1), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
723 {"dcachec", OP_LI(0x371), F(1) | (MASK_LI & ~M_LI(1)) | S(1) | D(1), 0, {LSI, REG_BASE_M_LI} },
729 …{"dcachef", OP_LI(0x371) | F(1), F(1) | (MASK_LI & ~M_LI(1)) | S(1) | D(1), 0, {LSI, REG_BASE_…
806 …{"fmpy.iii", OP_LI(0x3E5) | PD(2) | P2(2) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
823 …{"frndm.id", OP_LI(0x3E9) | PD(1) | P2(3) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
825 …{"frndm.is", OP_LI(0x3E9) | PD(0) | P2(3) | P1(2), MASK_LI | PD(3) | P2(3) | P1(3), 0, {LSI, RE…
[all …]
/openbsd-src/sys/arch/amd64/conf/
H A DRAMDISK82 #mpi* at pci? # LSI Logic Message Passing Interface
83 #mfi* at pci? # LSI MegaRAID SAS controllers
H A DRAMDISK_CD169 mpi* at pci? # LSI Logic Message Passing Interface
170 mpii* at pci? # LSI Message Passing Interface II
173 mfi* at pci? # LSI MegaRAID SAS controllers
174 mfii* at pci? # LSI MegaRAID SAS Fusion controllers
255 et* at pci? # Agere/LSI ET1310
326 etphy* at mii? # Agere/LSI ET1011 TruePHY
H A DGENERIC443 mpi* at pci? # LSI Logic Message Passing Interface
444 mpii* at pci? # LSI Message Passing Interface II
449 mfi* at pci? # LSI MegaRAID SAS controllers
450 mfii* at pci? # LSI MegaRAID SAS Fusion controllers
555 et* at pci? # Agere/LSI ET1310
632 etphy* at mii? # Agere/LSI ET1011 TruePHY
/openbsd-src/sys/arch/i386/conf/
H A DRAMDISK_CD142 mpi* at pci? # LSI Logic Fusion-MPT Message Passing Interface
143 mpii* at pci? # LSI Fusion-MPT Message Passing Interface II
146 mfi* at pci? # LSI MegaRAID SAS controllers
147 mfii* at pci? # LSI MegaRAID SAS Fusion controllers
261 et* at pci? # Agere/LSI ET1310
323 etphy* at mii? # Agere/LSI ET1011 TruePHY
H A DRAMDISK108 mpi* at pci? # LSI Logic Fusion-MPT Message Passing Interface
110 #mfi* at pci? # LSI MegaRAID SAS controllers
H A DGENERIC445 mpi* at pci? # LSI Logic Fusion MPT Message Passing Interface
446 mpii* at pci? # LSI Fusion MPT Message Passing Interface II
451 mfi* at pci? # LSI MegaRAID SAS controllers
452 mfii* at pci? # LSI MegaRAID SAS Fusion controllers
593 et* at pci? # Agere/LSI ET1310
664 etphy* at mii? # Agere/LSI ET1011 TruePHY
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMustExecute.cpp411 SimpleLoopSafetyInfo LSI; in isMustExecuteIn() local
412 LSI.computeLoopSafetyInfo(L); in isMustExecuteIn()
413 return LSI.isGuaranteedToExecute(I, DT, L) || in isMustExecuteIn()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp949 SimpleLoopSafetyInfo LSI; in isSafeToUnrollAndJam() local
950 LSI.computeLoopSafetyInfo(L); in isSafeToUnrollAndJam()
951 if (LSI.anyBlockMayThrow()) { in isSafeToUnrollAndJam()
/openbsd-src/sys/arch/arm64/conf/
H A DGENERIC414 mpi* at pci? # LSI Logic Fusion MPT Message Passing Interface
415 mpii* at pci? # LSI Fusion MPT Message Passing Interface II
416 mfi* at pci? # LSI MegaRAID SAS controllers
417 mfii* at pci? # LSI MegaRAID SAS Fusion controller
/openbsd-src/sys/dev/pci/
H A Dfiles.pci92 # LSI MegaRAID SAS RAID controllers
96 # LSI MegaRAID SAS Fusion RAID controllers
220 # LSI Logic Fusion-MPT Message Passing Interface
224 # LSI Logic Fusion-MPT Message Passing Interface 2.0
/openbsd-src/sys/arch/macppc/conf/
H A DRAMDISK58 mpi* at pci? # LSI Logic MPT-Fusion Message Passing Interface
/openbsd-src/usr.bin/file/magdir/
H A Delf128 >>18 leshort 79 LSI Logic 16-bit DSP,
/openbsd-src/sys/arch/hppa/conf/
H A DRAMDISK141 mpi* at pci? # LSI Logic Fusion MPT Message Passing Interface
H A DGENERIC244 mpi* at pci? # LSI Logic Fusion MPT Message Passing Interface
/openbsd-src/sys/arch/sparc64/conf/
H A DGENERIC123 mpi* at pci? # LSI Logic Fusion MPT Message Passing Interface
124 mpii* at pci? # LSI Message Passing Interface II
/openbsd-src/sys/dev/usb/
H A Dfiles.usb248 # Kawasaki LSI KL5KUSB101B

12