| 64 | |
| 65 | |
| 66 | void MemStatic::PrintMemoryRegions() { |
| 67 | printf("Memory Regions: \n"); |
| 68 | for (const auto& it : memoryRegions.ranges_) { |
| 69 | MemoryRegion* r = (MemoryRegion*)it.data_; |
| 70 | printf(" %s 0x%llx 0x%llx %s\n", |
| 71 | r->name.c_str(), |
| 72 | r->addr, |
| 73 | r->size, |
| 74 | r->protection.c_str() |
| 75 | ); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | |
| 80 | nlohmann::json MemStatic::ToJson() { |
nothing calls this directly
no outgoing calls
no test coverage detected