Changeset 33540 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/recompiler
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Makefile.kmk
r29373 r33540 38 38 # 39 39 # This is extended by one of the VBoxREM* modules below. Currently, this 40 # isn't done by inheritance because of some obscure bug wrt inher ting from40 # isn't done by inheritance because of some obscure bug wrt inheriting from 41 41 # unused targets that I'm not going to fix now. 42 42 # -
trunk/src/recompiler/Sun/e_powl-amd64.S
r18083 r33540 1 1 /* ix87 specific implementation of pow function. 2 Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004 Free Software Founda 2 Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004 Free Software Foundation 3 3 This file is part of the GNU C Library. 4 4 Contributed by Ulrich Drepper <[email protected]>, 1996. -
trunk/src/recompiler/Sun/testmath.c
r25528 r33540 278 278 279 279 280 /* Only works in extended precision, while double prec esion is defaulon BSD (including Darwin) */280 /* Only works in extended precision, while double precision is default on BSD (including Darwin) */ 281 281 set_cw(0x37f); 282 282 CHECK(rintl(1.0L), 1.0); … … 419 419 static inline void fpop(void) 420 420 { 421 env->fptags[env->fpstt] = 1; /* inv validate stack entry */421 env->fptags[env->fpstt] = 1; /* invalidate stack entry */ 422 422 env->fpstt = (env->fpstt + 1) & 7; 423 423 } -
trunk/src/recompiler/VBoxREMWrapper.cpp
r33270 r33540 28 28 * On WIN64 we're not aware of any GCC port which can emit code using the MSC 29 29 * calling convention. So, we're in for some real fun here. The choice is between 30 * porting GCC to AMD64 WIN64 and com ming up with some kind of wrapper around30 * porting GCC to AMD64 WIN64 and coming up with some kind of wrapper around 31 31 * either the win32 build or the 64-bit linux build. 32 32 * … … 112 112 * 113 113 * Direction flag is preserved as cleared. 114 * The stack must be aligned on a 16-byte bound rary before the 'call/jmp' instruction.114 * The stack must be aligned on a 16-byte boundary before the 'call/jmp' instruction. 115 115 * 116 116 * … … 140 140 * 141 141 * Dunno what the direction flag is... 142 * The stack must be aligned on a 16-byte bound rary before the 'call/jmp' instruction.142 * The stack must be aligned on a 16-byte boundary before the 'call/jmp' instruction. 143 143 * 144 144 * -
trunk/src/recompiler/VBoxRecompiler.c
r33123 r33540 766 766 767 767 /* 768 * Stop ignoring ignor nable notifications.768 * Stop ignoring ignorable notifications. 769 769 */ 770 770 ASMAtomicDecU32(&pVM->rem.s.cIgnoreAll); … … 1296 1296 * or 32 bits protected mode ring 0 code 1297 1297 * 1298 * The tests are ordered by the likel yhood of being true during normal execution.1298 * The tests are ordered by the likelihood of being true during normal execution. 1299 1299 */ 1300 1300 if (fFlags & (HF_TF_MASK | HF_INHIBIT_IRQ_MASK)) … … 1694 1694 1695 1695 /** 1696 * Record trap occur ance1696 * Record trap occurrence 1697 1697 * 1698 1698 * @returns VBox status code … … 1793 1793 * @remark The caller has to check for important FFs before calling REMR3Run. REMR3State will 1794 1794 * no do this since the majority of the callers don't want any unnecessary of events 1795 * pending that would immediat ly interrupt execution.1795 * pending that would immediately interrupt execution. 1796 1796 */ 1797 1797 REMR3DECL(int) REMR3State(PVM pVM, PVMCPU pVCpu) … … 3790 3790 DISAS_PRINTF("disas error\n"); 3791 3791 cbInstr = 1; 3792 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts suppor ing 64-bit code. */3792 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporting 64-bit code. */ 3793 3793 break; 3794 3794 #endif … … 3971 3971 * @param pVCpuDst The target cpu for this notification. 3972 3972 * TM will not broadcast pending timer events, but use 3973 * a de cidated EMT for them. So, only interrupt REM3973 * a dedicated EMT for them. So, only interrupt REM 3974 3974 * execution if the given CPU is executing in REM. 3975 3975 * @thread Any. … … 4499 4499 * 4500 4500 * @param rc VBox error code. 4501 * @param pszTip Hint about why/when this happen d.4501 * @param pszTip Hint about why/when this happened. 4502 4502 */ 4503 4503 void remAbort(int rc, const char *pszTip) -
trunk/src/recompiler/a.out.h
r2422 r33540 298 298 299 299 #define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000 /* Section contains extended relocations. */ 300 #define IMAGE_SCN_MEM_NOT_CACHED 0x04000000 /* Section is not cach able.*/300 #define IMAGE_SCN_MEM_NOT_CACHED 0x04000000 /* Section is not cacheable. */ 301 301 #define IMAGE_SCN_MEM_NOT_PAGED 0x08000000 /* Section is not pageable. */ 302 302 #define IMAGE_SCN_MEM_SHARED 0x10000000 /* Section is shareable. */ -
trunk/src/recompiler/cpu-all.h
r29250 r33540 1088 1088 #define CPU_INTERRUPT_HALT 0x20 /* CPU halt wanted */ 1089 1089 #define CPU_INTERRUPT_SMI 0x40 /* (x86 only) SMI interrupt pending */ 1090 #define CPU_INTERRUPT_DEBUG 0x80 /* Debug event occur ed. */1090 #define CPU_INTERRUPT_DEBUG 0x80 /* Debug event occurred. */ 1091 1091 #define CPU_INTERRUPT_VIRQ 0x100 /* virtual interrupt pending. */ 1092 1092 #define CPU_INTERRUPT_NMI 0x200 /* NMI pending. */ … … 1193 1193 /* MMIO pages are identified by a combination of an IO device index and 1194 1194 3 flags. The ROMD code stores the page ram offset in iotlb entry, 1195 so only a limited number of ids are avai able. */1195 so only a limited number of ids are available. */ 1196 1196 1197 1197 #define IO_MEM_SHIFT 3 -
trunk/src/recompiler/cpu-defs.h
r17274 r33540 130 130 target_ulong addr_code; 131 131 /* Addend to virtual address to get physical address. IO accesses 132 use the corre cponding iotlb value. */132 use the corresponding iotlb value. */ 133 133 #if TARGET_PHYS_ADDR_BITS == 64 134 134 /* on i386 Linux make sure it is aligned */ -
trunk/src/recompiler/cpu-exec.c
r31460 r33540 350 350 #endif 351 351 { 352 /** @todo: recon scille with what QEMU really does */352 /** @todo: reconcile with what QEMU really does */ 353 353 354 354 /* Single instruction exec request, we execute it and return (one way or the other). … … 803 803 CPU tries to execute code at the magic address. 804 804 This will cause the magic PC value to be pushed to 805 the stack if an interrupt occur ed at the wrong time.805 the stack if an interrupt occurred at the wrong time. 806 806 We avoid this by disabling interrupts when 807 807 pc contains a magic address. */ … … 850 850 } 851 851 #endif 852 /* Don't use the cached inter upt_request value,852 /* Don't use the cached interrupt_request value, 853 853 do_interrupt may have updated the EXITTB flag. */ 854 854 if (env->interrupt_request & CPU_INTERRUPT_EXITTB) { -
trunk/src/recompiler/dyngen-exec.h
r26499 r33540 60 60 61 61 /* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd 62 prior to this and will cause an error in comp liation, conflicting62 prior to this and will cause an error in compilation, conflicting 63 63 with /usr/include/sys/int_types.h, line 75 */ 64 64 #ifndef __sun__ -
trunk/src/recompiler/elf.h
r26499 r33540 639 639 #define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ 640 640 641 /* Additional section ind eces. */642 643 #define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for ten atively declared641 /* Additional section indices. */ 642 643 #define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tentatively declared 644 644 symbols in ANSI C. */ 645 645 #define SHN_PARISC_HUGE_COMMON 0xff01 /* Common blocks in huge model. */ -
trunk/src/recompiler/exec-all.h
r17342 r33540 60 60 61 61 /* Maximum size a TCG op can expand to. This is complicated because a 62 single op may require several host instructions and regi rster reloads.62 single op may require several host instructions and register reloads. 63 63 For now take a wild guess at 128 bytes, which should allow at least 64 64 a couple of fixup instructions per argument. */ -
trunk/src/recompiler/exec.c
r19094 r33540 524 524 525 525 #if defined(CONFIG_USER_ONLY) 526 /* Currently it is not recomm anded to allocate big chunks of data in526 /* Currently it is not recommended to allocate big chunks of data in 527 527 user mode. It will change when a dedicated libc will be used */ 528 528 #define USE_STATIC_CODE_GEN_BUFFER … … 556 556 code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; 557 557 #else 558 /* XXX: needs a justments */558 /* XXX: needs adjustments */ 559 559 code_gen_buffer_size = (unsigned long)(phys_ram_size / 4); 560 560 #endif … … 1697 1697 if (env->singlestep_enabled != enabled) { 1698 1698 env->singlestep_enabled = enabled; 1699 /* must flush all the translated code to avoid inconsist ancies */1699 /* must flush all the translated code to avoid inconsistencies */ 1700 1700 /* XXX: only flush what is necessary */ 1701 1701 tb_flush(env); … … 2393 2393 #if 0 2394 2394 /* called from signal handler: invalidate the code and unprotect the 2395 page. Return TRUE if the fault was succes fully handled. */2395 page. Return TRUE if the fault was successfully handled. */ 2396 2396 int page_unprotect(target_ulong addr, unsigned long pc, void *puc) 2397 2397 { … … 2514 2514 2515 2515 /* modify the flags of a page and invalidate the code if 2516 necessary. The flag PAGE_WRITE_ORG is position ned automatically2516 necessary. The flag PAGE_WRITE_ORG is positioned automatically 2517 2517 depending on PAGE_WRITE */ 2518 2518 void page_set_flags(target_ulong start, target_ulong end, int flags) … … 2580 2580 2581 2581 /* called from signal handler: invalidate the code and unprotect the 2582 page. Return TRUE if the fault was succes fully handled. */2582 page. Return TRUE if the fault was successfully handled. */ 2583 2583 int page_unprotect(target_ulong address, unsigned long pc, void *puc) 2584 2584 { -
trunk/src/recompiler/hostregs_helper.h
r17040 r33540 1 1 /* 2 * Save/restore host regist rs.2 * Save/restore host registers. 3 3 * 4 4 * Copyright (c) 2007 CodeSourcery … … 28 28 */ 29 29 30 /* The GCC global register va irable extension is used to reserve some30 /* The GCC global register variable extension is used to reserve some 31 31 host registers for use by dyngen. However only the core parts of the 32 32 translation engine are compiled with these settings. We must manually -
trunk/src/recompiler/qemu-lock.h
r21831 r33540 30 30 pthread mutexes, and non-NPTL userspace isn't threadsafe anyway. 31 31 In either case a spinlock is probably the wrong kind of lock. 32 Spinlocks are only good if you know an nother CPU has the lock and is32 Spinlocks are only good if you know another CPU has the lock and is 33 33 likely to release it soon. In environments where you have more threads 34 34 than physical CPUs (the extreme case being a single CPU host) a spinlock -
trunk/src/recompiler/softmmu_template.h
r26499 r33540 114 114 /* Load helpers invoked from generated code, and TCG makes an assumption 115 115 that valid value takes the whole register, why gcc after 4.3 may 116 use only lower part of register for smaller types. So force promo ution. */116 use only lower part of register for smaller types. So force promotion. */ 117 117 DATA_TYPE_PROMOTED REGPARM 118 118 glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr, -
trunk/src/recompiler/target-i386/cpu.h
r30862 r33540 136 136 #define ID_MASK 0x00200000 137 137 138 /* hidden flags - used internally by qemu to represent addition nal cpu138 /* hidden flags - used internally by qemu to represent additional cpu 139 139 states. Only the CPL, INHIBIT_IRQ, SMM and SVMI are not redundant. We avoid 140 140 using the IOPL_MASK, TF_MASK and VM_MASK bit position to ease oring … … 254 254 #define MSR_IA32_APICBASE_BASE (0xfffff<<12) 255 255 256 #ifndef MSR_IA32_SYSENTER_CS /* VBox x86.h klu gde */256 #ifndef MSR_IA32_SYSENTER_CS /* VBox x86.h kludge */ 257 257 #define MSR_IA32_SYSENTER_CS 0x174 258 258 #define MSR_IA32_SYSENTER_ESP 0x175 -
trunk/src/recompiler/target-i386/exec.h
r26499 r33540 365 365 #endif 366 366 { 367 env->fptags[env->fpstt] = 1; /* inv validate stack entry */367 env->fptags[env->fpstt] = 1; /* invalidate stack entry */ 368 368 env->fpstt = (env->fpstt + 1) & 7; 369 369 } -
trunk/src/recompiler/target-i386/op_helper.c
r31532 r33540 1030 1030 /* 1031 1031 * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD 1032 * gets confused by see ingingly changed EFLAGS. See #3491 and1032 * gets confused by seemingly changed EFLAGS. See #3491 and 1033 1033 * public bug #2341. 1034 1034 */ … … 1306 1306 /* 1307 1307 * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD 1308 * gets confused by see ingingly changed EFLAGS. See #3491 and1308 * gets confused by seemingly changed EFLAGS. See #3491 and 1309 1309 * public bug #2341. 1310 1310 */ … … 5611 5611 * Reads byte from virtual address in guest memory area. 5612 5612 * XXX: is it working for any addresses? swapped out pages? 5613 * @returns read eddata byte.5613 * @returns read data byte. 5614 5614 * @param env1 CPU environment. 5615 5615 * @param pvAddr GC Virtual address. … … 5628 5628 * Reads byte from virtual address in guest memory area. 5629 5629 * XXX: is it working for any addresses? swapped out pages? 5630 * @returns read eddata byte.5630 * @returns read data byte. 5631 5631 * @param env1 CPU environment. 5632 5632 * @param pvAddr GC Virtual address. … … 5645 5645 * Reads byte from virtual address in guest memory area. 5646 5646 * XXX: is it working for any addresses? swapped out pages? 5647 * @returns read eddata byte.5647 * @returns read data byte. 5648 5648 * @param env1 CPU environment. 5649 5649 * @param pvAddr GC Virtual address. … … 5662 5662 * Writes byte to virtual address in guest memory area. 5663 5663 * XXX: is it working for any addresses? swapped out pages? 5664 * @returns read eddata byte.5664 * @returns read data byte. 5665 5665 * @param env1 CPU environment. 5666 5666 * @param pvAddr GC Virtual address. -
trunk/src/recompiler/target-i386/translate.c
r30413 r33540 1346 1346 1347 1347 /* generate a conditional jump to label 'l1' according to jump opcode 1348 value 'b'. In the fast case, T0 is guarante d not to be used. */1348 value 'b'. In the fast case, T0 is guaranteed not to be used. */ 1349 1349 #ifndef VBOX 1350 1350 static inline void gen_jcc1(DisasContext *s, int cc_op, int b, int l1) … … 2764 2764 } else { 2765 2765 /* slow case: it is more efficient not to generate a jump, 2766 although it is question nable whether this optimization is2766 although it is questionable whether this optimization is 2767 2767 worth to */ 2768 2768 inv = b & 1; -
trunk/src/recompiler/tcg/README
r14542 r33540 425 425 426 426 - Don't hesitate to use helpers for complicated or seldom used target 427 in tructions. There is little performance advantage in using TCG to427 instructions. There is little performance advantage in using TCG to 428 428 implement target instructions taking more than about twenty TCG 429 429 instructions. -
trunk/src/recompiler/tcg/i386/tcg-target.c
r29520 r33540 571 571 int useReg2 = ((index & 3) == 3); 572 572 573 /** @todo: should we make phys add ess accessors fastcalls - probably not a big deal */573 /** @todo: should we make phys address accessors fastcalls - probably not a big deal */ 574 574 /* out parameter (address), note that phys address is always 64-bit */ 575 575 AssertMsg(sizeof(RTGCPHYS) == 8, ("Physical address must be 64-bits, update caller\n")); -
trunk/src/recompiler/tcg/tcg.c
r29511 r33540 47 47 #include "qemu-common.h" 48 48 49 /* Note: the long term plan is to reduce the depend ancies on the QEMU49 /* Note: the long term plan is to reduce the dependencies on the QEMU 50 50 CPU definitions. Currently they are used for qemu_ld/st 51 51 instructions */ … … 61 61 /* 62 62 * Liveness analysis doesn't work well with 32-bit hosts and 64-bit targets, 63 * second element of the register pair to store 64-bit value is cons edered63 * second element of the register pair to store 64-bit value is considered 64 64 * dead, it seems. 65 65 * @todo: fix it in compiler … … 1465 1465 } 1466 1466 1467 /* save globals to their can nonical location and assume they can be1467 /* save globals to their canonical location and assume they can be 1468 1468 modified be the following code. 'allocated_regs' is used in case a 1469 1469 temporary registers needs to be allocated to store a constant. */ -
trunk/src/recompiler/tcg/tcg.h
r29520 r33540 114 114 typedef tcg_target_ulong TCGArg; 115 115 116 /* Define a type and accessor macros for var ables. Using a struct is116 /* Define a type and accessor macros for variables. Using a struct is 117 117 nice because it gives some level of type safely. Ideally the compiler 118 118 be able to see through all this. However in practice this is not true, … … 198 198 unsigned int mem_coherent:1; 199 199 unsigned int mem_allocated:1; 200 unsigned int temp_local:1; /* If true, the temp is saved ac cross200 unsigned int temp_local:1; /* If true, the temp is saved across 201 201 basic blocks. Otherwise, it is not 202 preserved ac cross basic blocks. */202 preserved across basic blocks. */ 203 203 unsigned int temp_allocated:1; /* never used for code gen */ 204 204 /* index of next free temp of same base type, -1 if end */ -
trunk/src/recompiler/tests/qruncom.c
r2426 r33540 275 275 env->regs[R_EDI] = 0xfffe; 276 276 277 /* inform the emulator of the m maped memory */277 /* inform the emulator of the mapped memory */ 278 278 page_set_flags(0x00000000, 0x110000, 279 279 PAGE_WRITE | PAGE_READ | PAGE_EXEC | PAGE_VALID); -
trunk/src/recompiler/tests/test-i386.c
r11982 r33540 2210 2210 2211 2211 /* Force %xmm0 usage to avoid the case where both register index are 0 2212 to test in truction decoding more extensively */2212 to test instruction decoding more extensively */ 2213 2213 #define CVT_OP_XMM2MMX(op)\ 2214 2214 {\ -
trunk/src/recompiler/vl.h
r26499 r33540 573 573 /* the following fields are informative. They are not needed for 574 574 the consistency of the snapshot */ 575 char name[256]; /* user cho osen name */575 char name[256]; /* user chosen name */ 576 576 uint32_t vm_state_size; /* VM state info size */ 577 577 uint32_t date_sec; /* UTC date of the snapshot */ … … 1285 1285 1286 1286 int32_t scsi_send_command(SCSIDevice *s, uint32_t tag, uint8_t *buf, int lun); 1287 /* SCSI data transfers are asynchr nonous. However, unlike the block IO1287 /* SCSI data transfers are asynchronous. However, unlike the block IO 1288 1288 layer the completion routine may be called directly by 1289 1289 scsi_{read,write}_data. */
Note:
See TracChangeset
for help on using the changeset viewer.