⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instruction.java

📁 用Java实现的编译器。把源代码编译成SPARC汇编程序
💻 JAVA
字号:
// $Id: Instruction.java,v 1.5 1999/10/06 03:40:00 deberg Exp $package java6035.tools.IR;/** * Instruction class represents a statement or instruction in your program. * There are several forms of instructions in this package: * * <PRE> * assignment instrs         SimpleInstr class * expression statement      SimpleInstr class * branch instrs             BranchInstr class * label instr               LabelInstr  class * return instr              ReturnInstr class * </PRE> */public abstract class Instruction extends TreeNode {    public String PPrint(int indent, boolean recursive)    {        String output = new String();        for(int i=0;i<indent;i++) output += " ";        output += "PPrint of instructions not supported\n";        return output;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -