2015-05-22 23:58:56 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Xenia.Debug.Utilities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Xenia.Debug {
|
2015-06-09 06:12:40 +02:00
|
|
|
|
public class MemoryView : Changeable<MemoryView> {
|
2015-05-22 23:58:56 +02:00
|
|
|
|
private readonly Memory memory;
|
|
|
|
|
|
|
|
|
|
|
|
public MemoryView(Memory memory) {
|
2015-06-09 06:12:40 +02:00
|
|
|
|
this.self = this;
|
2015-05-22 23:58:56 +02:00
|
|
|
|
this.memory = memory;
|
|
|
|
|
|
}
|
2015-05-24 22:43:15 +02:00
|
|
|
|
|
|
|
|
|
|
// startAddress
|
|
|
|
|
|
// endAddress
|
|
|
|
|
|
|
|
|
|
|
|
// padding: 2 64k pages on each side?
|
|
|
|
|
|
// history (last N snapshots)
|
|
|
|
|
|
// snapshot on break, or manually
|
|
|
|
|
|
|
|
|
|
|
|
// colored: text on modification
|
|
|
|
|
|
// bg on heap alloc #
|
|
|
|
|
|
// focus details: protection, region, allocation
|
|
|
|
|
|
// stacks for all allocations
|
2015-05-22 23:58:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|