/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaLambda.cpp | 92 const clang::sema::LambdaScopeInfo *LSI = in getStackIndexOfNearestEnclosingCaptureReadyLambda() local 121 if (LSI->ImpCaptureStyle == sema::LambdaScopeInfo::ImpCap_None) { in getStackIndexOfNearestEnclosingCaptureReadyLambda() 122 if (IsCapturingVariable && !LSI->isCaptured(VarToCapture)) in getStackIndexOfNearestEnclosingCaptureReadyLambda() 124 if (IsCapturingThis && !LSI->isCXXThisCaptured()) in getStackIndexOfNearestEnclosingCaptureReadyLambda() 234 getGenericLambdaTemplateParameterList(LambdaScopeInfo *LSI, Sema &SemaRef) { in getGenericLambdaTemplateParameterList() argument 235 if (!LSI->GLTemplateParameterList && !LSI->TemplateParams.empty()) { in getGenericLambdaTemplateParameterList() 236 LSI->GLTemplateParameterList = TemplateParameterList::Create( in getGenericLambdaTemplateParameterList() 239 /*L angle loc*/ LSI->ExplicitTemplateParamsRange.getBegin(), in getGenericLambdaTemplateParameterList() 240 LSI->TemplateParams, in getGenericLambdaTemplateParameterList() 241 /*R angle loc*/LSI->ExplicitTemplateParamsRange.getEnd(), in getGenericLambdaTemplateParameterList() [all …]
|
H A D | Sema.cpp | 2183 LambdaScopeInfo *const LSI = new LambdaScopeInfo(getDiagnostics()); in PushLambdaScope() local 2184 FunctionScopes.push_back(LSI); in PushLambdaScope() 2186 return LSI; in PushLambdaScope() 2190 if (LambdaScopeInfo *const LSI = getCurLambda()) { in RecordParsingTemplateParameterDepth() local 2191 LSI->AutoTemplateParameterDepth = Depth; in RecordParsingTemplateParameterDepth() 2374 if (auto *LSI = dyn_cast<sema::LambdaScopeInfo>(Scope)) { in getEnclosingLambda() local 2375 if (LSI->Lambda && !LSI->Lambda->Encloses(CurContext) && in getEnclosingLambda() 2376 LSI->AfterParameterList) { in getEnclosingLambda() 2383 return LSI; in getEnclosingLambda() 2415 if (LambdaScopeInfo *LSI = getCurLambda()) { in getCurGenericLambda() local [all …]
|
H A D | SemaTemplateVariadic.cpp | 315 if (auto *LSI = getEnclosingLambda()) { in DiagnoseUnexpandedParameterPacks() local 324 if (llvm::any_of(LSI->LocalPacks, DeclaresThisPack)) in DiagnoseUnexpandedParameterPacks() 351 if (Func == LSI) in DiagnoseUnexpandedParameterPacks() 356 LSI->ContainsUnexpandedParameterPack = true; in DiagnoseUnexpandedParameterPacks()
|
H A D | SemaExpr.cpp | 4570 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CheckUnaryExprOrTypeTraitOperand() local 4571 DC = LSI->CallOperator; in CheckUnaryExprOrTypeTraitOperand() 5282 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CreateBuiltinArraySubscriptExpr() local 5283 DC = LSI->CallOperator; in CreateBuiltinArraySubscriptExpr() 18481 static bool captureInLambda(LambdaScopeInfo *LSI, ValueDecl *Var, in captureInLambda() argument 18493 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); in captureInLambda() 18570 bool Const = LSI->lambdaCaptureShouldBeConst(); in captureInLambda() 18577 LSI->addCapture(Var, /*isBlock=*/false, ByRef, RefersToCapturedVariable, in captureInLambda() 18609 static void buildLambdaCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI, in buildLambdaCaptureFixit() argument 18611 assert(LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None); in buildLambdaCaptureFixit() [all …]
|
H A D | SemaExprCXX.cpp | 1284 static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI) { in buildLambdaThisCaptureFixit() argument 1285 SourceLocation DiagLoc = LSI->IntroducerRange.getEnd(); in buildLambdaThisCaptureFixit() 1286 assert(!LSI->isCXXThisCaptured()); in buildLambdaThisCaptureFixit() 1288 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval && in buildLambdaThisCaptureFixit() 1293 DiagLoc, LSI->NumExplicitCaptures > 0 ? ", this" : "this"); in buildLambdaThisCaptureFixit() 1341 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI); in CheckCXXThisCapture() local 1342 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) { in CheckCXXThisCapture() 1345 LSI->CallOperator->setInvalidDecl(); in CheckCXXThisCapture() 1349 buildLambdaThisCaptureFixit(*this, LSI); in CheckCXXThisCapture() 1368 LSI->CallOperator->setInvalidDecl(); in CheckCXXThisCapture() [all …]
|
H A D | SemaDecl.cpp | 8119 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, in getCaptureLocation() argument 8121 for (const Capture &Capture : LSI->Captures) { in getCaptureLocation() 8215 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); in CheckShadow() local 8220 CaptureLoc = getCaptureLocation(LSI, VD); in CheckShadow() 8291 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { in DiagnoseShadowingLambdaDecls() argument 8292 for (const auto &Shadow : LSI->ShadowingDecls) { in DiagnoseShadowingLambdaDecls() 8297 SourceLocation CaptureLoc = getCaptureLocation(LSI, VD); in DiagnoseShadowingLambdaDecls() 8309 LSI->isCXXThisCaptured() ? diag::warn_decl_shadow in DiagnoseShadowingLambdaDecls() 14898 if (LambdaScopeInfo *LSI = S.getCurLambda()) in CheckExplicitObjectParameter() local 14899 LSI->ExplicitObjectParameter = P; in CheckExplicitObjectParameter() [all …]
|
H A D | SemaTemplate.cpp | 74 if (auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) { in getTemplateDepth() local 75 if (!LSI->TemplateParams.empty()) { in getTemplateDepth() 76 ParamsAtDepth(LSI->AutoTemplateParameterDepth); in getTemplateDepth() 79 if (LSI->GLTemplateParameterList) { in getTemplateDepth() 80 ParamsAtDepth(LSI->GLTemplateParameterList->getDepth()); in getTemplateDepth() 1013 if (auto *LSI = getEnclosingLambda()) in ActOnTypeParameter() local 1014 LSI->LocalPacks.push_back(Param); in ActOnTypeParameter() 1540 if (auto *LSI = getEnclosingLambda()) in ActOnNonTypeTemplateParameter() local 1541 LSI->LocalPacks.push_back(Param); in ActOnNonTypeTemplateParameter() 1591 if (auto *LSI = getEnclosingLambda()) in ActOnTemplateTemplateParameter() local [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
H A D | r8a774a1-hihope-rzg2m-ex-mipi-2.1.dts | 19 * On RZ/G2M SoC LSI V1.3 CSI40 supports only 4 lane mode. 20 * HiHope RZ/G2M Rev.4.0 board is based on LSI V1.3 so disable csi40 and
|
/freebsd/sys/powerpc/conf/ |
H A D | GENERIC64 | 142 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s 143 device mpt # LSI-Logic MPT-Fusion 144 device mps # LSI-Logic MPT-Fusion 2 145 device mpr # LSI SAS3008 MPT-Fusion SAS-3 146 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D 230 device kue # Kawasaki LSI USB Ethernet
|
H A D | GENERIC64LE | 138 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s 139 device mpt # LSI-Logic MPT-Fusion 140 device mps # LSI-Logic MPT-Fusion 2 141 device mpr # LSI SAS3008 MPT-Fusion SAS-3 142 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D 226 device kue # Kawasaki LSI USB Ethernet
|
H A D | GENERIC | 124 device mpt # LSI-Logic MPT-Fusion 125 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D 193 device kue # Kawasaki LSI USB Ethernet
|
/freebsd/sys/i386/conf/ |
H A D | GENERIC | 129 device mpt # LSI-Logic MPT-Fusion 130 device mps # LSI-Logic MPT-Fusion 2 131 device mpr # LSI-Logic MPT-Fusion 3 150 device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller 157 device mfi # LSI MegaRAID SAS 159 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
|
/freebsd/sys/contrib/device-tree/src/arm/intel/axm/ |
H A D | axm5516-amarillo.dts | 5 * Copyright (C) 2013 LSI
|
H A D | axm55xx.dtsi | 5 * Copyright (C) 2013 LSI
|
H A D | axm5516-cpus.dtsi | 5 * Copyright (C) 2013 LSI
|
/freebsd/sys/amd64/conf/ |
H A D | GENERIC | 145 device mpt # LSI-Logic MPT-Fusion 146 device mps # LSI-Logic MPT-Fusion 2 147 device mpr # LSI-Logic MPT-Fusion 3 168 device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller 175 device mfi # LSI MegaRAID SAS 177 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
|
/freebsd/sys/dev/sym/ |
H A D | README.sym | 2 * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010 7 * This driver also supports the following Symbios/LSI PCI-SCSI chips:
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | i2c-axxia.txt | 1 LSI Axxia I2C
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MustExecute.cpp | 316 SimpleLoopSafetyInfo LSI; in isMustExecuteIn() local 317 LSI.computeLoopSafetyInfo(L); in isMustExecuteIn() 318 return LSI.isGuaranteedToExecute(I, DT, L) || in isMustExecuteIn()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUnrollAndJam.cpp | 948 SimpleLoopSafetyInfo LSI; in isSafeToUnrollAndJam() local 949 LSI.computeLoopSafetyInfo(L); in isSafeToUnrollAndJam() 950 if (LSI.anyBlockMayThrow()) { in isSafeToUnrollAndJam()
|
/freebsd/sys/dev/mps/mpi/ |
H A D | mpi2_history.txt | 2 * Copyright (c) 2000-2015 LSI Corp. 27 * Avago Technologies (LSI) MPT-Fusion Host Adapter FreeBSD 34 Copyright (c) 2000-2015 LSI Corporation.
|
/freebsd/sys/arm/conf/ |
H A D | TEGRA124 | 100 #device kue # Kawasaki LSI USB Ethernet
|
/freebsd/sys/conf/ |
H A D | NOTES | 1569 # mpr: LSI-Logic MPT/Fusion Gen 3 1570 # mps: LSI-Logic MPT/Fusion Gen 2 1571 # mpt: LSI-Logic MPT/Fusion 53c1020 or 53c1030 Ultra4 1598 device mpr # LSI-Logic MPT-Fusion 3 1599 device mps # LSI-Logic MPT-Fusion 2 1600 device mpt # LSI-Logic MPT-Fusion 1674 device mfi # LSI MegaRAID SAS 1675 device mfip # LSI MegaRAID SAS passthrough, requires CAM 1677 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s 1855 device truephy # LSI TruePHY [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | elf | 186 >18 leshort 79 LSI Logic 16-bit DSP,
|
/freebsd/usr.sbin/bsdconfig/share/ |
H A D | device.subr | 1265 f_disk "mfid%d" "LSI MegaRAID SAS array" 1313 f_network "kue%d" "Kawasaki LSI USB Ethernet adapter"
|