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
27 return reinterpret_cast<TargetLibraryInfoImpl*>(P);
28}
29
32 return reinterpret_cast<LLVMTargetLibraryInfoRef>(X);
33}
34
40
42 return wrap(&unwrap(M)->getDataLayout());
43}
44
48
50 return wrap(new DataLayout(StringRep));
51}
52
54 delete unwrap(TD);
55}
56
61
63 std::string StringRep = unwrap(TD)->getStringRepresentation();
64 return strdup(StringRep.c_str());
65}
66
70
72 return unwrap(TD)->getPointerSize(0);
73}
74
75unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) {
76 return unwrap(TD)->getPointerSize(AS);
77}
78
82
84 return wrap(
85 unwrap(TD)->getIntPtrType(*unwrap(getGlobalContextForCAPI()), AS));
86}
87
91
93 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
94}
95
97 return unwrap(TD)->getTypeSizeInBits(unwrap(Ty));
98}
99
101 return unwrap(TD)->getTypeStoreSize(unwrap(Ty));
102}
103
105 return unwrap(TD)->getTypeAllocSize(unwrap(Ty));
106}
107
109 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
110}
111
113 return unwrap(TD)->getABITypeAlign(unwrap(Ty)).value();
114}
115
117 return unwrap(TD)->getPrefTypeAlign(unwrap(Ty)).value();
118}
119
121 LLVMValueRef GlobalVar) {
122 return unwrap(TD)
123 ->getPreferredAlign(unwrap<GlobalVariable>(GlobalVar))
124 .value();
125}
126
128 unsigned long long Offset) {
129 StructType *STy = unwrap<StructType>(StructTy);
130 return unwrap(TD)->getStructLayout(STy)->getElementContainingOffset(Offset);
131}
132
133unsigned long long LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy,
134 unsigned Element) {
135 StructType *STy = unwrap<StructType>(StructTy);
136 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
137}
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")
LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef TD)
Definition Target.cpp:79
LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS)
Definition Target.cpp:83
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.
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
LLVMTargetDataRef LLVMGetModuleDataLayout(LLVMModuleRef M)
Obtain the data layout for a module.
Definition Target.cpp:41
LLVMTargetDataRef LLVMCreateTargetData(const char *StringRep)
Creates target data from a target layout string.
Definition Target.cpp:49
unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the preferred alignment of a type in bytes for a target.
Definition Target.cpp:116
unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the call frame alignment of a type in bytes for a target.
Definition Target.cpp:112
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:133
void LLVMDisposeTargetData(LLVMTargetDataRef TD)
Deallocates a TargetData.
Definition Target.cpp:53
void LLVMAddTargetLibraryInfo(LLVMTargetLibraryInfoRef TLI, LLVMPassManagerRef PM)
Adds target library information to a pass manager.
Definition Target.cpp:57
LLVMByteOrdering LLVMByteOrder(LLVMTargetDataRef TD)
Returns the byte order of a target, either LLVMBigEndian or LLVMLittleEndian.
Definition Target.cpp:67
unsigned LLVMPreferredAlignmentOfGlobal(LLVMTargetDataRef TD, LLVMValueRef GlobalVar)
Computes the preferred alignment of a global variable in bytes for a target.
Definition Target.cpp:120
unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the storage size of a type in bytes for a target.
Definition Target.cpp:100
LLVMByteOrdering
Definition Target.h:37
unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI size of a type in bytes for a target.
Definition Target.cpp:104
unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS)
Returns the pointer size in bytes for a target for a specified address space.
Definition Target.cpp:75
unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the ABI alignment of a type in bytes for a target.
Definition Target.cpp:108
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:127
LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef C, LLVMTargetDataRef TD)
Returns the integer type that is the same size as a pointer on a target.
Definition Target.cpp:88
char * LLVMCopyStringRepOfTargetData(LLVMTargetDataRef TD)
Converts target data to a target layout string.
Definition Target.cpp:62
unsigned LLVMPointerSize(LLVMTargetDataRef TD)
Returns the pointer size in bytes for a target.
Definition Target.cpp:71
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:92
struct LLVMOpaqueTargetLibraryInfotData * LLVMTargetLibraryInfoRef
Definition Target.h:40
void LLVMSetModuleDataLayout(LLVMModuleRef M, LLVMTargetDataRef DL)
Set the data layout for a module.
Definition Target.cpp:45
unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty)
Computes the size of a type in bits for a target.
Definition Target.cpp:96
struct LLVMOpaqueTargetData * LLVMTargetDataRef
Definition Target.h:39
@ LLVMBigEndian
Definition Target.h:37
@ LLVMLittleEndian
Definition Target.h:37
@ 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:532
LLVM_ABI LLVMContextRef getGlobalContextForCAPI()
Get the deprecated global context for use by the C API.
Definition Core.cpp:100
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:35
LLVM_ABI void initializeTargetTransformInfoWrapperPassPass(PassRegistry &)
LLVM_ABI void initializeTargetLibraryInfoWrapperPassPass(PassRegistry &)
LLVMAttributeRef wrap(Attribute Attr)
Definition Attributes.h:346