VirtualBox

Changeset 33540 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Oct 28, 2010 9:27:05 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
67140
Message:

*: spelling fixes, thanks Timeless!

Location:
trunk/src/recompiler
Files:
27 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/Makefile.kmk

    r29373 r33540  
    3838#
    3939# This is extended by one of the VBoxREM* modules below.  Currently, this
    40 # isn't done by inheritance because of some obscure bug wrt inherting from
     40# isn't done by inheritance because of some obscure bug wrt inheriting from
    4141# unused targets that I'm not going to fix now.
    4242#
  • trunk/src/recompiler/Sun/e_powl-amd64.S

    r18083 r33540  
    11/* 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
    33   This file is part of the GNU C Library.
    44   Contributed by Ulrich Drepper <[email protected]>, 1996.
  • trunk/src/recompiler/Sun/testmath.c

    r25528 r33540  
    278278
    279279
    280     /* Only works in extended precision, while double precesion is defaul on BSD (including Darwin) */
     280    /* Only works in extended precision, while double precision is default on BSD (including Darwin) */
    281281    set_cw(0x37f);
    282282    CHECK(rintl(1.0L), 1.0);
     
    419419static inline void fpop(void)
    420420{
    421     env->fptags[env->fpstt] = 1; /* invvalidate stack entry */
     421    env->fptags[env->fpstt] = 1; /* invalidate stack entry */
    422422    env->fpstt = (env->fpstt + 1) & 7;
    423423}
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r33270 r33540  
    2828 * On WIN64 we're not aware of any GCC port which can emit code using the MSC
    2929 * calling convention. So, we're in for some real fun here. The choice is between
    30  * porting GCC to AMD64 WIN64 and comming up with some kind of wrapper around
     30 * porting GCC to AMD64 WIN64 and coming up with some kind of wrapper around
    3131 * either the win32 build or the 64-bit linux build.
    3232 *
     
    112112 *
    113113 * Direction flag is preserved as cleared.
    114  * The stack must be aligned on a 16-byte boundrary before the 'call/jmp' instruction.
     114 * The stack must be aligned on a 16-byte boundary before the 'call/jmp' instruction.
    115115 *
    116116 *
     
    140140 *
    141141 * Dunno what the direction flag is...
    142  * The stack must be aligned on a 16-byte boundrary before the 'call/jmp' instruction.
     142 * The stack must be aligned on a 16-byte boundary before the 'call/jmp' instruction.
    143143 *
    144144 *
  • trunk/src/recompiler/VBoxRecompiler.c

    r33123 r33540  
    766766
    767767    /*
    768      * Stop ignoring ignornable notifications.
     768     * Stop ignoring ignorable notifications.
    769769     */
    770770    ASMAtomicDecU32(&pVM->rem.s.cIgnoreAll);
     
    12961296     * or 32 bits protected mode ring 0 code
    12971297     *
    1298      * The tests are ordered by the likelyhood of being true during normal execution.
     1298     * The tests are ordered by the likelihood of being true during normal execution.
    12991299     */
    13001300    if (fFlags & (HF_TF_MASK | HF_INHIBIT_IRQ_MASK))
     
    16941694
    16951695/**
    1696  * Record trap occurance
     1696 * Record trap occurrence
    16971697 *
    16981698 * @returns VBox status code
     
    17931793 * @remark  The caller has to check for important FFs before calling REMR3Run. REMR3State will
    17941794 *          no do this since the majority of the callers don't want any unnecessary of events
    1795  *          pending that would immediatly interrupt execution.
     1795 *          pending that would immediately interrupt execution.
    17961796 */
    17971797REMR3DECL(int)  REMR3State(PVM pVM, PVMCPU pVCpu)
     
    37903790                DISAS_PRINTF("disas error\n");
    37913791                cbInstr = 1;
    3792 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporing 64-bit code. */
     3792#ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporting 64-bit code. */
    37933793                break;
    37943794#endif
     
    39713971 * @param   pVCpuDst        The target cpu for this notification.
    39723972 *                          TM will not broadcast pending timer events, but use
    3973  *                          a decidated EMT for them. So, only interrupt REM
     3973 *                          a dedicated EMT for them. So, only interrupt REM
    39743974 *                          execution if the given CPU is executing in REM.
    39753975 * @thread  Any.
     
    44994499 *
    45004500 * @param   rc      VBox error code.
    4501  * @param   pszTip  Hint about why/when this happend.
     4501 * @param   pszTip  Hint about why/when this happened.
    45024502 */
    45034503void remAbort(int rc, const char *pszTip)
  • trunk/src/recompiler/a.out.h

    r2422 r33540  
    298298
    299299#define IMAGE_SCN_LNK_NRELOC_OVFL            0x01000000  /* Section contains extended relocations. */
    300 #define IMAGE_SCN_MEM_NOT_CACHED             0x04000000  /* Section is not cachable.               */
     300#define IMAGE_SCN_MEM_NOT_CACHED             0x04000000  /* Section is not cacheable.              */
    301301#define IMAGE_SCN_MEM_NOT_PAGED              0x08000000  /* Section is not pageable.               */
    302302#define IMAGE_SCN_MEM_SHARED                 0x10000000  /* Section is shareable.                  */
  • trunk/src/recompiler/cpu-all.h

    r29250 r33540  
    10881088#define CPU_INTERRUPT_HALT   0x20 /* CPU halt wanted */
    10891089#define CPU_INTERRUPT_SMI    0x40 /* (x86 only) SMI interrupt pending */
    1090 #define CPU_INTERRUPT_DEBUG  0x80 /* Debug event occured.  */
     1090#define CPU_INTERRUPT_DEBUG  0x80 /* Debug event occurred.  */
    10911091#define CPU_INTERRUPT_VIRQ   0x100 /* virtual interrupt pending.  */
    10921092#define CPU_INTERRUPT_NMI    0x200 /* NMI pending. */
     
    11931193/* MMIO pages are identified by a combination of an IO device index and
    11941194   3 flags.  The ROMD code stores the page ram offset in iotlb entry,
    1195    so only a limited number of ids are avaiable.  */
     1195   so only a limited number of ids are available.  */
    11961196
    11971197#define IO_MEM_SHIFT       3
  • trunk/src/recompiler/cpu-defs.h

    r17274 r33540  
    130130    target_ulong addr_code;
    131131      /* Addend to virtual address to get physical address.  IO accesses
    132        use the correcponding iotlb value.  */
     132       use the corresponding iotlb value.  */
    133133#if TARGET_PHYS_ADDR_BITS == 64
    134134    /* on i386 Linux make sure it is aligned */
  • trunk/src/recompiler/cpu-exec.c

    r31460 r33540  
    350350#endif
    351351                {
    352                     /** @todo: reconscille with what QEMU really does */
     352                    /** @todo: reconcile with what QEMU really does */
    353353
    354354                    /* Single instruction exec request, we execute it and return (one way or the other).
     
    803803                       CPU tries to execute code at the magic address.
    804804                       This will cause the magic PC value to be pushed to
    805                        the stack if an interrupt occured at the wrong time.
     805                       the stack if an interrupt occurred at the wrong time.
    806806                       We avoid this by disabling interrupts when
    807807                       pc contains a magic address.  */
     
    850850                    }
    851851#endif
    852                    /* Don't use the cached interupt_request value,
     852                   /* Don't use the cached interrupt_request value,
    853853                      do_interrupt may have updated the EXITTB flag. */
    854854                    if (env->interrupt_request & CPU_INTERRUPT_EXITTB) {
  • trunk/src/recompiler/dyngen-exec.h

    r26499 r33540  
    6060
    6161/* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd
    62    prior to this and will cause an error in compliation, conflicting
     62   prior to this and will cause an error in compilation, conflicting
    6363   with /usr/include/sys/int_types.h, line 75 */
    6464#ifndef __sun__
  • trunk/src/recompiler/elf.h

    r26499 r33540  
    639639#define EFA_PARISC_2_0              0x0214 /* PA-RISC 2.0 big-endian.  */
    640640
    641 /* Additional section indeces.  */
    642 
    643 #define SHN_PARISC_ANSI_COMMON  0xff00     /* Section for tenatively declared
     641/* Additional section indices.  */
     642
     643#define SHN_PARISC_ANSI_COMMON  0xff00     /* Section for tentatively declared
    644644                                              symbols in ANSI C.  */
    645645#define SHN_PARISC_HUGE_COMMON  0xff01     /* Common blocks in huge model.  */
  • trunk/src/recompiler/exec-all.h

    r17342 r33540  
    6060
    6161/* Maximum size a TCG op can expand to.  This is complicated because a
    62    single op may require several host instructions and regirster reloads.
     62   single op may require several host instructions and register reloads.
    6363   For now take a wild guess at 128 bytes, which should allow at least
    6464   a couple of fixup instructions per argument.  */
  • trunk/src/recompiler/exec.c

    r19094 r33540  
    524524
    525525#if defined(CONFIG_USER_ONLY)
    526 /* Currently it is not recommanded to allocate big chunks of data in
     526/* Currently it is not recommended to allocate big chunks of data in
    527527   user mode. It will change when a dedicated libc will be used */
    528528#define USE_STATIC_CODE_GEN_BUFFER
     
    556556        code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE;
    557557#else
    558         /* XXX: needs ajustments */
     558        /* XXX: needs adjustments */
    559559        code_gen_buffer_size = (unsigned long)(phys_ram_size / 4);
    560560#endif
     
    16971697    if (env->singlestep_enabled != enabled) {
    16981698        env->singlestep_enabled = enabled;
    1699         /* must flush all the translated code to avoid inconsistancies */
     1699        /* must flush all the translated code to avoid inconsistencies */
    17001700        /* XXX: only flush what is necessary */
    17011701        tb_flush(env);
     
    23932393#if 0
    23942394/* called from signal handler: invalidate the code and unprotect the
    2395    page. Return TRUE if the fault was succesfully handled. */
     2395   page. Return TRUE if the fault was successfully handled. */
    23962396int page_unprotect(target_ulong addr, unsigned long pc, void *puc)
    23972397{
     
    25142514
    25152515/* modify the flags of a page and invalidate the code if
    2516    necessary. The flag PAGE_WRITE_ORG is positionned automatically
     2516   necessary. The flag PAGE_WRITE_ORG is positioned automatically
    25172517   depending on PAGE_WRITE */
    25182518void page_set_flags(target_ulong start, target_ulong end, int flags)
     
    25802580
    25812581/* called from signal handler: invalidate the code and unprotect the
    2582    page. Return TRUE if the fault was succesfully handled. */
     2582   page. Return TRUE if the fault was successfully handled. */
    25832583int page_unprotect(target_ulong address, unsigned long pc, void *puc)
    25842584{
  • trunk/src/recompiler/hostregs_helper.h

    r17040 r33540  
    11/*
    2  *  Save/restore host registrs.
     2 *  Save/restore host registers.
    33 *
    44 *  Copyright (c) 2007 CodeSourcery
     
    2828 */
    2929
    30 /* The GCC global register vairable extension is used to reserve some
     30/* The GCC global register variable extension is used to reserve some
    3131   host registers for use by dyngen.  However only the core parts of the
    3232   translation engine are compiled with these settings.  We must manually
  • trunk/src/recompiler/qemu-lock.h

    r21831 r33540  
    3030   pthread mutexes, and non-NPTL userspace isn't threadsafe anyway.
    3131   In either case a spinlock is probably the wrong kind of lock.
    32    Spinlocks are only good if you know annother CPU has the lock and is
     32   Spinlocks are only good if you know another CPU has the lock and is
    3333   likely to release it soon.  In environments where you have more threads
    3434   than physical CPUs (the extreme case being a single CPU host) a spinlock
  • trunk/src/recompiler/softmmu_template.h

    r26499 r33540  
    114114/* Load helpers invoked from generated code, and TCG makes an assumption
    115115   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 promoution. */
     116   use only lower part of register for smaller types. So force promotion. */
    117117DATA_TYPE_PROMOTED REGPARM
    118118glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
  • trunk/src/recompiler/target-i386/cpu.h

    r30862 r33540  
    136136#define ID_MASK                 0x00200000
    137137
    138 /* hidden flags - used internally by qemu to represent additionnal cpu
     138/* hidden flags - used internally by qemu to represent additional cpu
    139139   states. Only the CPL, INHIBIT_IRQ, SMM and SVMI are not redundant. We avoid
    140140   using the IOPL_MASK, TF_MASK and VM_MASK bit position to ease oring
     
    254254#define MSR_IA32_APICBASE_BASE          (0xfffff<<12)
    255255
    256 #ifndef MSR_IA32_SYSENTER_CS /* VBox x86.h klugde */
     256#ifndef MSR_IA32_SYSENTER_CS /* VBox x86.h kludge */
    257257#define MSR_IA32_SYSENTER_CS            0x174
    258258#define MSR_IA32_SYSENTER_ESP           0x175
  • trunk/src/recompiler/target-i386/exec.h

    r26499 r33540  
    365365#endif
    366366{
    367     env->fptags[env->fpstt] = 1; /* invvalidate stack entry */
     367    env->fptags[env->fpstt] = 1; /* invalidate stack entry */
    368368    env->fpstt = (env->fpstt + 1) & 7;
    369369}
  • trunk/src/recompiler/target-i386/op_helper.c

    r31532 r33540  
    10301030     /*
    10311031     * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD
    1032      * gets confused by seeingingly changed EFLAGS. See #3491 and
     1032     * gets confused by seemingly changed EFLAGS. See #3491 and
    10331033     * public bug #2341.
    10341034     */
     
    13061306    /*
    13071307     * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD
    1308      * gets confused by seeingingly changed EFLAGS. See #3491 and
     1308     * gets confused by seemingly changed EFLAGS. See #3491 and
    13091309     * public bug #2341.
    13101310     */
     
    56115611 * Reads byte from virtual address in guest memory area.
    56125612 * XXX: is it working for any addresses? swapped out pages?
    5613  * @returns readed data byte.
     5613 * @returns read data byte.
    56145614 * @param   env1    CPU environment.
    56155615 * @param   pvAddr  GC Virtual address.
     
    56285628 * Reads byte from virtual address in guest memory area.
    56295629 * XXX: is it working for any addresses? swapped out pages?
    5630  * @returns readed data byte.
     5630 * @returns read data byte.
    56315631 * @param   env1    CPU environment.
    56325632 * @param   pvAddr  GC Virtual address.
     
    56455645 * Reads byte from virtual address in guest memory area.
    56465646 * XXX: is it working for any addresses? swapped out pages?
    5647  * @returns readed data byte.
     5647 * @returns read data byte.
    56485648 * @param   env1    CPU environment.
    56495649 * @param   pvAddr  GC Virtual address.
     
    56625662 * Writes byte to virtual address in guest memory area.
    56635663 * XXX: is it working for any addresses? swapped out pages?
    5664  * @returns readed data byte.
     5664 * @returns read data byte.
    56655665 * @param   env1    CPU environment.
    56665666 * @param   pvAddr  GC Virtual address.
  • trunk/src/recompiler/target-i386/translate.c

    r30413 r33540  
    13461346
    13471347/* generate a conditional jump to label 'l1' according to jump opcode
    1348    value 'b'. In the fast case, T0 is guaranted not to be used. */
     1348   value 'b'. In the fast case, T0 is guaranteed not to be used. */
    13491349#ifndef VBOX
    13501350static inline void gen_jcc1(DisasContext *s, int cc_op, int b, int l1)
     
    27642764    } else {
    27652765        /* slow case: it is more efficient not to generate a jump,
    2766            although it is questionnable whether this optimization is
     2766           although it is questionable whether this optimization is
    27672767           worth to */
    27682768        inv = b & 1;
  • trunk/src/recompiler/tcg/README

    r14542 r33540  
    425425
    426426- Don't hesitate to use helpers for complicated or seldom used target
    427   intructions. There is little performance advantage in using TCG to
     427  instructions. There is little performance advantage in using TCG to
    428428  implement target instructions taking more than about twenty TCG
    429429  instructions.
  • trunk/src/recompiler/tcg/i386/tcg-target.c

    r29520 r33540  
    571571    int useReg2 = ((index & 3) == 3);
    572572
    573     /** @todo:  should we make phys addess accessors fastcalls - probably not a big deal */
     573    /** @todo:  should we make phys address accessors fastcalls - probably not a big deal */
    574574    /* out parameter (address), note that phys address is always 64-bit */
    575575    AssertMsg(sizeof(RTGCPHYS) == 8, ("Physical address must be 64-bits, update caller\n"));
  • trunk/src/recompiler/tcg/tcg.c

    r29511 r33540  
    4747#include "qemu-common.h"
    4848
    49 /* Note: the long term plan is to reduce the dependancies on the QEMU
     49/* Note: the long term plan is to reduce the dependencies on the QEMU
    5050   CPU definitions. Currently they are used for qemu_ld/st
    5151   instructions */
     
    6161/*
    6262 * 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 consedered
     63 * second element of the register pair to store 64-bit value is considered
    6464 * dead, it seems.
    6565 * @todo: fix it in compiler
     
    14651465}
    14661466
    1467 /* save globals to their cannonical location and assume they can be
     1467/* save globals to their canonical location and assume they can be
    14681468   modified be the following code. 'allocated_regs' is used in case a
    14691469   temporary registers needs to be allocated to store a constant. */
  • trunk/src/recompiler/tcg/tcg.h

    r29520 r33540  
    114114typedef tcg_target_ulong TCGArg;
    115115
    116 /* Define a type and accessor macros for varables.  Using a struct is
     116/* Define a type and accessor macros for variables.  Using a struct is
    117117   nice because it gives some level of type safely.  Ideally the compiler
    118118   be able to see through all this.  However in practice this is not true,
     
    198198    unsigned int mem_coherent:1;
    199199    unsigned int mem_allocated:1;
    200     unsigned int temp_local:1; /* If true, the temp is saved accross
     200    unsigned int temp_local:1; /* If true, the temp is saved across
    201201                                  basic blocks. Otherwise, it is not
    202                                   preserved accross basic blocks. */
     202                                  preserved across basic blocks. */
    203203    unsigned int temp_allocated:1; /* never used for code gen */
    204204    /* index of next free temp of same base type, -1 if end */
  • trunk/src/recompiler/tests/qruncom.c

    r2426 r33540  
    275275    env->regs[R_EDI] = 0xfffe;
    276276
    277     /* inform the emulator of the mmaped memory */
     277    /* inform the emulator of the mapped memory */
    278278    page_set_flags(0x00000000, 0x110000,
    279279                   PAGE_WRITE | PAGE_READ | PAGE_EXEC | PAGE_VALID);
  • trunk/src/recompiler/tests/test-i386.c

    r11982 r33540  
    22102210
    22112211/* Force %xmm0 usage to avoid the case where both register index are 0
    2212    to test intruction decoding more extensively */
     2212   to test instruction decoding more extensively */
    22132213#define CVT_OP_XMM2MMX(op)\
    22142214{\
  • trunk/src/recompiler/vl.h

    r26499 r33540  
    573573    /* the following fields are informative. They are not needed for
    574574       the consistency of the snapshot */
    575     char name[256]; /* user choosen name */
     575    char name[256]; /* user chosen name */
    576576    uint32_t vm_state_size; /* VM state info size */
    577577    uint32_t date_sec; /* UTC date of the snapshot */
     
    12851285
    12861286int32_t scsi_send_command(SCSIDevice *s, uint32_t tag, uint8_t *buf, int lun);
    1287 /* SCSI data transfers are asynchrnonous.  However, unlike the block IO
     1287/* SCSI data transfers are asynchronous.  However, unlike the block IO
    12881288   layer the completion routine may be called directly by
    12891289   scsi_{read,write}_data.  */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette