Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/frontends/clover/llvm/compat.hpp
4573 views
1
//
2
// Copyright 2016 Francisco Jerez
3
//
4
// Permission is hereby granted, free of charge, to any person obtaining a
5
// copy of this software and associated documentation files (the "Software"),
6
// to deal in the Software without restriction, including without limitation
7
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
// and/or sell copies of the Software, and to permit persons to whom the
9
// Software is furnished to do so, subject to the following conditions:
10
//
11
// The above copyright notice and this permission notice shall be included in
12
// all copies or substantial portions of the Software.
13
//
14
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20
// OTHER DEALINGS IN THE SOFTWARE.
21
//
22
23
///
24
/// \file
25
/// Some thin wrappers around the Clang/LLVM API used to preserve
26
/// compatibility with older API versions while keeping the ifdef clutter low
27
/// in the rest of the clover::llvm subtree. In case of an API break please
28
/// consider whether it's possible to preserve backwards compatibility by
29
/// introducing a new one-liner inline function or typedef here under the
30
/// compat namespace in order to keep the running code free from preprocessor
31
/// conditionals.
32
///
33
34
#ifndef CLOVER_LLVM_COMPAT_HPP
35
#define CLOVER_LLVM_COMPAT_HPP
36
37
#include "util/algorithm.hpp"
38
39
#include <llvm/Config/llvm-config.h>
40
41
#include <llvm/ADT/Triple.h>
42
#include <llvm/Analysis/TargetLibraryInfo.h>
43
#include <llvm/IR/LegacyPassManager.h>
44
#include <llvm/IR/LLVMContext.h>
45
#include <llvm/IR/Type.h>
46
#include <llvm/Linker/Linker.h>
47
#include <llvm/Target/TargetMachine.h>
48
#include <llvm/Transforms/IPO.h>
49
#include <llvm/Transforms/Utils/Cloning.h>
50
51
#include <clang/Basic/TargetInfo.h>
52
#include <clang/Frontend/CompilerInstance.h>
53
#include <clang/Lex/PreprocessorOptions.h>
54
55
#if LLVM_VERSION_MAJOR >= 10
56
#include <llvm/Support/CodeGen.h>
57
#endif
58
59
namespace clover {
60
namespace llvm {
61
namespace compat {
62
63
#if LLVM_VERSION_MAJOR >= 10
64
const auto CGFT_ObjectFile = ::llvm::CGFT_ObjectFile;
65
const auto CGFT_AssemblyFile = ::llvm::CGFT_AssemblyFile;
66
typedef ::llvm::CodeGenFileType CodeGenFileType;
67
#else
68
const auto CGFT_ObjectFile = ::llvm::TargetMachine::CGFT_ObjectFile;
69
const auto CGFT_AssemblyFile =
70
::llvm::TargetMachine::CGFT_AssemblyFile;
71
typedef ::llvm::TargetMachine::CodeGenFileType CodeGenFileType;
72
#endif
73
74
#if LLVM_VERSION_MAJOR >= 10
75
const clang::InputKind ik_opencl = clang::Language::OpenCL;
76
#else
77
const clang::InputKind ik_opencl = clang::InputKind::OpenCL;
78
#endif
79
80
template<typename T> inline bool
81
create_compiler_invocation_from_args(clang::CompilerInvocation &cinv,
82
T copts,
83
clang::DiagnosticsEngine &diag)
84
{
85
#if LLVM_VERSION_MAJOR >= 10
86
return clang::CompilerInvocation::CreateFromArgs(
87
cinv, copts, diag);
88
#else
89
return clang::CompilerInvocation::CreateFromArgs(
90
cinv, copts.data(), copts.data() + copts.size(), diag);
91
#endif
92
}
93
94
static inline void
95
compiler_set_lang_defaults(std::unique_ptr<clang::CompilerInstance> &c,
96
clang::InputKind ik, const ::llvm::Triple& triple,
97
clang::LangStandard::Kind d)
98
{
99
c->getInvocation().setLangDefaults(c->getLangOpts(), ik, triple,
100
#if LLVM_VERSION_MAJOR >= 12
101
c->getPreprocessorOpts().Includes,
102
#else
103
c->getPreprocessorOpts(),
104
#endif
105
d);
106
}
107
108
static inline bool
109
is_scalable_vector(const ::llvm::Type *type)
110
{
111
#if LLVM_VERSION_MAJOR >= 11
112
return ::llvm::isa<::llvm::ScalableVectorType>(type);
113
#else
114
return false;
115
#endif
116
}
117
118
static inline bool
119
is_fixed_vector(const ::llvm::Type *type)
120
{
121
#if LLVM_VERSION_MAJOR >= 11
122
return ::llvm::isa<::llvm::FixedVectorType>(type);
123
#else
124
return type->isVectorTy();
125
#endif
126
}
127
128
static inline unsigned
129
get_fixed_vector_elements(const ::llvm::Type *type)
130
{
131
#if LLVM_VERSION_MAJOR >= 11
132
return ::llvm::cast<::llvm::FixedVectorType>(type)->getNumElements();
133
#else
134
return ((::llvm::VectorType*)type)->getNumElements();
135
#endif
136
}
137
}
138
}
139
}
140
141
#endif
142
143