-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathAIETargetLdScript.cpp
More file actions
208 lines (188 loc) · 6.47 KB
/
Copy pathAIETargetLdScript.cpp
File metadata and controls
208 lines (188 loc) · 6.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//===- AIETargetLdScript.cpp -----------------------------------*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// (c) Copyright 2023 Advanced Micro Devices, Inc.
//
//===----------------------------------------------------------------------===//
#include "aie/Dialect/AIE/IR/AIEDialect.h"
#include "aie/Targets/AIETargets.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "mlir/IR/SymbolTable.h"
#include <set>
using namespace mlir;
using namespace xilinx;
using namespace xilinx::AIE;
// Output the memorymap in gnu linker format for the given buffer operations,
// with the given offset. The offset is different depending on where the buffers
// are accessed from.
static void writeLDScriptMap(raw_ostream &output, BufferOp buf, int offset) {
std::string bufName(buf.name().getValue());
int bufferBaseAddr = getBufferBaseAddress(buf);
int numBytes = buf.getAllocationSize();
output << ". = 0x" << llvm::utohexstr(offset + bufferBaseAddr) << ";\n";
output << bufName << " = .;\n";
output << ". += 0x" << llvm::utohexstr(numBytes) << ";\n";
}
///// ld.script format:
//
// MEMORY
// {
// program (RX) : ORIGIN = 0, LENGTH = 0x0020000
// data (!RX) : ORIGIN = 0x20000, LENGTH = 0x0020000
// }
// ENTRY(__start)
// INPUT(something.o)
// SECTIONS
// {
// . = 0x0;
// .text : {
// // the __start symbol has to come at address zero.
// *crt0.o(.text*)
// __ctors_start__ = .;
// __init_array_start = .;
// KEEP(SORT(*)(.init_array))
// __ctors_end__ = .;
// __init_array_end = .;
// __dtors_start__ = .;
// __dtors_end__ = .;
// *(.text*)
// } > program
// .data : { *(.data*) } > data
// . = 0x20000;
// _sp_start_value_DM_stack = .;
// . = 0x24000;
// a = .;
// . += 1024;
// .bss : { *(.bss*) } > data
// }
// PROVIDE(main = core_3_3);
LogicalResult xilinx::AIE::AIETranslateToLdScript(ModuleOp module,
raw_ostream &output,
int tileCol, int tileRow,
llvm::StringRef deviceName) {
DenseMap<TileID, Operation *> tiles;
DenseMap<Operation *, SmallVector<BufferOp, 4>> buffers;
DeviceOp targetOp =
AIE::DeviceOp::getForSymbolInModuleOrError(module, deviceName);
if (!targetOp) {
return failure();
}
collectTiles(targetOp, tiles);
collectBuffers(targetOp, buffers);
for (auto tile : targetOp.getOps<TileOp>())
if (tile.colIndex() == tileCol && tile.rowIndex() == tileRow) {
TileID srcCoord = {tile.colIndex(), tile.rowIndex()};
const auto &targetModel = getTargetModel(tile);
// Figure out how much memory we have left for random allocations
auto core = tile.getCoreOp();
int max = core.getStackSize();
for (auto buf : buffers[tiles[srcCoord]]) {
int bufferBaseAddr = getBufferBaseAddress(buf);
int numBytes = buf.getAllocationSize();
max = std::max(max, bufferBaseAddr + numBytes);
}
int origin = targetModel.getMemInternalBaseAddress(srcCoord) + max;
int length = targetModel.getLocalMemorySize() - max;
output << R"THESCRIPT(
MEMORY
{
program (RX) : ORIGIN = 0, LENGTH = 0x0020000
)THESCRIPT";
output << " data (!RX) : ORIGIN = 0x" << llvm::utohexstr(origin)
<< ", LENGTH = 0x" << llvm::utohexstr(length);
output << R"THESCRIPT(
}
ENTRY(__start)
SECTIONS
{
. = 0x0;
.text : {
/* the __start symbol has to come at address zero. */
*crt0.o(.text*)
_ctors_start = .;
_init_array_start = .;
KEEP(SORT(*.init_array))
_ctors_end = .;
_init_array_end = .;
_dtors_start = .;
_dtors_end = .;
*(.text*)
} > program
.data : {
*(.data*)
*(.rodata*)
} > data
.comment : {
*(.comment*)
}
.symtab : {
*(.symtab)
}
.shstrtab : {
*(.shstrtab)
}
.strtab : {
*(.strtab)
}
.stack_sizes : {
*(.stack_sizes)
}
)THESCRIPT";
auto doBuffer = [&](std::optional<TileID> tile, int offset,
std::string dir) {
if (tile) {
if (tiles.count(*tile))
for (auto buf : buffers[tiles[*tile]])
writeLDScriptMap(output, buf, offset);
} else {
output << "/* No tile with memory exists to the " << dir << ". */\n";
output << ". = 0x" << llvm::utohexstr(offset) << ";\n";
uint32_t localMemSize = targetModel.getLocalMemorySize();
output << ". += 0x" << llvm::utohexstr(localMemSize) << ";\n";
}
};
// Stack
output << ". = 0x"
<< llvm::utohexstr(targetModel.getMemInternalBaseAddress(srcCoord))
<< ";\n";
output << "_sp_start_value_DM_stack = .;\n";
if (auto core = tile.getCoreOp())
output << ". += 0x" << llvm::utohexstr(core.getStackSize())
<< "; /* stack */\n";
else
output << "/* no stack allocated */\n";
doBuffer(targetModel.getMemSouth(srcCoord),
targetModel.getMemSouthBaseAddress(), std::string("south"));
doBuffer(targetModel.getMemWest(srcCoord),
targetModel.getMemWestBaseAddress(), std::string("west"));
doBuffer(targetModel.getMemNorth(srcCoord),
targetModel.getMemNorthBaseAddress(), std::string("north"));
doBuffer(targetModel.getMemEast(srcCoord),
targetModel.getMemEastBaseAddress(), std::string("east"));
output << " .bss : { *(.bss*) } > data\n";
output << "}\n";
if (auto coreOp = tile.getCoreOp()) {
std::set<std::string> linkedFiles;
if (auto fileAttr = coreOp.getLinkWith())
linkedFiles.insert(fileAttr.value().str());
coreOp.walk([&](func::CallOp call) {
auto callee = call.getCallee();
if (auto func = SymbolTable::lookupNearestSymbolFrom<func::FuncOp>(
call, StringAttr::get(call.getContext(), callee))) {
if (auto linkWith = func.getOperation()->getAttrOfType<StringAttr>(
"link_with")) {
linkedFiles.insert(linkWith.getValue().str());
}
}
});
for (const auto &file : linkedFiles)
output << "INPUT(" << file << ")\n";
output << "PROVIDE(main = core_" << tile.getCol() << "_"
<< tile.getRow() << ");\n";
}
}
return success();
}