Class ConstructorInfo
- java.lang.Object
-
- ghidra.app.plugin.processors.generic.ConstructorInfo
-
public class ConstructorInfo extends java.lang.Object
Structure for collecting cached information about an instruction
-
-
Field Summary
Fields Modifier and Type Field Description static int
BRANCH_INDIRECT
static int
BRANCH_TO_END
static int
CALL
static int
CALL_INDIRECT
static int
JUMPOUT
static int
NO_FALLTHRU
static int
RETURN
-
Constructor Summary
Constructors Constructor Description ConstructorInfo(int ln, int fl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addLength(int l)
int
getFlowFlags()
int
getLength()
-
-
-
Field Detail
-
RETURN
public static final int RETURN
- See Also:
- Constant Field Values
-
CALL_INDIRECT
public static final int CALL_INDIRECT
- See Also:
- Constant Field Values
-
BRANCH_INDIRECT
public static final int BRANCH_INDIRECT
- See Also:
- Constant Field Values
-
CALL
public static final int CALL
- See Also:
- Constant Field Values
-
JUMPOUT
public static final int JUMPOUT
- See Also:
- Constant Field Values
-
NO_FALLTHRU
public static final int NO_FALLTHRU
- See Also:
- Constant Field Values
-
BRANCH_TO_END
public static final int BRANCH_TO_END
- See Also:
- Constant Field Values
-
-