• This patch removes useless type information in some calls to
    tcg_temp_local_new.  It also removes the parameter from the
    macro declaration;  if a target has to use a specific non-default
    size then it should use tcg_temp_local_new_{i32,i64}.
    
    Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6146 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
     
    Browse Code »
  • Attached patch implements DMA support to RC4030 chipset and simplifies
    jazz IO part (at 0xf0000000), where registers contain 16 bit values.
    Config register has not a clear meaning (only one value is always valid,
    and sometimes another one), so use a magic value instead.
    The patch also wires DMA transfers for the SCSI adapter in the Jazz
    emulation (Mips Magnum 4000 and Acer Pica 61).
    
    Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6145 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
     
    Browse Code »



  • We have been relying on uname to determine the host cpu architecture and
    operating system.  This is totally broken for cross compilation.  It was
    workable in the past because you can manually override both settings but after
    the host USB passthrough refactoring, cross host builds were broken.
    
    This moves the parsing of --cc and --cross-prefix to before the probes for cpu
    and host.  Complation testing is used to determine the host and CPU types.  I've
    only added checks for i386, x86_64, Linux, and Windows since these are the only
    platforms I have access to for testing.  Everything else falls back to uname.
    
    It should be relatively easy to add the right checks for other platforms and
    eliminate uname altogether.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6141 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
     
    Browse Code »