Home
last modified time | relevance | path

Searched refs:FSI (Results 1 – 23 of 23) sorted by relevance

/freebsd-13.1/sys/contrib/device-tree/Bindings/fsi/
H A Dfsi.txt1 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 Dibm,fsi2spi.yaml7 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 Dibm,p9-occ.txt1 Device-tree bindings for FSI-attached POWER9 On-Chip Controller (OCC)
4 This is the binding for the P9 On-Chip Controller accessed over FSI from a
5 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 Dfsi-master-gpio.txt1 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 Dfsi-master-ast-cf.txt1 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)
H A Dfsi-master-aspeed.txt1 Device-tree bindings for AST2600 FSI master
4 The AST2600 contains two identical FSI masters. They share a clock and have a
/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Drenesas,fsi.yaml7 title: Renesas FIFO-buffered Serial Interface (FSI)
49 description: FSI is connected by S/PDIF
53 description: FSI supports 16bit stream mode
57 description: FSI uses internal clock when master mode
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h734 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument
735 return FSI->Kind == SK_Block || FSI->Kind == SK_Lambda in classof()
736 || FSI->Kind == SK_CapturedRegion; in classof()
761 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument
762 return FSI->Kind == SK_Block; in classof()
813 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument
814 return FSI->Kind == SK_CapturedRegion; in classof()
911 static bool classof(const FunctionScopeInfo *FSI) { in classof() argument
912 return FSI->Kind == SK_Lambda; in classof()
H A DSema.h12511 FormatStringInfo *FSI);
/freebsd-13.1/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-fsi.txt1 Device-tree bindings for FSI-attached I2C master and busses
6 - reg = < address size >; : The FSI CFAM address and address
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp824 auto *FSI = checkCoroutineContext(*this, Loc, "co_await"); in BuildUnresolvedCoawaitExpr() local
825 if (!FSI) in BuildUnresolvedCoawaitExpr()
835 auto *Promise = FSI->CoroutinePromise; in BuildUnresolvedCoawaitExpr()
966 auto *FSI = checkCoroutineContext(*this, Loc, "co_return", IsImplicit); in BuildCoreturnStmt() local
967 if (!FSI) in BuildCoreturnStmt()
977 VarDecl *Promise = FSI->CoroutinePromise; in BuildCoreturnStmt()
H A DSemaStmt.cpp391 FunctionScopeInfo *FSI = getCurFunction(); in ActOnAfterCompoundStatementLeadingPragmas() local
392 assert(FSI); in ActOnAfterCompoundStatementLeadingPragmas()
393 FSI->setUsesFPIntrin(); in ActOnAfterCompoundStatementLeadingPragmas()
4392 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnCXXTryBlock() local
4395 if (!getLangOpts().Borland && FSI->FirstSEHTryLoc.isValid()) { in ActOnCXXTryBlock()
4397 Diag(FSI->FirstSEHTryLoc, diag::note_conflicting_try_here) << "'__try'"; in ActOnCXXTryBlock()
4466 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock()
4475 sema::FunctionScopeInfo *FSI = getCurFunction(); in ActOnSEHTryBlock() local
4480 if (FSI->FirstCXXTryLoc.isValid()) { in ActOnSEHTryBlock()
4482 Diag(FSI->FirstCXXTryLoc, diag::note_conflicting_try_here) << "'try'"; in ActOnSEHTryBlock()
[all …]
H A DSema.cpp442 for (sema::FunctionScopeInfo *FSI : FunctionScopes) in ~Sema()
443 delete FSI; in ~Sema()
2039 static void markEscapingByrefs(const FunctionScopeInfo &FSI, Sema &S) { in markEscapingByrefs() argument
2042 for (const BlockDecl *BD : FSI.Blocks) { in markEscapingByrefs()
2064 for (VarDecl *VD : FSI.ByrefBlockVars) { in markEscapingByrefs()
H A DAnalysisBasedWarnings.cpp642 sema::FunctionScopeInfo *FSI) { in CheckFallThroughForBody() argument
646 bool IsCoroutine = FSI->isCoroutine(); in CheckFallThroughForBody()
677 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
H A DSemaChecking.cpp4585 FSI->HasVAListArg = Format->getFirstArg() == 0; in getFormatStringInfo()
4586 FSI->FormatIdx = Format->getFormatIdx() - 1; in getFormatStringInfo()
4587 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; in getFormatStringInfo()
4593 if(FSI->FormatIdx == 0) in getFormatStringInfo()
4595 --FSI->FormatIdx; in getFormatStringInfo()
4596 if (FSI->FirstDataArg != 0) in getFormatStringInfo()
4597 --FSI->FirstDataArg; in getFormatStringInfo()
4640 FormatStringInfo FSI; in GetFormatNSStringIdx() local
4643 Idx = FSI.FormatIdx; in GetFormatNSStringIdx()
7870 FormatStringInfo FSI; in CheckFormatArguments() local
[all …]
H A DSemaDecl.cpp12380 FSI->markSafeWeakUse(Init); in AddInitializerToDecl()
14477 FunctionScopeInfo *FSI = getCurFunction(); in ActOnFinishFunctionBody() local
14563 computeNRVO(Body, FSI); in ActOnFinishFunctionBody()
14687 computeNRVO(Body, FSI); in ActOnFinishFunctionBody()
14689 if (FSI->ObjCShouldCallSuper) { in ActOnFinishFunctionBody()
14692 FSI->ObjCShouldCallSuper = false; in ActOnFinishFunctionBody()
14694 if (FSI->ObjCWarnForNoDesignatedInitChain) { in ActOnFinishFunctionBody()
14721 if (FSI->ObjCWarnForNoInitDelegation) { in ActOnFinishFunctionBody()
14726 FSI->ObjCWarnForNoInitDelegation = false; in ActOnFinishFunctionBody()
14740 assert(!FSI->ObjCShouldCallSuper && in ActOnFinishFunctionBody()
[all …]
H A DSemaOpenMP.cpp458 for (const FunctionScopeInfo *FSI : llvm::reverse(SemaRef.FunctionScopes)) { in popFunction() local
459 if (!isa<CapturingScopeInfo>(FSI)) { in popFunction()
460 CurrentNonCapturingFunctionScope = FSI; in popFunction()
2201 for (FunctionScopeInfo *FSI : llvm::drop_begin( in isOpenMPCapturedDecl()
2204 if (!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl()
2206 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl()
2232 FunctionScopeInfo *FSI = FunctionScopes[I - 1]; in isOpenMPCapturedDecl() local
2233 if(!isa<CapturingScopeInfo>(FSI)) in isOpenMPCapturedDecl()
2235 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(FSI)) in isOpenMPCapturedDecl()
H A DSemaDeclCXX.cpp18125 auto &FSI = InventedParameterInfos.back(); in ActOnFinishFunctionDeclarationDeclarator() local
18126 if (FSI.TemplateParams.size() > FSI.NumExplicitTemplateParams) { in ActOnFinishFunctionDeclarationDeclarator()
18127 if (FSI.NumExplicitTemplateParams != 0) { in ActOnFinishFunctionDeclarationDeclarator()
18133 ExplicitParams->getLAngleLoc(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator()
18139 Context, SourceLocation(), SourceLocation(), FSI.TemplateParams, in ActOnFinishFunctionDeclarationDeclarator()
H A DSemaTemplate.cpp65 for (FunctionScopeInfo *FSI : getFunctionScopes()) { in getTemplateDepth()
66 if (auto *LSI = dyn_cast<LambdaScopeInfo>(FSI)) { in getTemplateDepth()
H A DSemaExpr.cpp17886 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex]; in tryCaptureVariable() local
17887 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI); in tryCaptureVariable()
/freebsd-13.1/sys/contrib/device-tree/src/powerpc/
H A Dfsp2.dts154 /* 2nd level UICs for FSI */
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp420 auto FSI = StoreNPcMap.find (IntNo); in SelectNewCircIntrinsic() local
421 if (FSI != StoreNPcMap.end()) { in SelectNewCircIntrinsic()
435 MachineSDNode *Res = CurDAG->getMachineNode(FSI->second, DL, RTys, Ops); in SelectNewCircIntrinsic()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp782 FunctionTemplateSpecializationInfo *FSI in ComputeName() local
784 if (FSI && !FSI->isExplicitSpecialization()) { in ComputeName()
786 = FSI->getTemplate()->getTemplateParameters(); in ComputeName()
787 const TemplateArgumentList* Args = FSI->TemplateArguments; in ComputeName()