cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

target_flat.h (701B)


      1/* If your arch needs to do custom stuff, create your own target_flat.h
      2 * header file in linux-user/<your arch>/
      3 */
      4
      5#ifndef LINUX_USER_TARGET_FLAT_H
      6#define LINUX_USER_TARGET_FLAT_H
      7
      8#define flat_argvp_envp_on_stack()                           1
      9#define flat_reloc_valid(reloc, size)                        ((reloc) <= (size))
     10#define flat_old_ram_flag(flag)                              (flag)
     11#define flat_get_relocate_addr(relval)                       (relval)
     12#define flat_get_addr_from_rp(rp, relval, flags, persistent) (rp)
     13#define flat_set_persistent(relval, persistent)              (*persistent)
     14#define flat_put_addr_at_rp(rp, addr, relval)                put_user_ual(addr, rp)
     15
     16#endif