fix missing opcode bindings#1413
Merged
cnheitman merged 3 commits intoJonathanSalwan:dev-v1.0from Jul 23, 2025
Merged
Conversation
Collaborator
|
Hi @redthing1 ! This looks good. In order to merge, please, set the destination branch to JonathanSalwan:dev-v1.0 and make sure to update x86Specifications.cpp, x86Specifications.hpp, too; and add the opcodes to the documentation (comments at the top of initOpcodesNamespace.cpp). |
Owner
|
I've changed the base dst branch, there is only one conflict to fix with |
Contributor
Author
|
conflict is fixed |
mahmoudimus
added a commit
to mahmoudimus/Triton
that referenced
this pull request
Nov 16, 2025
* llvm: make compatible to llvm version >= 17 * Add support for the SETM instruction under aarch64 * Add opcode python bindings for alias class instructions in the AArch64 Architecture * Add unit test for JonathanSalwan#1399 * Try to fix CI * Try to fix CI * make sure initLeaAst does not update the sym engine * Fix VCPKG workflow * Update Python workflow * Add 128-bit support in tritonToLLVM * Fix formatting * Bug fix for 128-bit integer support with LLVM * Create hooking_libc.cpp * Update hooking_libc.cpp * add to cmake * Fix cpp hooking_libc example * Fix missing opcode bindings (JonathanSalwan#1413) * add cstdint include * Implement llvm.fshl.iXX intrinsic ror/rol llvm simplifications get turned into this intrinsic, which caused Triton to crash because of the missing intrinsic. See issue JonathanSalwan#1403 * Triton can be installed using pip Added the right command in the README.md file to install Triton using pip, since `pip install triton` installs an entirely different package. * Minor mods and typos * fix github action --------- Co-authored-by: PerfectLaugh <me@perfectlaugh.info> Co-authored-by: s1nk <gaoyucandev@gmail.com> Co-authored-by: Jonathan Salwan <jonathan.salwan@gmail.com> Co-authored-by: Triton Library <tritonlibrary@gmail.com> Co-authored-by: Christian Heitman <cheitman@quarkslab.com> Co-authored-by: raax7 <142668843+raax7@users.noreply.github.com> Co-authored-by: Selim Sandal <49725809+selimsandal@users.noreply.github.com> Co-authored-by: red thing <redthing1@alt.icu> Co-authored-by: Karl Vogel <karl.vogel@gmail.com> Co-authored-by: gl <gl@hydra> Co-authored-by: Elias Bachaalany <elias.bachaalany@gmail.com> Co-authored-by: cctv130 <chinaxke@gmail.com>
This file contains hidden or 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
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.
a number of opcode bindings were missing for python. i added them.