Prohibit unaligned memory accesses on x86/x86_64

前端 未结 3 1721
长情又很酷
长情又很酷 2020-12-14 04:06

I want to emulate the system with prohibited unaligned memory accesses on the x86/x86_64. Is there some debugging tool or special mode to do this?

I want to run many

3条回答
  •  伪装坚强ぢ
    2020-12-14 04:27

    Perhaps you somehow could compile to SSE, with all aligned moves. Unaligned accesses with movaps are illegal and probably would behave as illegal unaligned accesses on other architechtures.

提交回复
热议问题