Skip to content

Commit 506fb97

Browse files
Start adding runtime memory
1 parent e99af57 commit 506fb97

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

src/ir/runtime-memory.h

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

src/wasm-interpreter.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
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"

0 commit comments

Comments
 (0)