-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(PerfCCT): fix inst seqNum when inst fusion and uop split (#3987) * For inst fusion, we keep the seqNum of the inst before and after the fusion consistent, both of which are the SeqNum of the latter inst. * For uop split, we keep the seqNum of the last uop and set the seqNum of the remaining uops to all 1s. update utility difftest fix PerfCCT IssueReadReg stage record fix ldst record fix(PerfCCT): fix inst commit condition in Rob (#4006) temp
- Loading branch information
Showing
27 changed files
with
192 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import sqlite3 as sql | ||
import argparse | ||
|
||
|
||
|
||
parser = argparse.ArgumentParser() | ||
parser.add_argument('sqldb') | ||
parser.add_argument('-v', '--visual', action='store_true', default=False) | ||
parser.add_argument('-z', '--zoom', action='store', type=float, default=1) | ||
parser.add_argument('-p', '--period', action='store', default=333) | ||
|
||
args = parser.parse_args() | ||
|
||
sqldb = args.sqldb | ||
|
||
tick_per_cycle = int(args.period) | ||
cycle_per_line = int(100 * args.zoom) | ||
|
||
stages = ['f','d','r','D','i','a','g','e','b','w','c'] | ||
|
||
|
||
def non_stage(): | ||
return '.' | ||
|
||
def stage(x): | ||
return stages[x] | ||
|
||
def dump_visual(pos, records): | ||
pos_start = pos[0] % cycle_per_line | ||
line = '' | ||
line += '[' + non_stage() * pos_start | ||
pos_next = pos_start | ||
for i in range(1, len(pos)): | ||
if (pos[i] <= pos[i-1]): | ||
pos[i] = pos[i-1] | ||
continue | ||
if pos[i] - pos[i-1] >= cycle_per_line - pos_next: | ||
diff = cycle_per_line - pos_next | ||
line += f'{stage(i-1)}' * diff + ']\n' | ||
diff_line = (pos[i] - pos[i-1]) - diff - 1 | ||
if diff_line > 0: | ||
line += '[' + f'{stage(i-1)}' * cycle_per_line + ']\n' | ||
|
||
pos_next = pos[i] % cycle_per_line | ||
line += '[' + f'{stage(i-1)}' * pos_next | ||
else: | ||
diff = pos[i] - pos[i-1] | ||
pos_next = pos[i] % cycle_per_line | ||
line += f'{stage(i-1)}' * diff | ||
if cycle_per_line - pos_next == 0: | ||
line += ']\n' | ||
line += f'[{stage(i)}{non_stage() * (cycle_per_line - 1)}]\n' | ||
else: | ||
line += f'{stage(i)}' + non_stage() * (cycle_per_line - pos_next - 1) + ']' | ||
line += str(records) | ||
print(line) | ||
|
||
|
||
def dump_txt(pos, records): | ||
for i in range(len(pos)): | ||
print(f'{stage(i)}{pos[i]}', end=' ') | ||
print(records) | ||
|
||
|
||
dump = dump_txt | ||
if args.visual: | ||
dump = dump_visual | ||
|
||
with sql.connect(sqldb) as con: | ||
cur = con.cursor() | ||
cur.execute("SELECT * FROM LifeTimeCommitTrace") | ||
col_name = [i[0] for i in cur.description] | ||
col_name = col_name[1:] | ||
col_name = [i.lower() for i in col_name] | ||
rows = cur.fetchall() | ||
for row in rows: | ||
row = row[1:] | ||
pos = [] | ||
records = [] | ||
i = 0 | ||
for val in row: | ||
if col_name[i].startswith('at'): | ||
pos.append(val//tick_per_cycle) | ||
elif col_name[i].startswith('pc'): | ||
records.append(hex(val)) | ||
else: | ||
records.append(val) | ||
i += 1 | ||
dump(pos, records) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.