// The arch is implicit in the Engine. Accepts either a constant like ARM_REG_R0 // or insn.Arm.Operands[0].Reg, or anything that refers to a Register like // insn.X86.SibBase etc // // WARNING: Always returns "" if capstone built with CAPSTONE_DIET func (e *Engine) RegName(reg uint) string { if dietMode { return "" } return C.GoString(C.cs_reg_name(e.handle, C.uint(reg))) }
// The arch is implicit in the Engine. Accepts either a constant like ARM_REG_R0 // or insn.Arm.Operands[0].Reg, or anything that refers to a Register like // insn.X86.SibBase etc func (e Engine) RegName(reg uint) string { return C.GoString(C.cs_reg_name(e.handle, C.uint(reg))) }