Changeset 14702 in vbox
- Timestamp:
- Nov 27, 2008 1:14:53 PM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r14631 r14702 75 75 * Define this to flip the 15usec refresh bit on every read. 76 76 * If not defined, it will be flipped correctly. */ 77 #define FAKE_REFRESH_CLOCK 77 /* #define FAKE_REFRESH_CLOCK */ 78 78 #ifdef DOXYGEN_RUNNING 79 79 # define FAKE_REFRESH_CLOCK -
trunk/src/recompiler_new/Makefile.kmk
r14640 r14702 70 70 # 71 71 $(REM_MOD)_DEFS = IN_REM_R3 REM_INCLUDE_CPU_H 72 #$(REM_MOD)_DEFS += REM_PHYS_ADDR_IN_TLB72 $(REM_MOD)_DEFS += REM_PHYS_ADDR_IN_TLB 73 73 #$(REM_MOD)_DEFS += DEBUG_ALL_LOGGING DEBUG_DISAS DEBUG_PCALL DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging. 74 74 $(REM_MOD)_DEFS.linux = _GNU_SOURCE -
trunk/src/recompiler_new/target-i386/translate.c
r14582 r14702 912 912 tcg_gen_movi_tl(cpu_tmp0, pc); 913 913 tcg_gen_st_tl(cpu_tmp0, cpu_env, offsetof(CPUState, eip)); 914 #ifdef VBOX 915 gen_check_external_event2(); 916 #endif 914 917 } 915 918 … … 1104 1107 tcg_const_i32(next_eip - cur_eip)); 1105 1108 } 1106 #ifdef VBOX1107 gen_check_external_event2(s);1108 #endif /* VBOX */1109 1109 } 1110 1110 … … 2691 2691 int l1, l2, cc_op; 2692 2692 2693 #ifdef VBOX2694 gen_check_external_event(s);2695 #endif /* VBOX */2696 2693 cc_op = s->cc_op; 2697 2694 if (s->cc_op != CC_OP_DYNAMIC) { … … 2700 2697 } 2701 2698 if (s->jmp_opt) { 2699 #ifdef VBOX 2700 gen_check_external_event(s); 2701 #endif /* VBOX */ 2702 2702 l1 = gen_new_label(); 2703 2703 gen_jcc1(s, cc_op, b, l1);
Note:
See TracChangeset
for help on using the changeset viewer.