LLVM 19.0.0git
Target.cpp
Go to the documentation of this file.
1//===-- Target.cpp --------------------------------------------------------===//
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 the common infrastructure (including C bindings) for
10// libLLVMTarget.a, which implements target information.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm-c/Target.h"
16#include "llvm/IR/DataLayout.h"
17#include "llvm/IR/LLVMContext.h"
19#include "llvm/IR/Module.h"
20#include "llvm/IR/Value.h"
22#include <cstring>
23
24using namespace llvm;
25
26// Avoid including "llvm-c/Core.h" for compile time, fwd-declare this instead.
28
30 return reinterpret_cast<TargetLibraryInfoImpl*>(P);
31}
32
35 return reinterpret_cast<LLVMTargetLibraryInfoRef>(X);
36}
37
41}
42
44 return wrap(&unwrap(M)->getDataLayout());
45}
46
48 unwrap(M)->setDataLayout(*unwrap(DL));
49}
50
52 return wrap(new DataLayout(StringRep));
53}
54
56 delete unwrap(TD);
57}
58
61 unwrap(PM)->add(new TargetLibraryInfoWrapperPass(*unwrap(TLI)));
62}
63
65 std::string StringRep = unwrap(TD)->getStringRepresentation();
66 return strdup(StringRep.c_str());
67}
68
70 return unwrap(TD)->isLittleEndian() ? LLVMLittleEndian : LLVMBigEndian;
71}
72
74 return unwrap(TD)->getPointerSize(0);
75}
76
77unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) {
78 return unwrap(TD)->getPointerSize(AS);
79}
80
82 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext())));
83}
84
86 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()), AS));
87}
88
90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C)));
91}
92
94 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
95}
96
98 return unwrap(TD)->getTypeSizeInBits(unwrap(Ty));
99}
100
102 return unwrap(TD)->getTypeStoreSize(unwrap(Ty));
103}
104
106 return unwrap(TD)->getTypeAllocSize(unwrap(Ty));
107}
108
110 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
111}
112
114 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
115}
116
118 return unwrap(TD)->getPrefTypeAlign(unwrap(Ty)).value();
119}
120
122 LLVMValueRef GlobalVar) {
123 return unwrap(TD)
124 ->getPreferredAlign(unwrap<GlobalVariable>(GlobalVar))
125 .value();
126}
127
129 unsigned long long Offset) {
130 StructType *STy = unwrap<StructType>(StructTy);
131 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
132}
133
134unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy,
135 unsigned Element) {
136 StructType *STy = unwrap<StructType>(StructTy);
137 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
138}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
Module.h This file contains the declarations for the Module class.
#define P(N)
TargetLibraryInfoImpl * unwrap(LLVMTargetLibraryInfoRef P)
Definition: Target.cpp:29
LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfoImpl *P)
Definition: Target.cpp:33
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
Definition: PassRegistry.h:37
A global registry used in conjunction with static constructors to make pluggable components (like tar...
Definition: Registry.h:44
Class to represent struct types.
Definition: DerivedTypes.h:216
Implementation of the target library information.
LLVMContextRef LLVMGetGlobalContext(void)
Obtain the global context instance.
Definition: Core.cpp:101
struct LLVMOpaqueValue * LLVMValueRef
Represents an individual value in LLVM IR.
Definition: Types.h:75
struct LLVMOpaquePassManager * LLVMPassManagerRef
Definition: Types.h:127
struct LLVMOpaqueContext * LLVMContextRef
The top-level container for all LLVM global data.
Definition: Types.h:53
struct LLVMOpaqueType * LLVMTypeRef
Each value in the LLVM IR has a type, an LLVMTypeRef.
Definition: Types.h:68
struct LLVMOpaqueModule * LLVMModuleRef
The top-level container for all other LLVM Intermediate Representation (IR) objects.
Definition: Types.h:61
void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL)
Set the data layout for a module.
Definition: Target.cpp:47
LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M)
Obtain the data layout for a module.
Definition: Target.cpp:43
unsigned LLVMPreferredAlignmentOfGlobal(LLVMTargetDataRef TD, LLVMValueRef GlobalVar)
Computes the preferred alignment of a global variable in bytes for a target.
Definition: Target.cpp:121
void LLVMDisposeTargetData(LLVMTargetDataRef TD)
Deallocates a TargetData.
Definition: Target.cpp:55
char * LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD)
Converts target data to a target layout string.
Definition: Target.cpp:64
LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef C, LLVMTargetDataRef TD)
Returns the integer type that is the same size as a pointer on a target.
Definition: Target.cpp:89
LLVMByteOrdering
Definition: Target.h:35
unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI alignment of a type in bytes for a target.
Definition: Target.cpp:109
unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the storage size of a type in bytes for a target.
Definition: Target.cpp:101
LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD)
Returns the byte order of a target, either LLVMBigEndian or LLVMLittleEndian.
Definition: Target.cpp:69
LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef TD)
Returns the integer type that is the same size as a pointer on a target.
Definition: Target.cpp:81
unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS)
Returns the pointer size in bytes for a target for a specified address space.
Definition: Target.cpp:77
unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the call frame alignment of a type in bytes for a target.
Definition: Target.cpp:113
unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy, unsigned Element)
Computes the byte offset of the indexed struct element for a target.
Definition: Target.cpp:134
unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the size of a type in bytes for a target.
Definition: Target.cpp:97
void LLVMAddTargetLibraryInfo(LLVMTargetLibraryInfoRef TLI, LLVMPassManagerRef PM)
Adds target library information to a pass manager.
Definition: Target.cpp:59
struct LLVMOpaqueTargetLibraryInfotData * LLVMTargetLibraryInfoRef
Definition: Target.h:38
unsigned LLVMPointerSize(LLVMTargetDataRef TD)
Returns the pointer size in bytes for a target.
Definition: Target.cpp:73
LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS)
Returns the integer type that is the same size as a pointer on a target.
Definition: Target.cpp:85
unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI size of a type in bytes for a target.
Definition: Target.cpp:105
LLVMTargetDataRef LLVMCreateTargetData(const char *StringRep)
Creates target data from a target layout string.
Definition: Target.cpp:51
struct LLVMOpaqueTargetData * LLVMTargetDataRef
Definition: Target.h:37
LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, unsigned AS)
Returns the integer type that is the same size as a pointer on a target.
Definition: Target.cpp:93
unsigned LLVMElementAtOffset(LLVMTargetDataRef TD, LLVMTypeRef StructTy, unsigned long long Offset)
Computes the structure element that contains the byte offset for a target.
Definition: Target.cpp:128
unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the preferred alignment of a type in bytes for a target.
Definition: Target.cpp:117
@ LLVMBigEndian
Definition: Target.h:35
@ LLVMLittleEndian
Definition: Target.h:35
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480
void initializeTargetTransformInfoWrapperPassPass(PassRegistry &)
void initializeTarget(PassRegistry &)
Initialize all passes linked into the CodeGen library.
Definition: Target.cpp:38
void initializeTargetLibraryInfoWrapperPassPass(PassRegistry &)