8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32

Reviewed-by: jrose, kvn, twisti
This commit is contained in:
Morris Meyer 2012-12-20 18:53:44 -08:00 committed by Christian Thalinger
parent fede1f0216
commit 113e9ab39d
9 changed files with 759 additions and 766 deletions

View file

@ -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.