Revert "Make instruction data opaque to runtime (#6470)" (#6564)

This reverts commit 6eeca9c6f1.
This commit is contained in:
Jack May
2019-10-25 16:22:41 -07:00
committed by GitHub
parent 0cfa3d3de7
commit d68e2c4d06
10 changed files with 114 additions and 94 deletions

View File

@@ -13,8 +13,8 @@ use std::{
sync::Mutex,
};
// Data is aligned at the next 64 byte offset. Without alignment loading the memory may
// crash on some architectures.
//Data is aligned at the next 64 byte offset. Without alignment loading the memory may
//crash on some architectures.
macro_rules! align_up {
($addr: expr, $align: expr) => {
($addr + ($align - 1)) & !($align - 1)