Browse Source

Dead code

Fabian 3 years ago
parent
commit
0db7ab6505
1 changed files with 0 additions and 23 deletions
  1. 0 23
      src/rust/cpu/cpu.rs

+ 0 - 23
src/rust/cpu/cpu.rs

@@ -268,7 +268,6 @@ pub const TSC_RATE: f64 = 1_000_000.0;
 
 pub static mut jit_block_boundary: bool = false;
 
-pub static mut must_not_fault: bool = false;
 pub static mut rdtsc_imprecision_offset: u64 = 0;
 pub static mut rdtsc_last_value: u64 = 0;
 pub static mut tsc_offset: u64 = 0;
@@ -2043,13 +2042,6 @@ pub unsafe fn trigger_pagefault_jit(fault: PageFault) {
         );
         dbg_trace();
     }
-    if DEBUG {
-        if must_not_fault {
-            dbg_log!("Unexpected page fault");
-            dbg_trace();
-            dbg_assert!(false);
-        }
-    }
     profiler::stat_increment(PAGE_FAULT);
     *cr.offset(2) = addr;
     // invalidate tlb entry
@@ -2121,13 +2113,6 @@ pub unsafe fn trigger_pagefault(fault: PageFault) {
         );
         dbg_trace();
     }
-    if DEBUG {
-        if must_not_fault {
-            dbg_log!("Unexpected page fault");
-            dbg_trace();
-            dbg_assert!(false);
-        }
-    }
     profiler::stat_increment(PAGE_FAULT);
     *cr.offset(2) = addr;
     // invalidate tlb entry
@@ -2795,14 +2780,6 @@ pub unsafe fn cycle_internal() {
                 }
             }
 
-            if DEBUG {
-                dbg_assert!(!must_not_fault);
-                must_not_fault = true
-            }
-            if DEBUG {
-                dbg_assert!(must_not_fault);
-                must_not_fault = false
-            }
             let initial_instruction_counter = *instruction_counter;
             jit_run_interpreted(phys_addr as i32);