-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Micro op and fusion #220
Merged
Merged
Micro op and fusion #220
Conversation
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
…Architecture class
…r the extraction of uops from the MacroOp vector which are then passed into the output buffer as if they are standard Instructions
…ops split from a macro-op to retired once all uops are committable
… constructor. Minor naming convention corrections and added an arbitrary micro-op index value for implementation defined use
…e data identifiers
… getExecutionInfo a public function so it can be used by the micro decoder on newly created micro-operations. Also removed SVE instruction identifier and load/store instruction split flag as both are going to be unused.
…ions from new internal uop buffer. Also duplicated decode unit's internal uop buffer behaviour in emulation core so that it may support multiple micro-operations.
…ve bug whereby the 'front' of the queue would change position when inspecting the state of micro-operations.
…rations flow through the pipeline by providing the data to be stored as an execution rather than a getter at the point of retirement.
…Added execute and address generation logic for ldr 64-bit pre-offset micro-operations.
…helper functions. Also added support for 64-bit immediate post-index load micro-operation.
…low for differing execution flow between store micro-operations.
…operations in the emulation and inorder cores.
…nstruction splitting. Will remove comments before a PR.
…s elements. Also furthered support for LDR/LDP/STR/STP variants in microDecoder.
…support for load and store variants that have differenlty sized destination elements.
…nstrution_decode. Additionally, resolved invalid RAW dependency between LDP unsigned imm uops.
…Works with both micro and macro operations now
…ll addresses are processed before the entry is removed from the request queue.
… correct retired stat from inorder core
…ite access to memory operand
…nt under the LDP micro-op RAW dependency check
…ommitted seperately
jj16791
force-pushed
the
microOp-and-fusion
branch
from
March 28, 2022 20:08
e7e6415
to
a93dd09
Compare
FinnWilkinson
approved these changes
Mar 29, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All looks good
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is primarily concerned with the introduction of micro-operations/instruction splitting. Key developments are: