translate-all.c (fd479c60f5766f7fb247ad146b9e3c33d03d2055) | translate-all.c (2cd53943115be5118b5b2d4b80ee0a39c94c4f73) |
---|---|
1/* 2 * Host code generation 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 2209 unchanged lines hidden (view full) --- 2218 mmap_unlock(); 2219 /* If current TB was invalidated return to main loop */ 2220 return current_tb_invalidated ? 2 : 1; 2221 } 2222 mmap_unlock(); 2223 return 0; 2224} 2225#endif /* CONFIG_USER_ONLY */ | 1/* 2 * Host code generation 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 2209 unchanged lines hidden (view full) --- 2218 mmap_unlock(); 2219 /* If current TB was invalidated return to main loop */ 2220 return current_tb_invalidated ? 2 : 1; 2221 } 2222 mmap_unlock(); 2223 return 0; 2224} 2225#endif /* CONFIG_USER_ONLY */ |
2226 2227/* This is a wrapper for common code that can not use CONFIG_SOFTMMU */ 2228void tcg_flush_softmmu_tlb(CPUState *cs) 2229{ 2230#ifdef CONFIG_SOFTMMU 2231 tlb_flush(cs); 2232#endif 2233} |
|