函数ROL和ROR的目的是什么?对于他们两个,第一个 arg 是int,第二个是byte
我想这是按位移位
] 1秒] 2
查看 IDA 目录\plugins\defs.h。
... // Macros to represent some assembly instructions // Feel free to modify them #define __ROL__(x, y) __rotl__(x, y) // Rotate left #define __ROR__(x, y) __rotr__(x, y) // Rotate right ...
该__rotl__和__rotr__是只为rol和ror说明
__rotl__
__rotr__
rol
ror