Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaLambda.cpp84 const clang::sema::LambdaScopeInfo *LSI = in getStackIndexOfNearestEnclosingCaptureReadyLambda() local
113 if (LSI->ImpCaptureStyle == sema::LambdaScopeInfo::ImpCap_None) { in getStackIndexOfNearestEnclosingCaptureReadyLambda()
114 if (IsCapturingVariable && !LSI->isCaptured(VarToCapture)) in getStackIndexOfNearestEnclosingCaptureReadyLambda()
116 if (IsCapturingThis && !LSI->isCXXThisCaptured()) in getStackIndexOfNearestEnclosingCaptureReadyLambda()
225 getGenericLambdaTemplateParameterList(LambdaScopeInfo *LSI, Sema &SemaRef) { in getGenericLambdaTemplateParameterList() argument
226 if (LSI->GLTemplateParameterList) in getGenericLambdaTemplateParameterList()
227 return LSI->GLTemplateParameterList; in getGenericLambdaTemplateParameterList()
229 if (!LSI->AutoTemplateParams.empty()) { in getGenericLambdaTemplateParameterList()
230 SourceRange IntroRange = LSI->IntroducerRange; in getGenericLambdaTemplateParameterList()
233 LSI->GLTemplateParameterList = TemplateParameterList::Create( in getGenericLambdaTemplateParameterList()
[all …]
DSema.cpp1138 LambdaScopeInfo *const LSI = new LambdaScopeInfo(getDiagnostics()); in PushLambdaScope() local
1139 FunctionScopes.push_back(LSI); in PushLambdaScope()
1140 return LSI; in PushLambdaScope()
1144 if (LambdaScopeInfo *const LSI = getCurLambda()) { in RecordParsingTemplateParameterDepth() local
1145 LSI->AutoTemplateParameterDepth = Depth; in RecordParsingTemplateParameterDepth()
1217 if (LambdaScopeInfo *LSI = getCurLambda()) { in getCurGenericLambda() local
1218 return (LSI->AutoTemplateParams.size() || in getCurGenericLambda()
1219 LSI->GLTemplateParameterList) ? LSI : nullptr; in getCurGenericLambda()
DScopeInfo.cpp108 if (auto *LSI = dyn_cast<LambdaScopeInfo>(this)) in isVLATypeCaptured() local
109 RD = LSI->Lambda; in isVLATypeCaptured()
DSemaTemplateVariadic.cpp228 if (sema::LambdaScopeInfo *LSI = in DiagnoseUnexpandedParameterPacks() local
230 LSI->ContainsUnexpandedParameterPack = true; in DiagnoseUnexpandedParameterPacks()
DSemaExpr.cpp3062 else if (const LambdaScopeInfo *LSI = getCurLambda()) in BuildPredefinedExpr() local
3063 currentDecl = LSI->CallOperator; in BuildPredefinedExpr()
3890 if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) { in captureVariablyModifiedType() local
3891 CapRecord = LSI->Lambda; in captureVariablyModifiedType()
3972 if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI)) in CreateUnaryExprOrTypeTraitExpr() local
3973 DC = LSI->CallOperator; in CreateUnaryExprOrTypeTraitExpr()
13433 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, in addAsFieldToClosureType() argument
13437 CXXRecordDecl *Lambda = LSI->Lambda; in addAsFieldToClosureType()
13450 static bool captureInLambda(LambdaScopeInfo *LSI, in captureInLambda() argument
13467 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); in captureInLambda()
[all …]
DSemaDecl.cpp11188 LambdaScopeInfo *LSI = S.PushLambdaScope(); in RebuildLambdaScopeInfo() local
11189 LSI->CallOperator = CallOperator; in RebuildLambdaScopeInfo()
11190 LSI->Lambda = LambdaClass; in RebuildLambdaScopeInfo()
11191 LSI->ReturnType = CallOperator->getReturnType(); in RebuildLambdaScopeInfo()
11195 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None; in RebuildLambdaScopeInfo()
11197 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval; in RebuildLambdaScopeInfo()
11199 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref; in RebuildLambdaScopeInfo()
11202 LSI->IntroducerRange = DNI.getCXXOperatorNameRange(); in RebuildLambdaScopeInfo()
11203 LSI->Mutable = !CallOperator->isConst(); in RebuildLambdaScopeInfo()
11215 LSI->addCapture(VD, /*IsBlock*/false, ByRef, in RebuildLambdaScopeInfo()
[all …]
DSemaType.cpp1571 sema::LambdaScopeInfo *LSI = S.getCurLambda(); in ConvertDeclSpecToType() local
1572 assert(LSI && "No LambdaScopeInfo on the stack!"); in ConvertDeclSpecToType()
1573 const unsigned TemplateParameterDepth = LSI->AutoTemplateParameterDepth; in ConvertDeclSpecToType()
1574 const unsigned AutoParameterPosition = LSI->AutoTemplateParams.size(); in ConvertDeclSpecToType()
1592 LSI->AutoTemplateParams.push_back(CorrespondingTemplateParam); in ConvertDeclSpecToType()
DSemaExprCXX.cpp1117 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI); in CheckCXXThisCapture() local
1118 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) { in CheckCXXThisCapture()
1169 if (LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI)) { in CheckCXXThisCapture() local
1173 ThisExpr = captureThis(*this, Context, LSI->Lambda, ThisTy, Loc, in CheckCXXThisCapture()
DTreeTransform.h10209 LambdaScopeInfo *LSI = getSema().PushLambdaScope(); in TransformLambdaExpr() local
10211 LSI->GLTemplateParameterList = TPL; in TransformLambdaExpr()
10228 LSI->CallOperator = NewCallOperator; in TransformLambdaExpr()
10238 getSema().buildLambdaScope(LSI, NewCallOperator, in TransformLambdaExpr()
10256 getSema().finishLambdaExplicitCaptures(LSI); in TransformLambdaExpr()
10291 getSema().buildInitCaptureField(LSI, NewVD); in TransformLambdaExpr()
10359 getSema().finishLambdaExplicitCaptures(LSI); in TransformLambdaExpr()
10382 auto LSICopy = *LSI; in TransformLambdaExpr()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DMustExecute.cpp198 LoopSafetyInfo LSI; in isMustExecuteIn() local
199 computeLoopSafetyInfo(&LSI, L); in isMustExecuteIn()
200 return isGuaranteedToExecute(I, DT, L, &LSI) || in isMustExecuteIn()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLoopUnrollAndJam.cpp747 LoopSafetyInfo LSI; in isSafeToUnrollAndJam() local
748 computeLoopSafetyInfo(&LSI, L); in isSafeToUnrollAndJam()
749 if (LSI.MayThrow) in isSafeToUnrollAndJam()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopUnswitch.cpp599 SelectInst *LSI = dyn_cast<SelectInst>(LHS); in EqualityPropUnSafe() local
601 if ((LSI && hasUndefInSelect(*LSI)) || (RSI && hasUndefInSelect(*RSI))) in EqualityPropUnSafe()
/external/u-boot/drivers/net/phy/
DKconfig83 bool "LSI TruePHY ET1011C support"
/external/ImageMagick/PerlMagick/t/reference/filter/
DRotate.miff15 …���������������������������������������������������������������������������LSI(.(*.-.2/9@67C1DV;Hb…
/external/clang/include/clang/Sema/
DSema.h5113 void buildLambdaScope(sema::LambdaScopeInfo *LSI,
5146 FieldDecl *buildInitCaptureField(sema::LambdaScopeInfo *LSI, VarDecl *Var);
5150 void finishLambdaExplicitCaptures(sema::LambdaScopeInfo *LSI);
5179 sema::LambdaScopeInfo *LSI);
/external/u-boot/arch/arm/
DKconfig1218 (formerly, System LSI Business Division of Panasonic Corporation)
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
D2013-1_UNLOCODE_CodeListPart1.csv4802 ,"BE","LSI","Lombardsijde","Lombardsijde","VWV","--3-----","RN","0307",,"5109N 00245E",
13591 ,"CN","LSI","Lanshi","Lanshi","43","--3-----","RL","0907",,"2609N 11336E",""
19894 "+","DE","LSI","Glesien","Glesien","SN","--3-----","RL","1301",,"5127N 01214E",
26777 "X","EE","LSI","Leisi j�e lauter","Leisi joe lauter",,"1-------","XX","1301",,"5835N 02240E",""
29583 ,"ES","LSI","Los Silos","Los Silos",,"1-------","RQ","0901",,,
36773 ,"FR","LSI","La Charit�-sur-Loire","La Charite-sur-Loire","58","--3-----","RL","0212",,"4711N 00300…
D2013-1_UNLOCODE_CodeListPart3.csv3389 ,"PT","LSI","Linh�","Linho","11","--3-----","RL","0401",,"3846N 00923W",
4888 ,"RU","LSI","Liski","Liski","VOR","-23-----","RL","0901",,"5058N 03933E",
18279 ,"US","LSI","Lansing","Lansing","IL","--3-----","RQ","9307",,,
D2013-1_UNLOCODE_CodeListPart2.csv4766 ,"GB","LSI","Sumburgh","Sumburgh","ZET","---4----","AI","0212",,"5952N 00117W",
14394 ,"IT","LSI","Salice Salentino","Salice Salentino","LE","--3-----","RL","1207",,"4023N 01757E",