mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-06 11:10:06 +01:00
enhancements for lookup and parsing AArch64 instrs
This commit is contained in:
@@ -574,7 +574,10 @@ class MachineModel(object):
|
||||
if reg['prefix'] != i_reg['prefix']:
|
||||
return False
|
||||
if 'shape' in reg:
|
||||
if 'shape' in i_reg and reg['shape'] == i_reg['shape']:
|
||||
if 'shape' in i_reg and (
|
||||
reg['shape'] == i_reg['shape']
|
||||
or self.WILDCARD in (reg['shape'] + i_reg['shape'])
|
||||
):
|
||||
return True
|
||||
return False
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user