Exemplo n.º 1
0
 public StoreParamEmitter(string paramName)
 {
     Emitter = new IOEmitter(paramName);
 }
Exemplo n.º 2
0
 public LoadParamEmitter(string paramName)
 {
     Emitter = new IOEmitter(paramName);
 }
Exemplo n.º 3
0
 public StoreEmitter(
     PointerType targetType,
     PrimitiveRegister addressRegister)
 {
     Emitter = new IOEmitter(targetType, addressRegister);
 }
Exemplo n.º 4
0
 public LoadEmitter(
     PointerType sourceType,
     PrimitiveRegister addressRegister)
 {
     Emitter = new IOEmitter(sourceType, addressRegister);
 }
Exemplo n.º 5
0
 public StoreEmitter(
     PointerType targetType,
     HardwareRegister addressRegister)
 {
     Emitter = new IOEmitter(targetType, addressRegister);
 }
Exemplo n.º 6
0
 public LoadEmitter(
     PointerType sourceType,
     HardwareRegister addressRegister)
 {
     Emitter = new IOEmitter(sourceType, addressRegister);
 }