From cb7b403210f13e721739d58dab9000ec51ed2d0a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 25 Feb 2019 00:26:48 -0800 Subject: 4989 --- html/subx/039debug.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/subx/039debug.cc.html') diff --git a/html/subx/039debug.cc.html b/html/subx/039debug.cc.html index 548a2d5d..3ea1126f 100644 --- a/html/subx/039debug.cc.html +++ b/html/subx/039debug.cc.html @@ -81,7 +81,7 @@ if ('onhashchange' in window) { 22 23 :(after "Run One Instruction") 24 if (contains_key(Symbol_name, EIP)) -25 trace(90, "run") << "== label " << get(Symbol_name, EIP) << end(); +25 trace(Callstack_depth, "run") << "== label " << get(Symbol_name, EIP) << end(); 26 27 //: If a label starts with '$watch-', make a note of the effective address 28 //: computed by the next instruction. Start dumping out its contents to the @@ -96,9 +96,9 @@ if ('onhashchange' in window) { 37 :(code) 38 void dump_watch_points() { 39 if (Watch_points.empty()) return; -40 dbg << "watch points:" << end(); +40 dbg << "watch points:" << end(); 41 for (map<string, uint32_t>::iterator p = Watch_points.begin(); p != Watch_points.end(); ++p) -42 dbg << " " << p->first << ": " << HEXWORD << p->second << " -> " << HEXWORD << read_mem_u32(p->second) << end(); +42 dbg << " " << p->first << ": " << HEXWORD << p->second << " -> " << HEXWORD << read_mem_u32(p->second) << end(); 43 } 44 45 :(before "End Globals") @@ -109,7 +109,7 @@ if ('onhashchange' in window) { 50 Watch_this_effective_address = get(Symbol_name, EIP); 51 :(after "Found effective_address(addr)") 52 if (!Watch_this_effective_address.empty()) { -53 dbg << "now watching " << HEXWORD << addr << " for " << Watch_this_effective_address << end(); +53 dbg << "now watching " << HEXWORD << addr << " for " << Watch_this_effective_address << end(); 54 put(Watch_points, Watch_this_effective_address, addr); 55 } -- cgit 1.4.1-2-gfad0