mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-06 19:20:07 +01:00
better GAS suffix handling and BDW DB
This commit is contained in:
14103
osaca/data/bdw.yml
Normal file
14103
osaca/data/bdw.yml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -124,6 +124,14 @@ class ArchSemantics(ISASemantics):
|
||||
instruction_data = self._machine_model.get_instruction(
|
||||
instruction_form['instruction'], instruction_form['operands']
|
||||
)
|
||||
if (
|
||||
not instruction_data
|
||||
and self._isa == 'x86'
|
||||
and instruction_form['instruction'][-1] in 'bwlq'
|
||||
):
|
||||
instruction_data = self._machine_model.get_instruction(
|
||||
instruction_form['instruction'][:-1], instruction_form['operands']
|
||||
)
|
||||
if instruction_data:
|
||||
# instruction form in DB
|
||||
throughput = instruction_data['throughput']
|
||||
|
||||
Reference in New Issue
Block a user