You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hazard coverage is missing for various instructions DONE
testgen.py hazard logic uses unusual features and is hard to read/maintain NOT DOING
Can we use the instruction type in the testplan .csv rather than making tables in testgen.py? NOT DOING
Hazards need to generate signature code PENDING
Many hazards have three tests, the third doesn't do anything interesting LIVE WITH IT
Why do branches have waw hazards? They don't seem to do anything. HAMZA IMPROVING COVERPOINTS 2/4/25
# Testcase cp_gpr/fpr_hazard waw test
add x13, x2, x20 # perform first operation
bne x18, x6, arbitraryLabel67
nop
arbitraryLabel67:
nop
# perform second (triggering) operation
Why do stores have waw hazards?
# Testcase cp_gpr/fpr_hazard waw test
la x26, scratch
addi x26, x26, -1529
add x1, x1, x0 # perform first operation
sw x2, 1529(x26) # perform second (triggering) operation
Store war hazards don't seem to do anything
# Testcase cp_gpr/fpr_hazard war test
la x16, scratch
addi x16, x16, 167
add x31, x10, x21 # perform first operation
sw x5, -167(x16) # perform second (triggering) operation
The text was updated successfully, but these errors were encountered:
Hazard coverage is missing for various instructions DONE
testgen.py hazard logic uses unusual features and is hard to read/maintain NOT DOING
Can we use the instruction type in the testplan .csv rather than making tables in testgen.py? NOT DOING
Hazards need to generate signature code PENDING
Many hazards have three tests, the third doesn't do anything interesting LIVE WITH IT
Why do branches have waw hazards? They don't seem to do anything. HAMZA IMPROVING COVERPOINTS 2/4/25
Why do stores have waw hazards?
Store war hazards don't seem to do anything
The text was updated successfully, but these errors were encountered: