class BitRange(OrderedDict):
"""BitRange: remaps from straight indices (0,1,2..) to bit numbers
"""
-
def __getitem__(self, subscript):
if isinstance(subscript, slice):
return list(self)[subscript]
else:
return self[subscript]
-
def decode_instructions(form):
res = {}
accum = []
accum.append(l.strip())
return res
-
def decode_form_header(hdr):
res = {}
count = 0
count += len(f) + 1
return res
-
def find_unique(d, key):
if key not in d:
return key
fields = {}
falternate = {}
for l in res:
- for k, (start, end) in l.items():
+ for k, (start,end) in l.items():
if k in fields:
if (start, end) == fields[k]:
- continue # already in and matching for this Form
+ continue # already in and matching for this Form
if k in falternate:
alternate = "%s_%d" % (k, falternate[k])
if (start, end) == fields[alternate]:
class DecodeFields:
- def __init__(self, bitkls=BitRange, bitargs=(), fname="fields.txt"):
+ def __init__(self, bitkls=BitRange, bitargs=(), fname="fields.text"):
self.bitkls = bitkls
self.bitargs = bitargs
self.fname = download_wiki_file(fname)
if not reading_data:
assert l[0] == '#'
heading = l[1:].strip()
- # if heading.startswith('1.6.28'): # skip instr fields for now
- # break
+ #if heading.startswith('1.6.28'): # skip instr fields for now
+ #break
heading = heading.split(' ')[-1]
reading_data = True
forms[heading] = []
i = decode_instructions(form)
for form, field in i.items():
inst[form] = self.decode_instruction_fields(field)
- # else:
+ #else:
# res[hdr] = decode_form(form)
return res, inst
return res
-
if __name__ == '__main__':
dec = DecodeFields()
dec.create_specs()