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

remove_muldiv64.cocci (89B)


      1// replace muldiv64(a, 1, b) by "a / b"
      2@@
      3expression a, b;
      4@@
      5-muldiv64(a, 1, b)
      6+a / b