|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造函数 | 方法 | 详细信息: 字段 | 构造函数 | 方法 |
java.lang.Objectedu.ustc.cs.compile.arch.x86.X86Register
public class X86Register
Provides a representation of registers for x86.
Following is a list of registers and their representation in this class(which could be used in the form of X86Register.XXX):Instruct.Operand
. To identify an X86 register,
we use the form of "X86Register
.RegName
". The following statement
sequence shows an example of how to declare an register as an assembly instruct operand:
Instruct.Operand
opnd = new
Instruct.Operand
(X86Register.EBX, new Integer(12));
Instruct
to form a complete AT&T X86 assembly instruction.MIPSRegister
字段摘要 | |
---|---|
static X86Register |
CS
X86 Register: %cs |
static X86Register |
DS
X86 Register: %ds |
static X86Register |
EAX
X86 Register: %eax |
static X86Register |
EBP
X86 Register: %ebp |
static X86Register |
EBX
X86 Register: %ebx |
static X86Register |
ECX
X86 Register: %ecx |
static X86Register |
EDI
X86 Register: %edi |
static X86Register |
EDX
X86 Register: %edx |
static X86Register |
ES
X86 Register: %es |
static X86Register |
ESI
X86 Register: %esi |
static X86Register |
ESP
X86 Register: %esp |
static X86Register |
FS
X86 Register: %fs |
static X86Register |
GS
X86 Register: %gs |
static X86Register |
SS
X86 Register: %ss |
构造函数摘要 | |
---|---|
X86Register()
|
方法摘要 | |
---|---|
java.lang.String |
toString()
Returns a string representation of this Register. |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
字段详细信息 |
---|
public static final X86Register EAX
public static final X86Register EBX
public static final X86Register ECX
public static final X86Register EDX
public static final X86Register EDI
public static final X86Register ESI
public static final X86Register EBP
public static final X86Register ESP
public static final X86Register CS
public static final X86Register DS
public static final X86Register ES
public static final X86Register SS
public static final X86Register FS
public static final X86Register GS
构造函数详细信息 |
---|
public X86Register()
方法详细信息 |
---|
public java.lang.String toString()
Register
复制的描述
Register
中的 toString
java.lang.Object
中的 toString
|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造函数 | 方法 | 详细信息: 字段 | 构造函数 | 方法 |