#include "xed-decoded-inst.h"
#include "xed3-static-decode.h"
#include "xed3-chain-capture-lu.h"
#include "xed3-op-chain-capture-lu.h"
#include "xed3-dynamic-part1-capture.h"
XED_DLL_EXPORT xed_error_enum_t
xed3_dynamic_decode_part2(xed_decoded_inst_t* d) {
xed_uint32_t inum =
(xed_uint32_t)(d->_inst - xed_inst_table);
xed3_chain_function_t capture_fptr;
capture_fptr = xed3_chain_fptr_lu[inum];
return (*capture_fptr)(d);
}
XED_DLL_EXPORT
xed_error_enum_t xed3_decode_operands(xed_decoded_inst_t* d)
{
xed_uint32_t inum =
(xed_uint32_t)(d->_inst - xed_inst_table);
xed3_chain_function_t capture_fptr;
capture_fptr = xed3_op_chain_fptr_lu[inum];
return (*capture_fptr)(d);
}