/src/tools/compiler/asm/liberty_asm_instruction_visitor.e
http://github.com/tybor/Liberty · Specman e · 105 lines · 75 code · 16 blank · 14 comment · 0 complexity · 15a206b0217b05b88de6a162374a4850 MD5 · raw file
- -- This file is part of Liberty Eiffel.
- --
- -- Liberty Eiffel is free software: you can redistribute it and/or modify
- -- it under the terms of the GNU General Public License as published by
- -- the Free Software Foundation, version 3 of the License.
- --
- -- Liberty Eiffel is distributed in the hope that it will be useful,
- -- but WITHOUT ANY WARRANTY; without even the implied warranty of
- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- -- GNU General Public License for more details.
- --
- -- You should have received a copy of the GNU General Public License
- -- along with Liberty Eiffel. If not, see <http://www.gnu.org/licenses/>.
- --
- deferred class LIBERTY_ASM_INSTRUCTION_VISITOR
- inherit
- LIBERTY_ASM_VISITOR
- feature {LIBERTY_ASM_INSTRUCTION}
- visit_and (a_instruction: LIBERTY_ASM_AND) is
- require
- a_instruction /= Void
- deferred
- end
- visit_invoke (a_instruction: LIBERTY_ASM_INVOKE) is
- require
- a_instruction /= Void
- deferred
- end
- visit_jump (a_instruction: LIBERTY_ASM_JUMP) is
- require
- a_instruction /= Void
- deferred
- end
- visit_new (a_instruction: LIBERTY_ASM_NEW) is
- require
- a_instruction /= Void
- deferred
- end
- visit_not (a_instruction: LIBERTY_ASM_NOT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_or (a_instruction: LIBERTY_ASM_OR) is
- require
- a_instruction /= Void
- deferred
- end
- visit_return (a_instruction: LIBERTY_ASM_RETURN) is
- require
- a_instruction /= Void
- deferred
- end
- visit_load_int (a_instruction: LIBERTY_ASM_LOAD_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_add_int (a_instruction: LIBERTY_ASM_ADD_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_sub_int (a_instruction: LIBERTY_ASM_SUB_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_mul_int (a_instruction: LIBERTY_ASM_MUL_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_div_int (a_instruction: LIBERTY_ASM_DIV_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_rem_int (a_instruction: LIBERTY_ASM_REM_INT) is
- require
- a_instruction /= Void
- deferred
- end
- visit_call_native (a_instruction: LIBERTY_ASM_CALL_NATIVE) is
- require
- a_instruction /= Void
- deferred
- end
- end -- class LIBERTY_ASM_INSTRUCTION_VISITOR