Searched defs:imm32 (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.inline.hpp50 int imm32 = target - (address) &disp[1]; local
51 *disp = imm32;
H A Dassembler_x86.hpp668 void emit_arith(int op1, int op2, Register dst, int32_t imm32);
670 void emit_arith_imm32(int op1, int op2, Register dst, int32_t imm32);
709 void emit_arith_operand(int op1, Register rm, Address adr, int32_t imm32);
733 void cmp_literal32(Register src1, int32_t imm32, RelocationHolder const& rspec); // 32BIT ONLY
734 void cmp_literal32(Address src1, int32_t imm32, RelocationHolder const& rspec); // 32BIT ONLY
736 void mov_literal32(Register dst, int32_t imm32, RelocationHolder const& rspec); // 32BIT ONLY
737 void mov_literal32(Address dst, int32_t imm32, RelocationHolder const& rspec); // 32BIT ONLY
739 void push_literal32(int32_t imm32, RelocationHolder const& rspec); // 32BIT ONLY
744 void cmp_narrow_oop(Register src1, int32_t imm32, RelocationHolder const& rspec);
745 void cmp_narrow_oop(Address src1, int32_t imm32, RelocationHolde
2504 testptr(Register src, int32_t imm32) argument
[all...]
H A Dassembler_x86.cpp233 void Assembler::emit_arith(int op1, int op2, Register dst, int32_t imm32) { argument
237 if (is8bit(imm32)) {
240 emit_byte(imm32 & 0xFF);
244 emit_long(imm32);
249 void Assembler::emit_arith_imm32(int op1, int op2, Register dst, int32_t imm32) { argument
255 emit_long(imm32);
259 void Assembler::emit_arith_operand(int op1, Register rm, Address adr, int32_t imm32) { argument
262 if (is8bit(imm32)) {
265 emit_byte(imm32 & 0xFF);
269 emit_long(imm32);
902 adcl(Address dst, int32_t imm32) argument
915 adcl(Register dst, int32_t imm32) argument
932 addl(Address dst, int32_t imm32) argument
945 addl(Register dst, int32_t imm32) argument
1081 andl(Address dst, int32_t imm32) argument
1089 andl(Register dst, int32_t imm32) argument
1205 cmpl(Address dst, int32_t imm32) argument
1213 cmpl(Register dst, int32_t imm32) argument
1744 movl(Register dst, int32_t imm32) argument
1763 movl(Address dst, int32_t imm32) argument
2239 orl(Address dst, int32_t imm32) argument
2245 orl(Register dst, int32_t imm32) argument
2525 push(int32_t imm32) argument
2644 sbbl(Address dst, int32_t imm32) argument
2650 sbbl(Register dst, int32_t imm32) argument
2743 subl(Address dst, int32_t imm32) argument
2756 subl(Register dst, int32_t imm32) argument
2762 subl_imm32(Register dst, int32_t imm32) argument
2805 testl(Register dst, int32_t imm32) argument
2874 xorl(Register dst, int32_t imm32) argument
3695 cmp_literal32(Register src1, int32_t imm32, RelocationHolder const& rspec) argument
3703 cmp_literal32(Address src1, int32_t imm32, RelocationHolder const& rspec) argument
4321 mov_literal32(Address dst, int32_t imm32, RelocationHolder const& rspec) argument
4328 mov_literal32(Register dst, int32_t imm32, RelocationHolder const& rspec) argument
4339 push_literal32(int32_t imm32, RelocationHolder const& rspec) argument
4703 adcq(Register dst, int32_t imm32) argument
4720 addq(Address dst, int32_t imm32) argument
4733 addq(Register dst, int32_t imm32) argument
4750 andq(Address dst, int32_t imm32) argument
4758 andq(Register dst, int32_t imm32) argument
4823 cmpq(Address dst, int32_t imm32) argument
4831 cmpq(Register dst, int32_t imm32) argument
5020 mov_narrow_oop(Register dst, int32_t imm32, RelocationHolder const& rspec) argument
5027 mov_narrow_oop(Address dst, int32_t imm32, RelocationHolder const& rspec) argument
5035 cmp_narrow_oop(Register src1, int32_t imm32, RelocationHolder const& rspec) argument
5043 cmp_narrow_oop(Address src1, int32_t imm32, RelocationHolder const& rspec) argument
5112 movslq(Register dst, int32_t imm32) argument
5123 movslq(Address dst, int32_t imm32) argument
5202 orq(Address dst, int32_t imm32) argument
5210 orq(Register dst, int32_t imm32) argument
5337 sbbq(Address dst, int32_t imm32) argument
5343 sbbq(Register dst, int32_t imm32) argument
5393 subq(Address dst, int32_t imm32) argument
5406 subq(Register dst, int32_t imm32) argument
5412 subq_imm32(Register dst, int32_t imm32) argument
5429 testq(Register dst, int32_t imm32) argument
6688 addptr(Register dst, int32_t imm32) argument
6746 andptr(Register dst, int32_t imm32) argument
8851 subptr(Register dst, int32_t imm32) argument
8856 subptr_imm32(Register dst, int32_t imm32) argument
[all...]

Completed in 57 milliseconds