Skip to content
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

Ignore the ARM64/PAC instructions as they add no value to the decompition #301

Merged
merged 4 commits into from
Nov 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Implement ldurh instruction for arm64
radare committed Nov 25, 2023
commit bb9e7eadfe2c9e158de194bb292d755bc4fbfd73
3 changes: 3 additions & 0 deletions js/libdec/arch/arm.js
Original file line number Diff line number Diff line change
@@ -938,6 +938,9 @@ var _arm = {
ldurb: function(instr, context) {
return _memory(Base.read_memory, instr, context, '8');
},
ldurh: function(instr, context) {
return _memory(Base.read_memory, instr, context, '16');
},
ldur: function(instr, context) {
return _memory(Base.read_memory, instr, context, '32');
},