radeonsi/gfx9: add IB parser support
Both GFX6 and GFX9 fields are printed next to each other in parsed IBs. The Python script parses both headers like one stream and tries to merge all definitions. Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
@@ -65,8 +65,8 @@ common_libamd_common_la_SOURCES += $(AMD_NIR_FILES)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
common/sid_tables.h: $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h
|
common/sid_tables.h: $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h $(srcdir)/common/gfx9d.h
|
||||||
$(AM_V_at)$(MKDIR_P) $(@D)
|
$(AM_V_at)$(MKDIR_P) $(@D)
|
||||||
$(AM_V_GEN) $(PYTHON2) $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h > $@
|
$(AM_V_GEN) $(PYTHON2) $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h $(srcdir)/common/gfx9d.h > $@
|
||||||
|
|
||||||
BUILT_SOURCES = $(AMD_GENERATED_FILES)
|
BUILT_SOURCES = $(AMD_GENERATED_FILES)
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
#include "ac_debug.h"
|
#include "ac_debug.h"
|
||||||
|
|
||||||
#include "sid.h"
|
#include "sid.h"
|
||||||
|
#include "gfx9d.h"
|
||||||
#include "sid_tables.h"
|
#include "sid_tables.h"
|
||||||
#include "util/u_math.h"
|
#include "util/u_math.h"
|
||||||
#include "util/u_memory.h"
|
#include "util/u_memory.h"
|
||||||
|
|||||||
@@ -145,11 +145,8 @@ def strip_prefix(s):
|
|||||||
'''Strip prefix in the form ._.*_, e.g. R_001234_'''
|
'''Strip prefix in the form ._.*_, e.g. R_001234_'''
|
||||||
return s[s[2:].find('_')+3:]
|
return s[s[2:].find('_')+3:]
|
||||||
|
|
||||||
|
def parse(filename, regs, packets):
|
||||||
def parse(filename):
|
|
||||||
stream = open(filename)
|
stream = open(filename)
|
||||||
regs = []
|
|
||||||
packets = []
|
|
||||||
|
|
||||||
for line in stream:
|
for line in stream:
|
||||||
if not line.startswith('#define '):
|
if not line.startswith('#define '):
|
||||||
@@ -158,16 +155,38 @@ def parse(filename):
|
|||||||
line = line[8:].strip()
|
line = line[8:].strip()
|
||||||
|
|
||||||
if line.startswith('R_'):
|
if line.startswith('R_'):
|
||||||
reg = Reg(line.split()[0])
|
name = line.split()[0]
|
||||||
regs.append(reg)
|
|
||||||
|
for it in regs:
|
||||||
|
if it.r_name == name:
|
||||||
|
reg = it
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
reg = Reg(name)
|
||||||
|
regs.append(reg)
|
||||||
|
|
||||||
elif line.startswith('S_'):
|
elif line.startswith('S_'):
|
||||||
field = Field(reg, line[:line.find('(')])
|
name = line[:line.find('(')]
|
||||||
reg.fields.append(field)
|
|
||||||
|
for it in reg.fields:
|
||||||
|
if it.s_name == name:
|
||||||
|
field = it
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
field = Field(reg, name)
|
||||||
|
reg.fields.append(field)
|
||||||
|
|
||||||
elif line.startswith('V_'):
|
elif line.startswith('V_'):
|
||||||
split = line.split()
|
split = line.split()
|
||||||
field.values.append((split[0], int(split[1], 0)))
|
name = split[0]
|
||||||
|
value = int(split[1], 0)
|
||||||
|
|
||||||
|
for (n,v) in field.values:
|
||||||
|
if n == name:
|
||||||
|
if v != value:
|
||||||
|
sys.exit('Value mismatch: name = ' + name)
|
||||||
|
|
||||||
|
field.values.append((name, value))
|
||||||
|
|
||||||
elif line.startswith('PKT3_') and line.find('0x') != -1 and line.find('(') == -1:
|
elif line.startswith('PKT3_') and line.find('0x') != -1 and line.find('(') == -1:
|
||||||
packets.append(line.split()[0])
|
packets.append(line.split()[0])
|
||||||
@@ -192,12 +211,8 @@ def parse(filename):
|
|||||||
reg.fields_owner = reg0
|
reg.fields_owner = reg0
|
||||||
reg.own_fields = False
|
reg.own_fields = False
|
||||||
|
|
||||||
return (regs, packets)
|
|
||||||
|
|
||||||
|
def write_tables(regs, packets):
|
||||||
def write_tables(tables):
|
|
||||||
regs = tables[0]
|
|
||||||
packets = tables[1]
|
|
||||||
|
|
||||||
strings = StringTable()
|
strings = StringTable()
|
||||||
strings_offsets = IntTable("int")
|
strings_offsets = IntTable("int")
|
||||||
@@ -282,10 +297,11 @@ struct si_packet3 {
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
tables = []
|
regs = []
|
||||||
|
packets = []
|
||||||
for arg in sys.argv[1:]:
|
for arg in sys.argv[1:]:
|
||||||
tables.extend(parse(arg))
|
parse(arg, regs, packets)
|
||||||
write_tables(tables)
|
write_tables(regs, packets)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include "si_pipe.h"
|
#include "si_pipe.h"
|
||||||
#include "sid.h"
|
#include "sid.h"
|
||||||
|
#include "gfx9d.h"
|
||||||
#include "sid_tables.h"
|
#include "sid_tables.h"
|
||||||
#include "ddebug/dd_util.h"
|
#include "ddebug/dd_util.h"
|
||||||
#include "util/u_memory.h"
|
#include "util/u_memory.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user