Ejemplo n.º 1
0
 public Operand AllocateVirtualRegisterObject()
 {
     return(VirtualRegisters.Allocate(O));
 }
Ejemplo n.º 2
0
 public Operand AllocateVirtualRegisterR8()
 {
     return(VirtualRegisters.Allocate(R8));
 }
Ejemplo n.º 3
0
 public Operand AllocateVirtualRegister32()
 {
     return(VirtualRegisters.Allocate(I4));
 }
Ejemplo n.º 4
0
 public Operand AllocateVirtualRegister64()
 {
     return(VirtualRegisters.Allocate(I8));
 }
Ejemplo n.º 5
0
 public Operand AllocateVirtualRegister(MosaType type)
 {
     return(VirtualRegisters.Allocate(type));
 }