Changeset 36170 in vbox for trunk/src/recompiler/tcg/i386
- Timestamp:
- Mar 4, 2011 12:49:02 PM (14 years ago)
- Location:
- trunk/src/recompiler/tcg/i386
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/tcg/i386/tcg-target.c
r36140 r36170 302 302 } 303 303 304 void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)304 static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val) 305 305 { 306 306 if (val != 0) … … 309 309 310 310 #ifdef VBOX 311 void tcg_out_subi(TCGContext *s, int reg, tcg_target_long val)311 static void tcg_out_subi(TCGContext *s, int reg, tcg_target_long val) 312 312 { 313 313 if (val != 0) … … 666 666 break; 667 667 case 0: 668 /* movzbl */ 669 tcg_out_modrm(s, 0xb6 | P_EXT, data_reg, TCG_REG_EAX); 670 break; 668 671 case 1: 672 /* movzwl */ 673 tcg_out_modrm(s, 0xb7 | P_EXT, data_reg, TCG_REG_EAX); 674 break; 669 675 case 2: 670 676 default: … … 961 967 tcg_gen_stack_alignment_check(s); 962 968 # endif 963 964 969 tcg_out8(s, 0xe8); 965 970 tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] - -
trunk/src/recompiler/tcg/i386/tcg-target.h
r36140 r36170 22 22 * THE SOFTWARE. 23 23 */ 24 25 24 #define TCG_TARGET_I386 1 26 25
Note:
See TracChangeset
for help on using the changeset viewer.