Searched refs:IK (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp70 InputKind IK = Language::CXX; // FIXME local
72 FrontendOpts.Inputs.emplace_back(fileName, IK);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h281 InductionKind getKind() const { return IK; }
318 return (IK == IK_FpInduction) && InductionBinOp &&
325 if (IK != IK_FpInduction)
355 InductionKind IK = IK_NoInduction; member in class:llvm::InductionDescriptor
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInvocation.h175 /// \param IK - The input language.
179 static void setLangDefaults(LangOptions &Opts, InputKind IK,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DChainedIncludesSource.cpp120 InputKind IK = CI.getFrontendOpts().Inputs[0].getKind(); local
138 FrontendInputFile InputFile(includes[i], IK);
H A DCompilerInvocation.cpp122 static unsigned getOptimizationLevel(ArgList &Args, InputKind IK, argument
125 if (IK.getLanguage() == Language::OpenCL && !Args.hasArg(OPT_cl_opt_disable))
667 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, argument
674 unsigned OptimizationLevel = getOptimizationLevel(Args, IK, Diags);
987 if (IK.getLanguage() != Language::LLVM_IR)
1342 IK.getLanguage() != Language::LLVM_IR)
2043 InputKind IK = DashX; local
2044 if (IK.isUnknown()) {
2045 IK = FrontendOptions::getInputKindForExtension(
2048 if (IK
2060 Opts.Inputs.emplace_back(std::move(Inputs[i]), IK); local
2215 setLangDefaults(LangOptions &Opts, InputKind IK, const llvm::Triple &T, PreprocessorOptions &PPOpts, LangStandard::Kind LangStd) argument
2383 IsInputCompatibleWithStandard(InputKind IK, const LangStandard &S) argument
2421 GetInputKindName(InputKind IK) argument
2451 ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, const TargetOptions &TargetOpts, PreprocessorOptions &PPOpts, DiagnosticsEngine &Diags) argument
[all...]
H A DCompilerInstance.cpp1189 InputKind IK(getLanguageFromOptions(ImportingInstance.getLangOpts()),
1208 FrontendInputFile(ModuleMapFile->getName(), IK, +Module->IsSystem),
1226 FrontendInputFile(FakeModuleMapFile, IK, +Module->IsSystem),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp801 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) {
802 assert(IK != IK_NoInduction && "Not an induction");
807 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) &&
809 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) &&
816 assert((IK != IK_PtrInduction || getConstIntStepValue()) &&
818 assert((IK == IK_FpInduction || Step->getType()->isIntegerTy()) &&
821 assert((IK != IK_FpInduction || Step->getType()->isFloatingPointTy()) &&
823 assert((IK != IK_FpInduction ||
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600MachineScheduler.cpp200 int IK = getInstKind(SU); local
203 if (IK == IDOther)
206 Pending[IK].push_back(SU);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp1586 InvalidationKinds IK) {
1587 SymTraitsMap[Sym] |= IK;
1591 InvalidationKinds IK) {
1594 setTrait(SR->getSymbol(), IK);
1596 MRTraitsMap[MR] |= IK;
1600 InvalidationKinds IK) const {
1603 return I->second & IK;
1609 InvalidationKinds IK) const {
1614 return hasTrait(SR->getSymbol(), IK);
1618 return I->second & IK;
1585 setTrait(SymbolRef Sym, InvalidationKinds IK) argument
1590 setTrait(const MemRegion *MR, InvalidationKinds IK) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclOpenMP.h183 void setInitializer(Expr *E, InitKind IK) { argument
185 OMPDeclareReductionDeclBits.InitializerKind = IK;
H A DExpr.h1928 PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK,
1945 QualType FNTy, IdentKind IK, StringLiteral *SL);
1970 static StringRef getIdentKindName(IdentKind IK);
1971 static std::string ComputeName(IdentKind IK, const Decl *CurrentDecl);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp612 PredefinedExpr::PredefinedExpr(SourceLocation L, QualType FNTy, IdentKind IK, argument
618 PredefinedExprBits.Kind = IK;
619 assert((getIdentKind() == IK) &&
634 QualType FNTy, IdentKind IK,
639 return new (Mem) PredefinedExpr(L, FNTy, IK, SL);
649 StringRef PredefinedExpr::getIdentKindName(PredefinedExpr::IdentKind IK) { argument
650 switch (IK) {
673 std::string PredefinedExpr::ComputeName(IdentKind IK, const Decl *CurrentDecl) { argument
676 if (IK == PredefinedExpr::FuncDName) {
711 Out << ComputeName(IK, DCBloc
633 Create(const ASTContext &Ctx, SourceLocation L, QualType FNTy, IdentKind IK, StringLiteral *SL) argument
[all...]
H A DExprConstant.cpp14071 ICEDiag(ICEKind IK, SourceLocation l) : Kind(IK), Loc(l) {}
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1476 void setTrait(SymbolRef Sym, InvalidationKinds IK);
1477 void setTrait(const MemRegion *MR, InvalidationKinds IK);
1478 bool hasTrait(SymbolRef Sym, InvalidationKinds IK) const;
1479 bool hasTrait(const MemRegion *MR, InvalidationKinds IK) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3319 PredefinedExpr::IdentKind IK) {
3343 auto Str = PredefinedExpr::ComputeName(IK, currentDecl);
3347 if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) {
3368 return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL);
3372 PredefinedExpr::IdentKind IK; local
3376 case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2]
3377 case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break;
3378 case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS]
3379 case tok::kw___FUNCSIG__: IK
3318 BuildPredefinedExpr(SourceLocation Loc, PredefinedExpr::IdentKind IK) argument
[all...]
H A DTreeTransform.h2189 PredefinedExpr::IdentKind IK) {
2190 return getSema().BuildPredefinedExpr(Loc, IK);
2188 RebuildPredefinedExpr(SourceLocation Loc, PredefinedExpr::IdentKind IK) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp416 static void ParseLangArgs(LangOptions &Opts, InputKind IK, const char *triple) { argument
422 if (IK.getLanguage() == clang::Language::Asm) {
424 } else if (IK.isObjectiveC()) {
432 switch (IK.getLanguage()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2682 auto IK = static_cast<OMPDeclareReductionDecl::InitKind>(Record.readInt()); local
2683 D->setInitializer(Init, IK);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4702 PredefinedExpr::IdentKind IK);

Completed in 399 milliseconds