LLVM 22.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
43
45 return wrap(&unwrap(M)->getDataLayout());
46}
47
51
53 return wrap(new DataLayout(StringRep));
54}
55
57 delete unwrap(TD);
58}
59
64
66 std::string StringRep = unwrap(TD)->getStringRepresentation();
67 return strdup(StringRep.c_str());
68}
69
73
75 return unwrap(TD)->getPointerSize(0);
76}
77
78unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) {
79 return unwrap(TD)->getPointerSize(AS);
80}
81
85
87 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()), AS));
88}
89
93
95 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
96}
97
99 return unwrap(TD)->getTypeSizeInBits(unwrap(Ty));
100}
101
103 return unwrap(TD)->getTypeStoreSize(unwrap(Ty));
104}
105
107 return unwrap(TD)->getTypeAllocSize(unwrap(Ty));
108}
109
111 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
112}
113
115 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
116}
117
119 return unwrap(TD)->getPrefTypeAlign(unwrap(Ty)).value();
120}
121
123 LLVMValueRef GlobalVar) {
124 return unwrap(TD)
125 ->getPreferredAlign(unwrap<GlobalVariable>(GlobalVar))
126 .value();
127}
128
130 unsigned long long Offset) {
131 StructType *STy = unwrap<StructType>(StructTy);
132 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
133}
134
135unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy,
136 unsigned Element) {
137 StructType *STy = unwrap<StructType>(StructTy);
138 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
139}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Module.h This file contains the declarations for the Module class.
#define P(N)
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:63
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
A global registry used in conjunction with static constructors to make pluggable components (like tar...
Definition Registry.h:44
Class to represent struct types.
Implementation of the target library information.
LLVMContextRef LLVMGetGlobalContext(void)
Obtain the global context instance.
Definition Core.cpp:104
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
LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS)
Returns the integer type that is the same size as a pointer on a target.
Definition Target.cpp:86
LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M)
Obtain the data layout for a module.
Definition Target.cpp:44
LLVMTargetDataRef LLVMCreateTargetData(const char *StringRep)
Creates target data from a target layout string.
Definition Target.cpp:52
unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the preferred alignment of a type in bytes for a target.
Definition Target.cpp:118
unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the call frame alignment of a type in bytes for a target.
Definition Target.cpp:114
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:135
void LLVMDisposeTargetData(LLVMTargetDataRef TD)
Deallocates a TargetData.
Definition Target.cpp:56
void LLVMAddTargetLibraryInfo(LLVMTargetLibraryInfoRef TLI, LLVMPassManagerRef PM)
Adds target library information to a pass manager.
Definition Target.cpp:60
LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD)
Returns the byte order of a target, either LLVMBigEndian or LLVMLittleEndian.
Definition Target.cpp:70
LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef TD)
Returns the integer type that is the same size as a pointer on a target.
Definition Target.cpp:82
unsigned LLVMPreferredAlignmentOfGlobal(LLVMTargetDataRef TD, LLVMValueRef GlobalVar)
Computes the preferred alignment of a global variable in bytes for a target.
Definition Target.cpp:122
unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the storage size of a type in bytes for a target.
Definition Target.cpp:102
LLVMByteOrdering
Definition Target.h:36
unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI size of a type in bytes for a target.
Definition Target.cpp:106
unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS)
Returns the pointer size in bytes for a target for a specified address space.
Definition Target.cpp:78
unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI alignment of a type in bytes for a target.
Definition Target.cpp:110
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:129
LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef C, LLVMTargetDataRef TD)
Returns the integer type that is the same size as a pointer on a target.
Definition Target.cpp:90
char * LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD)
Converts target data to a target layout string.
Definition Target.cpp:65
unsigned LLVMPointerSize(LLVMTargetDataRef TD)
Returns the pointer size in bytes for a target.
Definition Target.cpp:74
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:94
struct LLVMOpaqueTargetLibraryInfotData * LLVMTargetLibraryInfoRef
Definition Target.h:39
void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL)
Set the data layout for a module.
Definition Target.cpp:48
unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the size of a type in bits for a target.
Definition Target.cpp:98
struct LLVMOpaqueTargetData * LLVMTargetDataRef
Definition Target.h:38
@ LLVMBigEndian
Definition Target.h:36
@ LLVMLittleEndian
Definition Target.h:36
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477
LLVM_ABI void initializeRuntimeLibraryInfoWrapperPass(PassRegistry &)
Attribute unwrap(LLVMAttributeRef Attr)
Definition Attributes.h:351
LLVM_ABI void initializeTarget(PassRegistry &)
Initialize all passes linked into the CodeGen library.
Definition Target.cpp:38
LLVM_ABI void initializeTargetTransformInfoWrapperPassPass(PassRegistry &)
LLVM_ABI void initializeTargetLibraryInfoWrapperPassPass(PassRegistry &)
LLVMAttributeRef wrap(Attribute Attr)
Definition Attributes.h:346