0

バイトコード命令 IF THEN - ELSE とオプションの ELSE 分岐に対応するコードを生成するにはどうすればよいですか?

たとえば、プログラム If-else.pas は正しいと見なされますが、プログラム If.pas は ELSE 分岐が含まれていないため、正しいとは見なされません。

If-else.pas

var a, b : integer;
begin
    a := 3;
    b := 5;
    if a > b then 
        print(a)
    else 
        print(b)
end

If.pas

var a, b : integer;
begin
    a := 3;
    b := 5;
    if a > b then 
        print(a)
end

だからJasminは私にこのエラーを与えます:

Output.j:62: JAS エラー: ラベル: コードに L11 が追加されていません。

Output.j: 1 件のエラーが見つかりました

私の文法 .g には次のルールがあります。

stmt -> ID := expr
     | print( expr )
     | if( expr ) then ( stmt ) [ else stmt ]?
     | while( expr ) do stmt
     | begin stmt [ ; stmt ]* end

if-else ステートメントについては、次のように書きました。

'if' 
    {
        int lfalse = code.newLabel(); //Generates a new number for the LABEL
        int lnext = lfalse;
    }
    ( expr )
    {
        if($expr.type != Type.BOOLEAN) //Checking the condition is boolean
            throw new IllegalArgumentException("Type error in '( expr )': expr is not a boolean."); 
        code.emit(Opcode.IFEQ, lfalse); //I create the instruction IFEQ L(lfalse)
    }
    'then' s1 = stmt 
    {   
        lnext = code.newLabel(); //Generates a new number for the LABEL
        code.emit(Opcode.GOTO, lnext); //I create the instruction GOTO L(lnext)
        code.emit(Opcode.LABEL, lfalse); //I create the instruction L(lfalse):
    }
    ( 'else' s2 = stmt 
    {       
        code.emit(Opcode.LABEL, lnext); //I create the instruction L(lnext):
    })?

ただし、このように 2 番目のブランチはオプションではなく、常に存在する必要があります。オプションにするにはどうすればよいですか?疑問符 ( ( 'else' s2 = stmt )?) が必要だと思ったのですが、違います。私はANTLRを使用しています。

ありがとう。

Jasmin が生成するバイトコードファイル (.J) が役に立つかどうかわかりませんが、書いておきます。

If-else.j

    ldc 3
    istore 1
    ldc 5
    istore 0
    iload 1
    iload 0
    if_icmpgt L7
    ldc 0
    goto L8
  L7:
    ldc 1
  L8:
    ifeq L4
    iload 1
    invokestatic Output/printInt(I)V
    goto L11
  L4:
    iload 0
    invokestatic Output/printInt(I)V
  L11:
    return 

場合.j

  ldc 3
  istore 1
  ldc 5
  istore 0
  iload 1
  iload 0
  if_icmpgt L7
  ldc 0
  goto L8
L7:
  ldc 1
L8:
  ifeq L4
  iload 1
  invokestatic Output/printInt(I)V
  goto L11
L4:
  return 
4

1 に答える 1

1

ここでの問題は、常に LNEXT へのジャンプを生成しているのに、else 句がない場合はラベル自体を生成しないため、無効なコードが生成されることです。無条件にラベルを生成する必要があります。

私は Antlr に詳しくありませんが、コードの記述方法に基づいて、これが正しい方法であると思われます。

'if' 
    {
        int lfalse = code.newLabel(); //Generates a new number for the LABEL
        int lnext = lfalse;
    }
    ( expr )
    {
        if($expr.type != Type.BOOLEAN) //Checking the condition is boolean
            throw new IllegalArgumentException("Type error in '( expr )': expr is not a boolean."); 
        code.emit(Opcode.IFEQ, lfalse); //I create the instruction IFEQ L(lfalse)
    }
    'then' s1 = stmt 
    {   
        lnext = code.newLabel(); //Generates a new number for the LABEL
        code.emit(Opcode.GOTO, lnext); //I create the instruction GOTO L(lnext)
        code.emit(Opcode.LABEL, lfalse); //I create the instruction L(lfalse):
    }
    ( 'else' s2 = stmt )?
    {       
        code.emit(Opcode.LABEL, lnext); //I create the instruction L(lnext):
    }
于 2014-05-23T16:53:18.283 に答える