Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/
H A DSeedCollector.cpp76 SeedContainer::KeyT SeedContainer::getKey(LoadOrStoreT *LSI) const { in getKey()
77 assert((isa<LoadInst>(LSI) || isa<StoreInst>(LSI)) && in getKey()
79 Value *Ptr = Utils::getMemInstructionBase(LSI); in getKey()
80 Instruction::Opcode Op = LSI->getOpcode(); in getKey()
81 Type *Ty = Utils::getExpectedType(LSI); in getKey()
89 SeedContainer::getKey<LoadInst>(LoadInst *LSI) const;
91 SeedContainer::getKey<StoreInst>(StoreInst *LSI) const;
103 template <typename LoadOrStoreT> void SeedContainer::insert(LoadOrStoreT *LSI) { in insert() argument
105 auto &BundleVec = Bundles[getKey(LSI)]; in insert()
110 BundleVec.emplace_back(std::make_unique<MemSeedBundle<LoadOrStoreT>>(LSI)); in insert()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp94 const clang::sema::LambdaScopeInfo *LSI = in getStackIndexOfNearestEnclosingCaptureReadyLambda() local
123 if (LSI->ImpCaptureStyle == sema::LambdaScopeInfo::ImpCap_None) { in getStackIndexOfNearestEnclosingCaptureReadyLambda()
124 if (IsCapturingVariable && !LSI->isCaptured(VarToCapture)) in getStackIndexOfNearestEnclosingCaptureReadyLambda()
126 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 DSema.cpp2349 LambdaScopeInfo *const LSI = new LambdaScopeInfo(getDiagnostics()); in PushLambdaScope() local
2350 FunctionScopes.push_back(LSI); in PushLambdaScope()
2352 return LSI; in PushLambdaScope()
2356 if (LambdaScopeInfo *const LSI = getCurLambda()) { in RecordParsingTemplateParameterDepth() local
2357 LSI->AutoTemplateParameterDepth = Depth; in RecordParsingTemplateParameterDepth()
2542 auto *LSI = dyn_cast<LambdaScopeInfo>(CSI); in getEnclosingLambdaOrBlock() local
2543 if (LSI && LSI->Lambda && !LSI->Lambda->Encloses(CurContext) && in getEnclosingLambdaOrBlock()
2544 LSI->AfterParameterList) { in getEnclosingLambdaOrBlock()
2583 if (LambdaScopeInfo *LSI = getCurLambda()) { in getCurGenericLambda() local
2584 return (LSI->TemplateParams.size() || in getCurGenericLambda()
[all …]
H A DSemaExpr.cpp4660 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CheckUnaryExprOrTypeTraitOperand() local
4661 DC = LSI->CallOperator; in CheckUnaryExprOrTypeTraitOperand()
5380 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CreateBuiltinArraySubscriptExpr() local
5381 DC = LSI->CallOperator; in CreateBuiltinArraySubscriptExpr()
18927 static bool captureInLambda(LambdaScopeInfo *LSI, ValueDecl *Var, in captureInLambda() argument
18939 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); in captureInLambda()
19016 bool Const = LSI->lambdaCaptureShouldBeConst(); in captureInLambda()
19028 LSI->addCapture(Var, /*isBlock=*/false, ByRef, RefersToCapturedVariable, in captureInLambda()
19060 static void buildLambdaCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI, in buildLambdaCaptureFixit() argument
19062 assert(LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None); in buildLambdaCaptureFixit()
[all …]
H A DSemaExprCXX.cpp1266 static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI) { in buildLambdaThisCaptureFixit() argument
1267 SourceLocation DiagLoc = LSI->IntroducerRange.getEnd(); in buildLambdaThisCaptureFixit()
1268 assert(!LSI->isCXXThisCaptured()); in buildLambdaThisCaptureFixit()
1270 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval && in buildLambdaThisCaptureFixit()
1275 DiagLoc, LSI->NumExplicitCaptures > 0 ? ", this" : "this"); in buildLambdaThisCaptureFixit()
1323 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI); in CheckCXXThisCapture() local
1324 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) { in CheckCXXThisCapture()
1327 LSI->CallOperator->setInvalidDecl(); in CheckCXXThisCapture()
1331 buildLambdaThisCaptureFixit(*this, LSI); in CheckCXXThisCapture()
1350 LSI->CallOperator->setInvalidDecl(); in CheckCXXThisCapture()
[all …]
H A DSemaDecl.cpp8310 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, in getCaptureLocation() argument
8312 for (const Capture &Capture : LSI->Captures) { in getCaptureLocation()
8409 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); in CheckShadow() local
8414 CaptureLoc = getCaptureLocation(LSI, VD); in CheckShadow()
8490 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { in DiagnoseShadowingLambdaDecls() argument
8491 for (const auto &Shadow : LSI->ShadowingDecls) { in DiagnoseShadowingLambdaDecls()
8496 SourceLocation CaptureLoc = getCaptureLocation(LSI, VD); in DiagnoseShadowingLambdaDecls()
8508 LSI->isCXXThisCaptured() ? diag::warn_decl_shadow in DiagnoseShadowingLambdaDecls()
15312 if (LambdaScopeInfo *LSI = S.getCurLambda()) in CheckExplicitObjectParameter() local
15313 LSI->ExplicitObjectParameter = P; in CheckExplicitObjectParameter()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DUtils.h57 static Value *getMemInstructionBase(const LoadOrStoreT *LSI) { in getMemInstructionBase() argument
61 return LSI->Ctx.getOrCreateValue( in getMemInstructionBase()
62 getUnderlyingObject(LSI->getPointerOperand()->Val)); in getMemInstructionBase()
/freebsd/sys/contrib/device-tree/src/arm64/renesas/
H A Dr8a774a1-hihope-rzg2m-ex-mipi-2.1.dts19 * 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 DGENERIC64LE140 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
141 device mpt # LSI-Logic MPT-Fusion
142 device mps # LSI-Logic MPT-Fusion 2
143 device mpr # LSI SAS3008 MPT-Fusion SAS-3
144 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
234 device kue # Kawasaki LSI USB Ethernet
H A DGENERIC64143 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
144 device mpt # LSI-Logic MPT-Fusion
145 device mps # LSI-Logic MPT-Fusion 2
146 device mpr # LSI SAS3008 MPT-Fusion SAS-3
147 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
237 device kue # Kawasaki LSI USB Ethernet
H A DGENERIC126 device mpt # LSI-Logic MPT-Fusion
127 device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
195 device kue # Kawasaki LSI USB Ethernet
/freebsd/sys/contrib/device-tree/src/arm/intel/axm/
H A Daxm5516-amarillo.dts5 * Copyright (C) 2013 LSI
H A Daxm5516-cpus.dtsi5 * Copyright (C) 2013 LSI
H A Daxm55xx.dtsi5 * Copyright (C) 2013 LSI
/freebsd/sys/amd64/conf/
H A DGENERIC148 device mpt # LSI-Logic MPT-Fusion
149 device mps # LSI-Logic MPT-Fusion 2
150 device mpr # LSI-Logic MPT-Fusion 3
151 device mpi3mr # LSI-Logic MPT-Fusion 4
172 device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
179 device mfi # LSI MegaRAID SAS
181 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
H A DNOTES72 device mpi3mr # LSI-Logic MPT-Fusion 4
/freebsd/sys/i386/conf/
H A DGENERIC132 device mpt # LSI-Logic MPT-Fusion
133 device mps # LSI-Logic MPT-Fusion 2
134 device mpr # LSI-Logic MPT-Fusion 3
153 device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
160 device mfi # LSI MegaRAID SAS
162 device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-axxia.txt1 LSI Axxia I2C
/freebsd/sys/dev/sym/
H A DREADME.sym2 * Device driver optimized for the Symbios/LSI 53C896/53C895A/53C1010
7 * This driver also supports the following Symbios/LSI PCI-SCSI chips:
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/
H A DSeedCollector.h194 template <typename LoadOrStoreT> KeyT getKey(LoadOrStoreT *LSI) const;
270 template <typename LoadOrStoreT> void insert(LoadOrStoreT *LSI);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp324 SimpleLoopSafetyInfo LSI; in isMustExecuteIn() local
325 LSI.computeLoopSafetyInfo(L); in isMustExecuteIn()
326 return LSI.isGuaranteedToExecute(I, DT, L) || in isMustExecuteIn()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp951 SimpleLoopSafetyInfo LSI; in isSafeToUnrollAndJam() local
952 LSI.computeLoopSafetyInfo(L); in isSafeToUnrollAndJam()
953 if (LSI.anyBlockMayThrow()) { in isSafeToUnrollAndJam()
/freebsd/sys/dev/mps/mpi/
H A Dmpi2_history.txt2 * 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 DTEGRA124100 #device kue # Kawasaki LSI USB Ethernet
/freebsd/sys/arm64/conf/
H A DNOTES105 device mpi3mr # LSI-Logic MPT-Fusion 4

12