src/share/vm/asm/assembler.hpp

changeset 4360
c4bd2eccea46
parent 4356
18d56ca3e901
child 4366
d02120b7a34f
equal deleted inserted replaced
4359:620e502e3f47 4360:c4bd2eccea46
224 void emit_float( jfloat x) { code_section()->emit_float( x); } 224 void emit_float( jfloat x) { code_section()->emit_float( x); }
225 void emit_double( jdouble x) { code_section()->emit_double( x); } 225 void emit_double( jdouble x) { code_section()->emit_double( x); }
226 void emit_address(address x) { code_section()->emit_address(x); } 226 void emit_address(address x) { code_section()->emit_address(x); }
227 227
228 void emit_byte(int x) { emit_int8 (x); } // deprecated 228 void emit_byte(int x) { emit_int8 (x); } // deprecated
229 void emit_word(int x) { emit_int16(x); } // deprecated
230 void emit_long(jint x) { emit_int32(x); } // deprecated 229 void emit_long(jint x) { emit_int32(x); } // deprecated
231 230
232 // Instruction boundaries (required when emitting relocatable values). 231 // Instruction boundaries (required when emitting relocatable values).
233 class InstructionMark: public StackObj { 232 class InstructionMark: public StackObj {
234 private: 233 private:

mercurial