1 Star 0 Fork 0

stesen / capstone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MCInstrDesc.c 527 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nguyen Anh Quynh 提交于 2018-07-20 12:36 . merge next to master
/* Capstone Disassembly Engine */
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
#include "MCInstrDesc.h"
/// isPredicate - Set if this is one of the operands that made up of
/// the predicate operand that controls an isPredicable() instruction.
bool MCOperandInfo_isPredicate(const MCOperandInfo *m)
{
return m->Flags & (1 << MCOI_Predicate);
}
/// isOptionalDef - Set if this operand is a optional def.
///
bool MCOperandInfo_isOptionalDef(const MCOperandInfo *m)
{
return m->Flags & (1 << MCOI_OptionalDef);
}
C
1
https://gitee.com/stesen/capstone.git
git@gitee.com:stesen/capstone.git
stesen
capstone
capstone
master

搜索帮助