| /freebsd-14.2/sys/contrib/device-tree/Bindings/fsi/ |
| H A D | fsi.txt | 1 FSI bus & engine generic device tree bindings 4 The FSI bus is probe-able, so the OS is able to enumerate FSI slaves, and 19 /* top-level of FSI bus topology, bound to an FSI master driver and 20 * exposes an FSI bus */ 43 FSI masters 66 FSI slaves 91 FSI engines (devices) 96 FSI device, and are passed to those FSI device drivers' ->probe() functions. 110 - an FSI master 111 - connected to an FSI slave [all …]
|
| H A D | ibm,fsi2spi.yaml | 7 title: IBM FSI-attached SPI controllers 13 This binding describes an FSI CFAM engine called the FSI2SPI. Therefore this 14 node will always be a child of an FSI CFAM node; see fsi.txt for details on 15 FSI slave and CFAM nodes. This FSI2SPI engine provides access to a number of 25 - description: FSI slave address
|
| H A D | ibm,p9-occ.txt | 1 Device-tree bindings for FSI-attached POWER9/POWER10 On-Chip Controller (OCC) 4 This is the binding for the P9 or P10 On-Chip Controller accessed over FSI from 5 a service processor. See fsi.txt for details on bindings for FSI slave and CFAM 6 nodes. The OCC is not an FSI slave device itself, rather it is accessed
|
| H A D | fsi-master-gpio.txt | 1 Device-tree bindings for gpio-based FSI master driver 6 - clock-gpios = <gpio-descriptor>; : GPIO for FSI clock 7 - data-gpios = <gpio-descriptor>; : GPIO for FSI data signal 13 functions (eg, external FSI masters)
|
| H A D | fsi-master-aspeed.txt | 1 Device-tree bindings for AST2600 FSI master 4 The AST2600 contains two identical FSI masters. They share a clock and have a 18 - fsi-routing-gpios: GPIO for setting the FSI mux (internal or cabled) 19 - fsi-mux-gpios: GPIO for detecting the desired FSI mux state
|
| H A D | fsi-master-ast-cf.txt | 1 Device-tree bindings for ColdFire offloaded gpio-based FSI master driver 10 - clock-gpios = <gpio-descriptor>; : GPIO for FSI clock 11 - data-gpios = <gpio-descriptor>; : GPIO for FSI data signal 15 functions (eg, external FSI masters)
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/sound/ |
| H A D | renesas,fsi.yaml | 7 title: Renesas FIFO-buffered Serial Interface (FSI) 52 description: FSI is connected by S/PDIF 56 description: FSI supports 16bit stream mode 60 description: FSI uses internal clock when master mode
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 760 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 761 return FSI->Kind == SK_Block || FSI->Kind == SK_Lambda in classof() 762 || FSI->Kind == SK_CapturedRegion; in classof() 787 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 788 return FSI->Kind == SK_Block; in classof() 839 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 840 return FSI->Kind == SK_CapturedRegion; in classof() 945 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument 946 return FSI->Kind == SK_Lambda; in classof()
|
| H A D | Sema.h | 6661 FunctionDecl *FD, const sema::FunctionScopeInfo *FSI); 13843 bool IsVariadic, FormatStringInfo *FSI);
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/i2c/ |
| H A D | i2c-fsi.txt | 1 Device-tree bindings for FSI-attached I2C master and busses 6 - reg = < address size >; : The FSI CFAM address and address
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 396 FunctionScopeInfo *FSI = getCurFunction(); in ActOnAfterCompoundStatementLeadingPragmas() local 397 assert(FSI); in ActOnAfterCompoundStatementLeadingPragmas() 398 FSI->setUsesFPIntrin(); in ActOnAfterCompoundStatementLeadingPragmas() 4253 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnObjCAtTryStmt() local 4254 if (FSI->FirstSEHTryLoc.isValid()) { in ActOnObjCAtTryStmt() 4259 FSI->setHasObjCTry(AtLoc); in ActOnObjCAtTryStmt() 4510 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnCXXTryBlock() local 4591 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4601 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnSEHTryBlock() local 4606 if (FSI->FirstCXXOrObjCTryLoc.isValid()) { in ActOnSEHTryBlock() [all …]
|
| H A D | SemaCoroutine.cpp | 923 auto *FSI = checkCoroutineContext(*this, Loc, "co_await"); in BuildUnresolvedCoawaitExpr() local 924 if (!FSI) in BuildUnresolvedCoawaitExpr() 934 auto *Promise = FSI->CoroutinePromise; in BuildUnresolvedCoawaitExpr() 1070 auto *FSI = checkCoroutineContext(*this, Loc, "co_return", IsImplicit); in BuildCoreturnStmt() local 1071 if (!FSI) in BuildCoreturnStmt() 1081 VarDecl *Promise = FSI->CoroutinePromise; in BuildCoreturnStmt()
|
| H A D | Sema.cpp | 473 for (sema::FunctionScopeInfo *FSI : FunctionScopes) in ~Sema() 474 delete FSI; in ~Sema() 2226 static void markEscapingByrefs(const FunctionScopeInfo &FSI, Sema &S) { in markEscapingByrefs() argument 2229 for (const BlockDecl *BD : FSI.Blocks) { in markEscapingByrefs() 2251 for (VarDecl *VD : FSI.ByrefBlockVars) { in markEscapingByrefs()
|
| H A D | AnalysisBasedWarnings.cpp | 669 sema::FunctionScopeInfo *FSI) { in CheckFallThroughForBody() argument 673 bool IsCoroutine = FSI->isCoroutine(); in CheckFallThroughForBody() 704 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
|
| H A D | SemaChecking.cpp | 7167 FSI->ArgPassingKind = FAPK_Fixed; in getFormatStringInfo() 7169 FSI->FirstDataArg = in getFormatStringInfo() 7176 if(FSI->FormatIdx == 0) in getFormatStringInfo() 7178 --FSI->FormatIdx; in getFormatStringInfo() 7179 if (FSI->FirstDataArg != 0) in getFormatStringInfo() 7180 --FSI->FirstDataArg; in getFormatStringInfo() 7222 FormatStringInfo FSI; in GetFormatNSStringIdx() local 7225 Idx = FSI.FormatIdx; in GetFormatNSStringIdx() 10851 FormatStringInfo FSI; in CheckFormatArguments() local 10853 &FSI)) in CheckFormatArguments() [all …]
|
| H A D | SemaDecl.cpp | 13724 if (FunctionScopeInfo *FSI = getCurFunction()) in AddInitializerToDecl() local 13729 FSI->markSafeWeakUse(Init); in AddInitializerToDecl() 16003 FunctionScopeInfo *FSI = getCurFunction(); in ActOnFinishFunctionBody() local 16014 if (FSI->isCoroutine()) in ActOnFinishFunctionBody() 16101 computeNRVO(Body, FSI); in ActOnFinishFunctionBody() 16272 computeNRVO(Body, FSI); in ActOnFinishFunctionBody() 16274 if (FSI->ObjCShouldCallSuper) { in ActOnFinishFunctionBody() 16277 FSI->ObjCShouldCallSuper = false; in ActOnFinishFunctionBody() 16306 if (FSI->ObjCWarnForNoInitDelegation) { in ActOnFinishFunctionBody() 16311 FSI->ObjCWarnForNoInitDelegation = false; in ActOnFinishFunctionBody() [all …]
|
| H A D | SemaDeclCXX.cpp | 2475 FunctionDecl *FD, const sema::FunctionScopeInfo *FSI) { in CheckImmediateEscalatingFunctionDefinition() argument 2479 FSI->FoundImmediateEscalatingExpression); in CheckImmediateEscalatingFunctionDefinition() 2480 if (FSI->FoundImmediateEscalatingExpression) { in CheckImmediateEscalatingFunctionDefinition() 19300 auto &FSI = InventedParameterInfos.back(); in ActOnFinishFunctionDeclarationDeclarator() local 19301 if (FSI.TemplateParams.size() > FSI.NumExplicitTemplateParams) { in ActOnFinishFunctionDeclarationDeclarator() 19302 if (FSI.NumExplicitTemplateParams != 0) { in ActOnFinishFunctionDeclarationDeclarator() 19308 ExplicitParams->getLAngleLoc(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator() 19314 Context, SourceLocation(), SourceLocation(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator()
|
| H A D | SemaOpenMP.cpp | 486 for (const FunctionScopeInfo *FSI : llvm::reverse(SemaRef.FunctionScopes)) { in popFunction() local 487 if (!isa<CapturingScopeInfo>(FSI)) { in popFunction() 488 CurrentNonCapturingFunctionScope = FSI; in popFunction() 2383 for (FunctionScopeInfo *FSI : llvm::drop_begin( in isOpenMPCapturedDecl() 2386 if (!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2388 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2414 FunctionScopeInfo *FSI = FunctionScopes[I - 1]; in isOpenMPCapturedDecl() local 2415 if (!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl() 2417 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl()
|
| H A D | SemaType.cpp | 2718 } else if (sema::FunctionScopeInfo *FSI = getCurFunction()) { in BuildArrayType() local 2721 FSI->setHasVLA(Loc); in BuildArrayType()
|
| H A D | SemaTemplate.cpp | 71 for (FunctionScopeInfo *FSI : getFunctionScopes()) { in getTemplateDepth() 72 if (auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) { in getTemplateDepth()
|
| H A D | SemaExpr.cpp | 19810 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; in tryCaptureVariable() local 19811 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); in tryCaptureVariable()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/arm/tegra/ |
| H A D | nvidia,tegra234-cbb.yaml | 17 which include cluster fabrics BPMP, AON, PSC, SCE, RCE, DCE, FSI and
|
| /freebsd-14.2/sys/contrib/device-tree/src/powerpc/ |
| H A D | fsp2.dts | 154 /* 2nd level UICs for FSI */
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAG.cpp | 425 auto FSI = StoreNPcMap.find (IntNo); in SelectNewCircIntrinsic() local 426 if (FSI != StoreNPcMap.end()) { in SelectNewCircIntrinsic() 440 MachineSDNode *Res = CurDAG->getMachineNode(FSI->second, DL, RTys, Ops); in SelectNewCircIntrinsic()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 836 FunctionTemplateSpecializationInfo *FSI in ComputeName() local 838 if (FSI && !FSI->isExplicitSpecialization()) { in ComputeName() 840 = FSI->getTemplate()->getTemplateParameters(); in ComputeName() 841 const TemplateArgumentList* Args = FSI->TemplateArguments; in ComputeName()
|