File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2026 WebAssembly Community Group participants
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ #ifndef wasm_ir_runtime_memory_h
18+ #define wasm_ir_runtime_memory_h
19+
20+ #include " wasm.h"
21+
22+ namespace wasm {
23+
24+ // TODO split into pure virtual class
25+ class RuntimeMemory {
26+ RuntimeMemory (Memory memory) : memoryDefinition(memory) {}
27+
28+ // variants for load8 etc?
29+ // Do we care about the order here?
30+ Literal load (Address addr) const { return {}; }
31+
32+ const Memory* getDefinition () const { return &memoryDefinition; }
33+
34+ private:
35+ const Memory memoryDefinition;
36+ };
37+
38+ } // namespace wasm
39+
40+ #endif // wasm_ir_runtime_memory_h
Original file line number Diff line number Diff line change 4141#include " ir/memory-utils.h"
4242#include " ir/module-utils.h"
4343#include " ir/properties.h"
44+ #include " ir/runtime-memory.h"
4445#include " ir/runtime-table.h"
4546#include " ir/table-utils.h"
4647#include " support/bits.h"
You can’t perform that action at this time.
0 commit comments