Home
last modified time | relevance | path

Searched refs:IK (Results 1 – 25 of 35) sorted by relevance

12

/openbsd/gnu/llvm/clang/include/clang/Frontend/
H A DCompilerInvocation.h264 InputKind IK, const llvm::Triple &T,
272 InputKind IK);
276 InputKind IK, DiagnosticsEngine &Diags,
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DIVDescriptors.h321 InductionKind getKind() const { return IK; } in getKind()
358 if (IK == IK_FpInduction && InductionBinOp && in getExactFPMathInst()
371 assert(IK == IK_PtrInduction && "Only pointer induction has element type"); in getElementType()
392 InductionKind IK = IK_NoInduction; variable
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp70 InputKind IK = Language::CXX; // FIXME in onBodySynthesis() local
72 FrontendOpts.Inputs.emplace_back(fileName, IK); in onBodySynthesis()
/openbsd/regress/lib/libcrypto/x509/bettertls/certificates/
H A D3112.crt15 IK/4nAjYLJDcWaPf9LdfKBY15Mnb3wUF7xUNsdXgVkvk+ytyFvCReaQjAgMBAAGj
H A D296.crt15 IK/qoCNFzH36HhIFbuUQge2W3QIDAQABoywwKjAMBgNVHRMBAf8EAjAAMBoGA1Ud
H A D1176.key21 NTsP5ho71O/VEbOnN4UGgDkCgYAVMtbKVP5LQgrnBG9eKaaA5mgEimIiQZgJt/IK
H A D1497.key7 IK/rHZml0M7zCsX1s5wZADri4fQAJlvf3/1mGwIDAQABAoIBAQCkNVflU8G9DTyZ
H A D2276.key17 IK/gyLexSsab7GPUgmvIl+ymR++CKE/Pa5Wr/zYbzKXrJcePk1vtXHVjZDbQEUsu
H A D1932.key24 UQxSeFECgYEAqpnhW1SYTcX2Ny+HDg9jMZM+3IK+Mtqt8JauUbjkcL5FW2dwDGUu
H A D3503.chain20 ya/IK+au8PFfc17roxs8tH5+buu1ay8yokRmv/daYih3nxVkkCzaXih+MOEkUk5N
H A D2542.chain19 Ay/ofEWuumBbelr96m1GulT8WlIGDBsupAMpaJxzuWtY55ubt01R/8IK+p1eqnLH
H A D1219.chain21 IK/tle1b1Za3HbX4lmZl9aC71YJHWgouLnKDLJXzRvU0VLLBZtgR3hHY3bekH6P1
/openbsd/gnu/llvm/clang/lib/Frontend/
H A DCompilerInvocation.cpp463 InputKind IK) { in FixupInvocation() argument
574 if ((IK.getLanguage() == Language::OpenCL || in getOptimizationLevel()
1976 IK.getLanguage() != Language::LLVM_IR) in ParseCodeGenArgs()
2934 InputKind IK = DashX; in ParseFrontendArgs() local
2935 if (IK.isUnknown()) { in ParseFrontendArgs()
2939 if (IK.isUnknown()) in ParseFrontendArgs()
2940 IK = Language::C; in ParseFrontendArgs()
2943 DashX = IK; in ParseFrontendArgs()
2951 IK = IK.withFormat(InputKind::ModuleMap); in ParseFrontendArgs()
3235 switch (IK.getLanguage()) { in IsInputCompatibleWithStandard()
[all …]
H A DChainedIncludesSource.cpp97 InputKind IK = CI.getFrontendOpts().Inputs[0].getKind(); in createChainedIncludesSource() local
116 FrontendInputFile InputFile(includes[i], IK); in createChainedIncludesSource()
H A DCompilerInstance.cpp1303 InputKind IK(getLanguageFromOptions(ImportingInstance.getLangOpts()), in compileModule() local
1324 FrontendInputFile(ModuleMapFilePath, IK, +Module->IsSystem), in compileModule()
1341 FrontendInputFile(FakeModuleMapFile, IK, +Module->IsSystem), in compileModule()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1733 InvalidationKinds IK) { in setTrait() argument
1734 SymTraitsMap[Sym] |= IK; in setTrait()
1738 InvalidationKinds IK) { in setTrait() argument
1741 setTrait(SR->getSymbol(), IK); in setTrait()
1743 MRTraitsMap[MR] |= IK; in setTrait()
1747 InvalidationKinds IK) const { in hasTrait()
1750 return I->second & IK; in hasTrait()
1756 InvalidationKinds IK) const { in hasTrait()
1761 return hasTrait(SR->getSymbol(), IK); in hasTrait()
1765 return I->second & IK; in hasTrait()
H A DExprEngineCallAndReturn.cpp509 const auto IK = AMgr.options.getCTUPhase1Inlining(); in REGISTER_MAP_WITH_PROGRAMSTATE() local
510 const bool DoInline = IK == CTUPhase1InliningKind::All || in REGISTER_MAP_WITH_PROGRAMSTATE()
511 (IK == CTUPhase1InliningKind::Small && in REGISTER_MAP_WITH_PROGRAMSTATE()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DIVDescriptors.cpp1269 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp), in InductionDescriptor()
1271 assert(IK != IK_NoInduction && "Not an induction"); in InductionDescriptor()
1276 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) && in InductionDescriptor()
1278 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) && in InductionDescriptor()
1285 assert((IK != IK_PtrInduction || getConstIntStepValue()) && in InductionDescriptor()
1287 assert((IK == IK_FpInduction || Step->getType()->isIntegerTy()) && in InductionDescriptor()
1290 assert((IK != IK_FpInduction || Step->getType()->isFloatingPointTy()) && in InductionDescriptor()
1292 assert((IK != IK_FpInduction || in InductionDescriptor()
1298 if (IK == IK_PtrInduction) in InductionDescriptor()
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600MachineScheduler.cpp193 int IK = getInstKind(SU); in releaseBottomNode() local
196 if (IK == IDOther) in releaseBottomNode()
199 Pending[IK].push_back(SU); in releaseBottomNode()
/openbsd/gnu/llvm/clang/lib/AST/
H A DExpr.cpp668 PredefinedExprBits.Kind = IK; in PredefinedExpr()
669 assert((getIdentKind() == IK) && in PredefinedExpr()
690 return new (Mem) PredefinedExpr(L, FNTy, IK, SL); in Create()
701 switch (IK) { in getIdentKindName()
727 if (IK == PredefinedExpr::FuncDName) { in ComputeName()
766 Out << ComputeName(IK, DCBlock); in ComputeName()
772 if (IK != PrettyFunction && IK != PrettyFunctionNoVirtual && in ComputeName()
773 IK != FuncSig && IK != LFuncSig) in ComputeName()
798 if (IK == FuncSig || IK == LFuncSig) { in ComputeName()
823 } else if ((IK == FuncSig || IK == LFuncSig || in ComputeName()
[all …]
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DDeclOpenMP.h252 void setInitializer(Expr *E, InitKind IK) { in setInitializer() argument
254 OMPDeclareReductionDeclBits.InitializerKind = IK; in setInitializer()
H A DExpr.h1995 PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
2012 QualType FNTy, IdentKind IK, StringLiteral *SL);
2037 static StringRef getIdentKindName(IdentKind IK);
2042 static std::string ComputeName(IdentKind IK, const Decl *CurrentDecl);
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1601 void setTrait(SymbolRef Sym, InvalidationKinds IK);
1602 void setTrait(const MemRegion *MR, InvalidationKinds IK);
1603 bool hasTrait(SymbolRef Sym, InvalidationKinds IK) const;
1604 bool hasTrait(const MemRegion *MR, InvalidationKinds IK) const;
/openbsd/gnu/usr.bin/perl/t/japh/
H A Dabigail.t530 BEGIN {$^H {q} = sub {$_ [1] =~ y/S-ZA-IK-O/q-tc-fe-m/d; $_ [1]}; $^H = 0x28100}
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp3531 PredefinedExpr::IdentKind IK) { in BuildPredefinedExpr() argument
3555 auto Str = PredefinedExpr::ComputeName(IK, currentDecl); in BuildPredefinedExpr()
3559 if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) { in BuildPredefinedExpr()
3580 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL); in BuildPredefinedExpr()
3606 PredefinedExpr::IdentKind IK; in ActOnPredefinedExpr() local
3610 case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2] in ActOnPredefinedExpr()
3611 case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break; in ActOnPredefinedExpr()
3612 case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS] in ActOnPredefinedExpr()
3613 case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS] in ActOnPredefinedExpr()
3615 case tok::kw_L__FUNCSIG__: IK = PredefinedExpr::LFuncSig; break; // [MS] in ActOnPredefinedExpr()
[all …]

12