Searched refs:SC (Results 51 - 75 of 131) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp315 ArrayRef<std::pair<Record *, SMRange>> SC = Set->getSuperClasses();
316 for (const auto &SCPair : SC) {
H A DTGParser.cpp230 Record *SC = SubClass.Rec; local
232 for (const RecordVal &Val : SC->getValues())
236 ArrayRef<Init *> TArgs = SC->getTemplateArgs();
257 ") of subclass '" + SC->getNameInitAsString() + "'!");
271 R.set(QualifiedNameOfImplicitName(*SC), Name);
277 ArrayRef<std::pair<Record *, SMRange>> SCs = SC->getSuperClasses();
285 if (CurRec->isSubClassOf(SC))
287 "Already subclass of '" + SC->getName() + "'!\n");
288 CurRec->addSuperClass(SC, SubClass.RefRange);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawTypes.h45 // This struct is defined as `SC` in include/dbicommon.h
220 SectionContrib SC; member in struct:llvm::ModuleInfoHeader
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h377 CXXNamedCastExpr(StmtClass SC, QualType ty, ExprValueKind VK, argument
382 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
385 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
386 : ExplicitCastExpr(SC, Shell, PathSize) {}
1216 CXXDefaultArgExpr(StmtClass SC, SourceLocation Loc, ParmVarDecl *Param, argument
1218 : Expr(SC,
1469 CXXConstructExpr(StmtClass SC, QualType Ty, SourceLocation Loc,
1477 CXXConstructExpr(StmtClass SC, EmptyShell Empty, unsigned NumArgs);
2845 OverloadExpr(StmtClass SC, const ASTContext &Context,
2854 OverloadExpr(StmtClass SC, EmptyShel
4609 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *Common, Expr *Ready, Expr *Suspend, Expr *Resume, OpaqueValueExpr *OpaqueValue) argument
4622 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, Expr *Common) argument
4634 CoroutineSuspendExpr(StmtClass SC, EmptyShell Empty) argument
[all...]
/freebsd-13-stable/contrib/ee/
H A Dnew_curse.h168 int SC; /* starting column */ member in struct:WIND
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp801 XCOFF::StorageClass SC = getStorageClass(); local
802 return (SC == XCOFF::C_EXT || SC == XCOFF::C_WEAKEXT ||
803 SC == XCOFF::C_HIDEXT);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsNaClELFStreamer.cpp248 case Mips::SC:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSERegisterInfo.cpp84 case Mips::SC:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp642 auto SC = E->getStmtClass(); local
643 if (SC == Expr::CXXConstructExprClass) {
648 } else if (SC == Expr::CallExprClass || SC == Expr::CXXMemberCallExprClass ||
649 SC == Expr::CXXOperatorCallExprClass) {
688 bool Sema::ActOnCoroutineBodyStart(Scope *SC, SourceLocation KWLoc, argument
710 Suspend = buildOperatorCoawaitCall(*this, SC, Loc, Suspend.get());
H A DSemaDecl.cpp5179 StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS); local
5185 SC = SC_None;
5191 Context.getTypeDeclType(Record), TInfo, SC);
6803 StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec()); local
6807 if (SC == SC_None && !DC->isRecord() &&
6810 SC = SC_Extern;
6813 bool IsLocalExternDecl = SC == SC_Extern &&
6821 SC = SC_None;
6842 if (SC == SC_Auto || (SC
8373 CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, DeclContext *DC, QualType &R, TypeSourceInfo *TInfo, StorageClass SC, bool &IsVirtualOkay) argument
8827 StorageClass SC = getFunctionStorageClass(*this, D); local
13390 StorageClass SC = SC_None; local
13547 CheckParameter(DeclContext *DC, SourceLocation StartLoc, SourceLocation NameLoc, IdentifierInfo *Name, QualType T, TypeSourceInfo *TSInfo, StorageClass SC) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp714 StorageClass SC = demangleVariableStorageClass(MangledName); local
715 return demangleVariableEncoding(MangledName, SC);
843 StorageClass SC) {
847 VSN->SC = SC;
842 demangleVariableEncoding(StringView &MangledName, StorageClass SC) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1935 const MCSchedClassDesc *SC = DAG->getSchedClass(&SU); local
1936 RemIssueCount += SchedModel->getNumMicroOps(SU.getInstr(), SC)
1939 PI = SchedModel->getWriteProcResBegin(SC),
1940 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2058 const MCSchedClassDesc *SC = DAG->getSchedClass(SU); local
2060 make_range(SchedModel->getWriteProcResBegin(SC),
2061 SchedModel->getWriteProcResEnd(SC))) {
2263 const MCSchedClassDesc *SC = DAG->getSchedClass(SU); local
2315 PI = SchedModel->getWriteProcResBegin(SC),
2316 PE = SchedModel->getWriteProcResEnd(SC); P
2498 const MCSchedClassDesc *SC = DAG->getSchedClass(SU); local
[all...]
H A DMachineCombiner.cpp366 /// helper routine to convert instructions into SC
373 const MCSchedClassDesc *SC = SchedModel.getSchedClassDesc(Idx);
374 InstrsSC.push_back(SC);
393 // Deal with SC rather than Instructions.
H A DScheduleDAGInstrs.cpp593 const MCSchedClassDesc *SC = getSchedClass(SU); local
595 make_range(SchedModel.getWriteProcResBegin(SC),
596 SchedModel.getWriteProcResEnd(SC))) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp870 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) {
871 const APInt &RHS = SC->getAPInt();
1834 if (const auto *SC = dyn_cast<SCEVConstant>(D->getRHS()))
1836 return SC->getValue()->isZero();
2191 if (auto *SC = dyn_cast<SCEVConstant>(UDivExpr->getRHS())) {
2192 if (SC->getAPInt().isPowerOf2()) {
2521 const SCEVConstant *SC = dyn_cast<SCEVConstant>(D->getRHS()); local
2522 if (!SC || SC->getValue()->isZero()) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp761 StorageClass SC = VD->getStorageClass(); local
762 if (SC != SC_None)
763 JOS.attribute("storageClass", VarDecl::getStorageClassSpecifierString(SC));
795 StorageClass SC = FD->getStorageClass(); local
796 if (SC != SC_None)
797 JOS.attribute("storageClass", VarDecl::getStorageClassSpecifierString(SC));
H A DTextNodeDumper.cpp1544 StorageClass SC = D->getStorageClass(); local
1545 if (SC != SC_None)
1546 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
1634 StorageClass SC = D->getStorageClass(); local
1635 if (SC != SC_None)
1636 OS << ' ' << VarDecl::getStorageClassSpecifierString(SC);
H A DExprCXX.cpp400 OverloadExpr::OverloadExpr(StmtClass SC, const ASTContext &Context, argument
409 : Expr(SC, Context.OverloadTy, VK_LValue, OK_Ordinary), NameInfo(NameInfo),
438 OverloadExpr::OverloadExpr(StmtClass SC, EmptyShell Empty, unsigned NumResults, argument
440 : Expr(SC, Empty) {
1021 StmtClass SC, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor,
1026 : Expr(SC, Ty, VK_RValue, OK_Ordinary), Constructor(Ctor),
1045 CXXConstructExpr::CXXConstructExpr(StmtClass SC, EmptyShell Empty, argument
1047 : Expr(SC, Empty), NumArgs(NumArgs) {}
1020 CXXConstructExpr( StmtClass SC, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor, bool Elidable, ArrayRef<Expr *> Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization, ConstructionKind ConstructKind, SourceRange ParenOrBraceRange) argument
H A DDecl.cpp1937 const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) { argument
1938 switch (SC) {
1953 StorageClass SC)
1963 VarDeclBits.SClass = SC;
1980 void VarDecl::setStorageClass(StorageClass SC) { argument
1981 assert(isLegalForVariable(SC));
1982 VarDeclBits.SClass = SC;
4718 StorageClass SC, bool isInlineSpecified,
4724 SC, isInlineSpecified, ConstexprKind,
1950 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass SC) argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp260 static StringRef GetSymbolValueName(XCOFF::StorageClass SC) { argument
261 switch (SC) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h164 StorageClass SC);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp752 Value *SC = SI->getCondition(); local
756 findLIVLoopCondition(SC, CurrentLoop, Changed, MSSAU.get());
769 auto *AllZero = cast<ConstantInt>(Constant::getNullValue(SC->getType()));
777 auto *AllOne = cast<ConstantInt>(Constant::getAllOnesValue(SC->getType()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h410 VPBlockBase(const unsigned char SC, const std::string &N)
411 : SubclassID(SC), Name(N) {}
632 VPRecipeBase(const unsigned char SC) : SubclassID(SC) {}
/freebsd-13-stable/contrib/libpcap/
H A Dgrammar.y341 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
733 | SC { $$ = A_SC; }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConv.h429 if (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym)) {
435 getSymExpr(Solver, Ctx, SC->getOperand(), &FromTy, hasComparison);

Completed in 486 milliseconds

123456