Rizin
unix-like reverse engineering framework and cli tools
capstone.Systemz.UnionOpInfo Class Reference
Inheritance diagram for capstone.Systemz.UnionOpInfo:

Public Member Functions

 UnionOpInfo ()
 
void read ()
 
List getFieldOrder ()
 

Public Attributes

int cc
 
byte op_count
 
Operand[] op
 

Detailed Description

Definition at line 57 of file Systemz.java.

Constructor & Destructor Documentation

◆ UnionOpInfo()

capstone.Systemz.UnionOpInfo.UnionOpInfo ( )
inline

Definition at line 63 of file Systemz.java.

63  {
64  op = new Operand[6];
65  }
Definition: dis.c:32

Member Function Documentation

◆ getFieldOrder()

List capstone.Systemz.UnionOpInfo.getFieldOrder ( )
inline

Definition at line 76 of file Systemz.java.

76  {
77  return Arrays.asList("cc", "op_count", "op");
78  }

◆ read()

void capstone.Systemz.UnionOpInfo.read ( )
inline

Definition at line 67 of file Systemz.java.

67  {
68  readField("cc");
69  readField("op_count");
70  op = new Operand[op_count];
71  if (op_count != 0)
72  readField("op");
73  }

References capstone.Systemz.UnionOpInfo.op_count.

Member Data Documentation

◆ cc

int capstone.Systemz.UnionOpInfo.cc

Definition at line 58 of file Systemz.java.

Referenced by capstone.CsInsn.__gen_detail(), and capstone.Systemz.OpInfo.OpInfo().

◆ op

Operand [] capstone.Systemz.UnionOpInfo.op

Definition at line 61 of file Systemz.java.

Referenced by capstone.Systemz.OpInfo.OpInfo().

◆ op_count

byte capstone.Systemz.UnionOpInfo.op_count

Definition at line 59 of file Systemz.java.

Referenced by capstone.Systemz.UnionOpInfo.read().


The documentation for this class was generated from the following file: