-
Notifications
You must be signed in to change notification settings - Fork 145
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
PowerPC Support #645
PowerPC Support #645
Conversation
internal context reg mapping
* Modified sleigh patch script to generate patches for multiple .sinc files * update README with new examples of sleigh patch script invocation * add ppc register definition * add ppc sleigh patches * fix issue with remill_insn_size definition * regenerate sleigh patches for PPC * update CMakeLists.txt to include PPC patches
I believe I've addressed everything so far. Any comment that I wasn't sure about or requires a second opinion has been left unresolved. You might have to click the "load more" above to see the comments since there's a lot of activity on this PR. |
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.
lgtm
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.
LGTM, let's get this merged
static std::vector<size_t> CollectIntraProcTransfers(const BlockExit &exit) { | ||
IntraProcTransferCollector collector; | ||
std::visit(collector, exit); | ||
return collector.targets; |
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.
return collector.targets; | |
return std::move(collector.targets); |
I think?
@@ -297,12 +304,17 @@ class SleighLifter::PcodeToLLVMEmitIntoBlock : public PcodeEmit { | |||
// Generic sleigh arch | |||
std::vector<std::string> user_op_names; | |||
|
|||
llvm::BasicBlock *entry_block; |
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.
More in case someone introduces a new ctor and forgets about this attribute.
No description provided.