LILAC
Language to language Interop LAyer Compiler
Loading...
Searching...
No Matches
pch.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024 Yeong-won Seo
3 *
4 * This file is part of LILAC.
5 *
6 * LILAC is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3, or (at your option) any later
9 * version.
10 *
11 * LILAC is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22/********************************
23 * Clang/LLVM *
24 ********************************/
25#include <clang/AST/ASTContext.h>
26#include <clang/AST/ASTConsumer.h>
27#include <clang/AST/Decl.h>
28#include <clang/AST/Mangle.h>
29#include <clang/AST/RecordLayout.h>
30#include <clang/AST/RecursiveASTVisitor.h>
31#include <clang/CodeGen/BackendUtil.h>
32#include <clang/CodeGen/CodeGenAction.h>
33#include <clang/Frontend/CompilerInstance.h>
34#include <clang/Frontend/FrontendAction.h>
35#include <clang/Frontend/FrontendPluginRegistry.h>
36#include <clang/Tooling/CommonOptionsParser.h>
37#include <clang/Tooling/Tooling.h>
38#include <clang/Tooling/Tooling.h>
39#include <clang/Tooling/JSONCompilationDatabase.h>
40#include <clang/Sema/ParsedAttr.h>
41#include <clang/Sema/Sema.h>
42#include <clang/Sema/SemaConsumer.h>
43#include <clang/Sema/SemaDiagnostic.h>
44#include <llvm/IR/Attributes.h>
45#include <llvm/Linker/Linker.h>
46#include <llvm/Support/CommandLine.h>
47
48/********************************
49 * External Dependencies *
50 ********************************/
51#include <frxml.h>
52
53/********************************
54 * Standard Libraries *
55 ********************************/
56#include <algorithm>
57#include <fstream>
58#include <utility>
59#include <memory>
60#include <ranges>
61#include <sstream>
62#include <stack>
63#include <variant>
64#include <vector>