mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 00:54:38 +02:00
8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32
Reviewed-by: jrose, kvn, twisti
This commit is contained in:
parent
fede1f0216
commit
113e9ab39d
9 changed files with 759 additions and 766 deletions
|
@ -109,17 +109,6 @@ void AbstractAssembler::flush() {
|
|||
ICache::invalidate_range(addr_at(0), offset());
|
||||
}
|
||||
|
||||
|
||||
void AbstractAssembler::a_byte(int x) {
|
||||
emit_byte(x);
|
||||
}
|
||||
|
||||
|
||||
void AbstractAssembler::a_long(jint x) {
|
||||
emit_long(x);
|
||||
}
|
||||
|
||||
|
||||
void AbstractAssembler::bind(Label& L) {
|
||||
if (L.is_bound()) {
|
||||
// Assembler can bind a label more than once to the same place.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue