clang 18.0.0git
ABIInfo.h
Go to the documentation of this file.
1//===----- ABIInfo.h - ABI information access & encapsulation ---*- 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#ifndef LLVM_CLANG_LIB_CODEGEN_ABIINFO_H
10#define LLVM_CLANG_LIB_CODEGEN_ABIINFO_H
11
12#include "clang/AST/CharUnits.h"
13#include "clang/AST/Type.h"
14#include "llvm/IR/CallingConv.h"
15#include "llvm/IR/Type.h"
16
17namespace llvm {
18class Value;
19class LLVMContext;
20class DataLayout;
21class Type;
22} // namespace llvm
23
24namespace clang {
25class ASTContext;
26class CodeGenOptions;
27class TargetInfo;
28
29namespace CodeGen {
30class ABIArgInfo;
31class Address;
32class CGCXXABI;
33class CGFunctionInfo;
34class CodeGenFunction;
35class CodeGenTypes;
36
37// FIXME: All of this stuff should be part of the target interface
38// somehow. It is currently here because it is not clear how to factor
39// the targets to support this, since the Targets currently live in a
40// layer below types n'stuff.
41
42/// ABIInfo - Target specific hooks for defining how a type should be
43/// passed or returned from functions.
44class ABIInfo {
45protected:
47 llvm::CallingConv::ID RuntimeCC;
48
49public:
51 : CGT(cgt), RuntimeCC(llvm::CallingConv::C) {}
52
53 virtual ~ABIInfo();
54
55 virtual bool allowBFloatArgsAndRet() const { return false; }
56
58 ASTContext &getContext() const;
59 llvm::LLVMContext &getVMContext() const;
60 const llvm::DataLayout &getDataLayout() const;
61 const TargetInfo &getTarget() const;
62 const CodeGenOptions &getCodeGenOpts() const;
63
64 /// Return the calling convention to use for system runtime
65 /// functions.
66 llvm::CallingConv::ID getRuntimeCC() const { return RuntimeCC; }
67
68 virtual void computeInfo(CodeGen::CGFunctionInfo &FI) const = 0;
69
70 /// EmitVAArg - Emit the target dependent code to load a value of
71 /// \arg Ty from the va_list pointed to by \arg VAListAddr.
72
73 // FIXME: This is a gaping layering violation if we wanted to drop
74 // the ABI information any lower than CodeGen. Of course, for
75 // VAArg handling it has to be at this level; there is no way to
76 // abstract this out.
78 CodeGen::Address VAListAddr,
79 QualType Ty) const = 0;
80
81 bool isAndroid() const;
82 bool isOHOSFamily() const;
83
84 /// Emit the target dependent code to load a value of
85 /// \arg Ty from the \c __builtin_ms_va_list pointed to by \arg VAListAddr.
87 CodeGen::Address VAListAddr,
88 QualType Ty) const;
89
90 virtual bool isHomogeneousAggregateBaseType(QualType Ty) const;
91
93 uint64_t Members) const;
95
96 /// isHomogeneousAggregate - Return true if a type is an ELFv2 homogeneous
97 /// aggregate. Base is set to the base element type, and Members is set
98 /// to the number of base elements.
100 uint64_t &Members) const;
101
102 // Implement the Type::IsPromotableIntegerType for ABI specific needs. The
103 // only difference is that this considers bit-precise integer types as well.
105
106 /// A convenience method to return an indirect ABIArgInfo with an
107 /// expected alignment equal to the ABI alignment of the given type.
109 getNaturalAlignIndirect(QualType Ty, bool ByVal = true, bool Realign = false,
110 llvm::Type *Padding = nullptr) const;
111
113 bool Realign = false) const;
114};
115
116/// Target specific hooks for defining how a type should be passed or returned
117/// from functions with one of the Swift calling conventions.
119protected:
122
124 unsigned maxAllRegisters) const;
125
126public:
129
130 virtual ~SwiftABIInfo();
131
132 /// Returns true if an aggregate which expands to the given type sequence
133 /// should be passed / returned indirectly.
134 virtual bool shouldPassIndirectly(ArrayRef<llvm::Type *> ComponentTys,
135 bool AsReturnValue) const;
136
137 /// Returns true if the given vector type is legal from Swift's calling
138 /// convention perspective.
139 virtual bool isLegalVectorType(CharUnits VectorSize, llvm::Type *EltTy,
140 unsigned NumElts) const;
141
142 /// Returns true if swifterror is lowered to a register by the target ABI.
144};
145} // end namespace CodeGen
146} // end namespace clang
147
148#endif
MatchType Type
C Language Family Type Representation.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
ABIArgInfo - Helper class to encapsulate information about how a specific C type should be passed to ...
ABIInfo - Target specific hooks for defining how a type should be passed or returned from functions.
Definition: ABIInfo.h:44
const llvm::DataLayout & getDataLayout() const
Definition: ABIInfo.cpp:26
virtual bool allowBFloatArgsAndRet() const
Definition: ABIInfo.h:55
const CodeGenOptions & getCodeGenOpts() const
Definition: ABIInfo.cpp:32
ABIInfo(CodeGen::CodeGenTypes &cgt)
Definition: ABIInfo.h:50
CodeGen::CodeGenTypes & CGT
Definition: ABIInfo.h:46
virtual CodeGen::Address EmitMSVAArg(CodeGen::CodeGenFunction &CGF, CodeGen::Address VAListAddr, QualType Ty) const
Emit the target dependent code to load a value of.
Definition: ABIInfo.cpp:42
bool isHomogeneousAggregate(QualType Ty, const Type *&Base, uint64_t &Members) const
isHomogeneousAggregate - Return true if a type is an ELFv2 homogeneous aggregate.
Definition: ABIInfo.cpp:61
CodeGen::CGCXXABI & getCXXABI() const
Definition: ABIInfo.cpp:18
ASTContext & getContext() const
Definition: ABIInfo.cpp:20
virtual bool isHomogeneousAggregateBaseType(QualType Ty) const
Definition: ABIInfo.cpp:47
bool isPromotableIntegerTypeForABI(QualType Ty) const
Definition: ABIInfo.cpp:163
bool isOHOSFamily() const
Definition: ABIInfo.cpp:38
virtual CodeGen::Address EmitVAArg(CodeGen::CodeGenFunction &CGF, CodeGen::Address VAListAddr, QualType Ty) const =0
EmitVAArg - Emit the target dependent code to load a value of.
CodeGen::ABIArgInfo getNaturalAlignIndirect(QualType Ty, bool ByVal=true, bool Realign=false, llvm::Type *Padding=nullptr) const
A convenience method to return an indirect ABIArgInfo with an expected alignment equal to the ABI ali...
Definition: ABIInfo.cpp:174
virtual bool isHomogeneousAggregateSmallEnough(const Type *Base, uint64_t Members) const
Definition: ABIInfo.cpp:51
const TargetInfo & getTarget() const
Definition: ABIInfo.cpp:30
virtual bool isZeroLengthBitfieldPermittedInHomogeneousAggregate() const
Definition: ABIInfo.cpp:56
llvm::CallingConv::ID getRuntimeCC() const
Return the calling convention to use for system runtime functions.
Definition: ABIInfo.h:66
CodeGen::ABIArgInfo getNaturalAlignIndirectInReg(QualType Ty, bool Realign=false) const
Definition: ABIInfo.cpp:181
virtual void computeInfo(CodeGen::CGFunctionInfo &FI) const =0
llvm::CallingConv::ID RuntimeCC
Definition: ABIInfo.h:47
bool isAndroid() const
Definition: ABIInfo.cpp:36
llvm::LLVMContext & getVMContext() const
Definition: ABIInfo.cpp:22
An aligned address.
Definition: Address.h:29
Implements C++ ABI-specific code generation functions.
Definition: CGCXXABI.h:43
CGFunctionInfo - Class to encapsulate the information about a function definition.
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
This class organizes the cross-module state that is used while lowering AST types to LLVM types.
Definition: CodeGenTypes.h:54
Target specific hooks for defining how a type should be passed or returned from functions with one of...
Definition: ABIInfo.h:118
virtual bool isLegalVectorType(CharUnits VectorSize, llvm::Type *EltTy, unsigned NumElts) const
Returns true if the given vector type is legal from Swift's calling convention perspective.
Definition: ABIInfo.cpp:226
bool occupiesMoreThan(ArrayRef< llvm::Type * > scalarTypes, unsigned maxAllRegisters) const
Does the given lowering require more than the given number of registers when expanded?
Definition: ABIInfo.cpp:203
bool isSwiftErrorInRegister() const
Returns true if swifterror is lowered to a register by the target ABI.
Definition: ABIInfo.h:143
virtual bool shouldPassIndirectly(ArrayRef< llvm::Type * > ComponentTys, bool AsReturnValue) const
Returns true if an aggregate which expands to the given type sequence should be passed / returned ind...
Definition: ABIInfo.cpp:221
SwiftABIInfo(CodeGen::CodeGenTypes &CGT, bool SwiftErrorInRegister)
Definition: ABIInfo.h:127
A (possibly-)qualified type.
Definition: Type.h:736
Exposes information about the current target.
Definition: TargetInfo.h:212
The base class of the type hierarchy.
Definition: Type.h:1602
CallingConv
CallingConv - Specifies the calling convention that a function uses.
Definition: Specifiers.h:273
YAML serialization mapping.
Definition: Dominators.h:30