mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
6667042: PrintAssembly option does not work without special plugin
Remove old private plugin interface, simplify, rework old plugin to use unchanged Gnu sources Reviewed-by: kvn, rasbold
This commit is contained in:
parent
0530e0d854
commit
0d27a8639f
43 changed files with 1675 additions and 629 deletions
|
@ -59,6 +59,7 @@ class outputStream : public ResourceObj {
|
|||
int indentation() const { return _indentation; }
|
||||
void set_indentation(int i) { _indentation = i; }
|
||||
void fill_to(int col);
|
||||
void move_to(int col, int slop = 6, int min_space = 2);
|
||||
|
||||
// sizing
|
||||
int width() const { return _width; }
|
||||
|
@ -78,7 +79,7 @@ class outputStream : public ResourceObj {
|
|||
void print_raw_cr(const char* str) { write(str, strlen(str)); cr(); }
|
||||
void print_raw_cr(const char* str, int len){ write(str, len); cr(); }
|
||||
void put(char ch);
|
||||
void sp();
|
||||
void sp(int count = 1);
|
||||
void cr();
|
||||
void bol() { if (_position > 0) cr(); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue