[mlir] Update Ch-2.md (#121379)
[llvm-project.git] / clang / lib / Interpreter / InterpreterUtils.h
blobc7b405b486d9369bd407a4ad2beed7edc89de559
1 //===--- InterpreterUtils.h - Incremental Utils --------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements some common utils used in the incremental library.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_CLANG_INTERPRETER_UTILS_H
14 #define LLVM_CLANG_INTERPRETER_UTILS_H
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/Mangle.h"
18 #include "clang/AST/TypeVisitor.h"
19 #include "clang/Basic/TargetInfo.h"
20 #include "clang/CodeGen/ModuleBuilder.h"
21 #include "clang/Driver/Compilation.h"
22 #include "clang/Driver/Driver.h"
23 #include "clang/Driver/Job.h"
24 #include "clang/Driver/Options.h"
25 #include "clang/Driver/Tool.h"
26 #include "clang/Frontend/CompilerInstance.h"
27 #include "clang/Frontend/TextDiagnosticBuffer.h"
28 #include "clang/Lex/PreprocessorOptions.h"
30 #include "clang/Sema/Lookup.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/Support/Errc.h"
33 #include "llvm/TargetParser/Host.h"
35 namespace clang {
36 IntegerLiteral *IntegerLiteralExpr(ASTContext &C, uint64_t Val);
38 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E);
40 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr);
42 Sema::DeclGroupPtrTy CreateDGPtrFrom(Sema &S, Decl *D);
44 NamespaceDecl *LookupNamespace(Sema &S, llvm::StringRef Name,
45 const DeclContext *Within = nullptr);
47 NamedDecl *LookupNamed(Sema &S, llvm::StringRef Name,
48 const DeclContext *Within);
50 std::string GetFullTypeName(ASTContext &Ctx, QualType QT);
51 } // namespace clang
53 #endif