Lines Matching refs:output
49 private output: string; property in AssemblyDumper
55 this.output = "";
65 this.output += ".function any " + this.pg.internalName + "(";
67 this.output += "any a" + i.toString();
69 this.output += ", ";
72 this.output += ") {\n";
84 this.output += "\t";
86 … this.output += node.getMnemonic() + " v" + (<VReg>node.operands[0]).num + ", a" + paramIdx + "\n";
99 this.output += "\t";
100 this.output += node.getMnemonic() + " ";
114 this.output += imm.value.toString();
116 this.output += op;
120 this.output += "\"" + escapedOp + "\"";
128 this.output += "v" + v.num.toString();
135 this.output += this.getLabelName(<Label>op);
140 this.output += ", ";
143 this.output += "\n";
148 this.output += "}\n";
157 this.output += "\n";
162 this.output += ".catchall " + this.getLabelName(labelPair.getBeginLabel()) +
183 this.output += labelName + ":\n";
192 console.log(this.output);