| 1147 | } |
| 1148 | |
| 1149 | Byte Memory::raw_load(bool local, unsigned bid, const expr &offset) const { |
| 1150 | auto &block = (local ? local_block_val : non_local_block_val)[bid].val; |
| 1151 | return {*this, ::raw_load(block, offset) }; |
| 1152 | } |
| 1153 | |
| 1154 | vector<Byte> Memory::load(const Pointer &ptr, unsigned bytes, set<expr> &undef, |
| 1155 | uint64_t align, bool left2right, DataType type) { |
no test coverage detected