/[qemu]/qemu/target-i386/op.c
ViewVC logotype

Diff of /qemu/target-i386/op.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.28 by bellard, Sun Jan 9 00:07:04 2005 UTC revision 1.29 by bellard, Sun Jan 23 20:46:09 2005 UTC
# Line 1198  void OPPROTO op_movl_crN_T0(void) Line 1198  void OPPROTO op_movl_crN_T0(void)
1198      helper_movl_crN_T0(PARAM1);      helper_movl_crN_T0(PARAM1);
1199  }  }
1200    
1201    void OPPROTO op_movtl_T0_cr8(void)
1202    {
1203    #if !defined(CONFIG_USER_ONLY)
1204        T0 = cpu_get_apic_tpr(env);
1205    #endif
1206    }
1207    
1208  /* DR registers access */  /* DR registers access */
1209  void OPPROTO op_movl_drN_T0(void)  void OPPROTO op_movl_drN_T0(void)
1210  {  {
# Line 1279  void OPPROTO op_jnz_T0_label(void) Line 1286  void OPPROTO op_jnz_T0_label(void)
1286  {  {
1287      if (T0)      if (T0)
1288          GOTO_LABEL_PARAM(1);          GOTO_LABEL_PARAM(1);
1289        FORCE_RET();
1290  }  }
1291    
1292  void OPPROTO op_jz_T0_label(void)  void OPPROTO op_jz_T0_label(void)
1293  {  {
1294      if (!T0)      if (!T0)
1295          GOTO_LABEL_PARAM(1);          GOTO_LABEL_PARAM(1);
1296        FORCE_RET();
1297  }  }
1298    
1299  /* slow set cases (compute x86 flags) */  /* slow set cases (compute x86 flags) */

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26