Searched refs:emit_data (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp68 inline void Assembler::emit_data(int x, relocInfo::relocType rtype) { function in class:Assembler
73 inline void Assembler::emit_data(int x, RelocationHolder const& rspec) { function in class:Assembler
80 inline void Assembler::add(Register s1, int simm13a, Register d, relocInfo::relocType rtype ) { emit_data( op(arith_op) | rd(d) | op3(add_op3) | rs1(s1) | immed(true) | simm(simm13a, 13), rtype ); }
81 inline void Assembler::add(Register s1, int simm13a, Register d, RelocationHolder const& rspec ) { emit_data( op(arith_op) | rd(d) | op3(add_op3) | rs1(s1) | immed(true) | simm(simm13a, 13), rspec ); }
83 inline void Assembler::bpr( RCondition c, bool a, Predict p, Register s1, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(bpr_op2) | wdisp16(intptr_t(d), intptr_t(pc())) | predict(p) | rs1(s1), rt); has_delay_slot(); }
86 inline void Assembler::fb( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fb_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
89 inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fbp_op2) | branchcc(cc) | predict(p) | wdisp(intptr_t(d), intptr_t(pc()), 19), rt); has_delay_slot(); }
92 inline void Assembler::cb( Condition c, bool a, address d, relocInfo::relocType rt ) { v8_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(cb_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
95 inline void Assembler::br( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(br_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
98 inline void Assembler::bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( o
[all...]
H A DstubGenerator_sparc.cpp3465 __ emit_data((intptr_t)cdesc >> 32, relocInfo::none);
3467 __ emit_data((intptr_t)cdesc, relocInfo::none);
3468 __ emit_data(++_stub_count, relocInfo::none);
3481 __ emit_data(0, relocInfo::none);
H A Dassembler_sparc.hpp1220 inline void emit_data(int x) { emit_long(x); } function in class:Assembler
1221 inline void emit_data(int, RelocationHolder const&);
1222 inline void emit_data(int, relocInfo::relocType rtype);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp181 void Assembler::emit_data(jint data, relocInfo::relocType rtype, int format) { function in class:Assembler
184 else emit_data(data, Relocation::spec_simple(rtype), format);
187 void Assembler::emit_data(jint data, RelocationHolder const& rspec, int format) { function in class:Assembler
281 emit_data((intptr_t)obj, relocInfo::oop_type, 0);
328 emit_data(disp, rspec, disp32_operand);
348 emit_data(disp, rspec, disp32_operand);
367 emit_data(disp, rspec, disp32_operand);
378 emit_data(disp, rspec, disp32_operand);
397 emit_data((int32_t) adjusted, rspec, disp32_operand);
405 emit_data(dis
[all...]
H A DstubGenerator_x86_32.cpp2178 __ emit_data(0x00010203, relocInfo::none, 0 );
2179 __ emit_data(0x04050607, relocInfo::none, 0 );
2180 __ emit_data(0x08090a0b, relocInfo::none, 0 );
2181 __ emit_data(0x0c0d0e0f, relocInfo::none, 0 );
H A Dassembler_x86.hpp721 void emit_data(jint data, relocInfo::relocType rtype, int format);
722 void emit_data(jint data, RelocationHolder const& rspec, int format);

Completed in 102 milliseconds