Lines Matching defs:output

72     private final ByteArrayAnnotatedOutput output;
87 * if non-null: the output to write annotations to. No normal
88 * output is written to this.
92 /** if non-null: another possible output for annotations */
98 /** true if output should be consumed during annotation */
127 output = new ByteArrayAnnotatedOutput();
181 * @param prefix {@code null-ok;} prefix to attach to each line of output
182 * @param debugPrint {@code null-ok;} if specified, an alternate output for
185 * @param consume whether to claim to have consumed output for
187 * @return {@code non-null;} encoded output
208 output.writeByte(DBG_SET_PROLOGUE_END);
273 return output.toByteArray();
380 int mark = output.getCursor();
387 output.writeUleb128(line);
390 annotate(output.getCursor() - mark, "line_start: " + line);
413 mark = output.getCursor();
414 output.writeUleb128(szParamTypes);
417 annotate(output.getCursor() - mark,
429 mark = output.getCursor();
463 annotate(output.getCursor() - mark,
622 int mark = output.getCursor();
624 output.writeByte(DBG_RESTART_LOCAL);
628 annotate(output.getCursor() - mark,
649 output.writeUleb128(0);
651 output.writeUleb128(
670 output.writeUleb128(0);
672 output.writeUleb128(
698 int mark = output.getCursor();
700 output.writeByte(DBG_START_LOCAL);
707 annotate(output.getCursor() - mark,
727 int mark = output.getCursor();
729 output.writeByte(DBG_START_LOCAL_EXTENDED);
737 annotate(output.getCursor() - mark,
756 int mark = output.getCursor();
758 output.writeByte(DBG_END_LOCAL);
759 output.writeUleb128(entry.getRegister());
762 annotate(output.getCursor() - mark,
817 output.writeByte(opcode);
859 int mark = output.getCursor();
861 output.writeByte(DBG_ADVANCE_LINE);
862 output.writeSleb128(deltaLines);
866 annotate(output.getCursor() - mark,
883 int mark = output.getCursor();
885 output.writeByte(DBG_ADVANCE_PC);
886 output.writeUleb128(deltaAddress);
890 annotate(output.getCursor() - mark,
914 output.writeUleb128(n);
922 output.writeByte(DBG_END_SEQUENCE);