38 #include "arch/gpu_types.hh" 41 #include "config/the_gpu_isa.hh" 42 #include "debug/BRIG.hh" 43 #include "debug/HSAILObject.hh" 53 :
HsaCode(name_str), private_size(-1), readonly_size(-1)
69 fatal(
"unexpected directive kind %d inside kernel/function init\n",
73 DPRINTF(HSAILObject,
"Initializing code, first code block entry is: %d\n",
94 int funcarg_size_scope = 0;
99 while (entryPtr < endPtr) {
100 switch (entryPtr->
kind) {
106 DPRINTF(HSAILObject,
"Initializing code, directive is " 107 "kind_variable, symbol is: %s\n",
115 funcarg_size_scope += se->size;
125 DPRINTF(HSAILObject,
"Initializing code, directive is " 126 "kind_label, label is: %s \n",
135 DPRINTF(HSAILObject,
"Initializing code, directive " 142 DPRINTF(HSAILObject,
"Initializing code, directive is " 149 DPRINTF(HSAILObject,
"Initializing code, directive is " 150 "kind_arg_block_start\n");
153 funcarg_size_scope = 0;
159 DPRINTF(HSAILObject,
"Initializing code, directive is " 160 "kind_arg_block_end\n");
168 DPRINTF(HSAILObject,
"Initializing code, dircetive is " 182 DPRINTF(HSAILObject,
"Initializing code, processing inst " 183 "byte addr #%d idx %d: OPCODE=%d\n", inst_addr,
184 inst_idx, instPtr->
opcode);
189 _insts.push_back(raw_inst);
190 instructions.push_back(iptr);
196 warn(
"unexpected operand entry in code segment\n");
200 fatal(
"unexpected directive kind %d inside kernel scope\n",
223 init(code_dir, obj, objStorageMap);
231 Label &lbl = map[lbl_name];
234 fatal(
"Attempt to redefine existing label %s\n", lbl_name);
237 lbl.
define(lbl_name, inst_index);
238 DPRINTF(HSAILObject,
"label %s = %d\n", lbl_name, inst_index);
282 fatal(
"unhandled symbol data type %d", t);
297 size *= (((uint64_t)sym->
dim.
hi) << 32 | (uint64_t)sym->
dim.
lo);
306 nextOffset = offset + size;
308 DPRINTF(HSAILObject,
"Adding SYMBOL %s size %d offset %#x, init: %d\n",
309 sym_name, size, offset, sym->
init);
312 elements.push_back(se);
313 elements_by_addr.insert(
AddrRange(offset, offset + size - 1), se);
314 elements_by_brigptr[sym] = se;
322 for (
auto it : elements) {
323 if (it->name == name) {
334 assert(elements_by_addr.size() > 0);
336 auto se = elements_by_addr.contains(addr);
338 if (se == elements_by_addr.end()) {
348 assert(elements_by_brigptr.size() > 0);
350 auto se = elements_by_brigptr.find(brigptr);
352 if (se == elements_by_brigptr.end()) {
360 : outerScopeMap(outerScope)
int getSize(Brig::BrigSegment segment)
BrigDataOffsetString32_t name
int getBrigDataTypeBytes(BrigType16_t t)
#define fatal(...)
This implements a cprintf based fatal() function.
const std::string & name()
Label * refLabel(const Brig::BrigDirectiveLabel *lbl, const BrigObject *obj)
void instAddr(int inst_addr)
StorageElement * addSymbol(const Brig::BrigDirectiveVariable *sym, const BrigObject *obj)
BrigOperandOffset32_t init
void checkName(std::string &_name)
void setPrivateSize(int32_t _private_size)
StorageElement * findSymbol(Brig::BrigSegment segment, std::string name)
const std::string & name() const
static unsigned maxRegIdx
T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
StorageSpace * space[NumSegments]
StorageElement * addSymbol(const Brig::BrigDirectiveVariable *sym, const BrigObject *obj)
void define(std::string &_name, int _value)
static unsigned maxRegIdx
void resetOffset(Brig::BrigSegment segment)
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
static void assignImmediatePostDominators(const std::vector< GPUStaticInst *> &instructions)
Compute immediate post-dominator instruction for kernel instructions.
const Brig::BrigBase * getCodeSectionEntry(int offs) const
StorageElement * findSymbol(std::string name)
const char * getString(int offs) const
StorageMap(StorageMap *outerScope=nullptr)
TheGpuISA::Decoder decoder
static unsigned maxRegIdx
void init(const Brig::BrigDirectiveExecutable *code_dir, const BrigObject *obj, StorageMap *objStorageMap)
BrigDataOffsetString32_t name
uint64_t RawMachInst
used to represnt a GPU inst in its raw format.
HsailCode(const std::string &name_str, const Brig::BrigDirectiveExecutable *code_dir, const BrigObject *obj, StorageMap *objStorageMap)
StorageMap * outerScopeMap
BrigCodeOffset32_t firstCodeBlockEntry
std::vector< TheGpuISA::RawMachInst > _insts
void addLabel(const Brig::BrigDirectiveLabel *lbl, int inst_index, const BrigObject *obj)