(static_bump)
| 223 | |
| 224 | |
| 225 | def set_memory(static_bump): |
| 226 | stack_low = align_memory(settings.GLOBAL_BASE + static_bump) |
| 227 | stack_high = align_memory(stack_low + settings.STACK_SIZE) |
| 228 | settings.STACK_HIGH = stack_high |
| 229 | settings.STACK_LOW = stack_low |
| 230 | settings.HEAP_BASE = align_memory(stack_high) |
| 231 | |
| 232 | |
| 233 | def report_missing_exports_wasm_only(metadata): |
nothing calls this directly
no test coverage detected