コード例 #1
0
 public string visit(FPRegister n)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: X86_64.cs プロジェクト: jverbraeken/Swift-Compiler
 public override string visit(FPRegister n)
 {
     if (n.Position < 16)
         return "%xmm" + n.Position;
     else
         return null;
 }
コード例 #3
0
 public abstract string visit(FPRegister n);
コード例 #4
0
 public virtual string visit(FPRegister n)
 {
     throw new NotImplementedException("Register is not implemented yet");
     // Do nothing; leave the implementation to the main class
 }