From cdfff1a18d2203b8493f8700ab694c1c05ef6161 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 16 Dec 2018 20:52:47 -0800 Subject: 4869 --- html/subx/019functions.cc.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'html/subx/019functions.cc.html') diff --git a/html/subx/019functions.cc.html b/html/subx/019functions.cc.html index ba6c25b6..a9143ecb 100644 --- a/html/subx/019functions.cc.html +++ b/html/subx/019functions.cc.html @@ -67,7 +67,7 @@ if ('onhashchange' in window) { 1 //:: call 2 3 :(before "End Initialize Op Names") - 4 put_new(Name, "e8", "call disp32 (call)"); + 4 put_new(Name, "e8", "call disp32 (call)"); 5 6 :(scenario call_disp32) 7 % Reg[ESP].u = 0x64; @@ -83,11 +83,11 @@ if ('onhashchange' in window) { 17 :(before "End Single-Byte Opcodes") 18 case 0xe8: { // call disp32 relative to next EIP 19 const int32_t offset = next32(); -20 trace(90, "run") << "call imm32 0x" << HEXWORD << offset << end(); +20 trace(90, "run") << "call imm32 0x" << HEXWORD << offset << end(); 21 //? cerr << "push: EIP: " << EIP << " => " << Reg[ESP].u << '\n'; 22 push(EIP); 23 EIP += offset; -24 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); +24 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); 25 break; 26 } 27 @@ -108,11 +108,11 @@ if ('onhashchange' in window) { 42 43 :(before "End Op ff Subops") 44 case 2: { // call function pointer at r/m32 -45 trace(90, "run") << "call to r/m32" << end(); +45 trace(90, "run") << "call to r/m32" << end(); 46 const int32_t* offset = effective_address(modrm); 47 push(EIP); 48 EIP += *offset; -49 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); +49 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); 50 break; 51 } 52 @@ -134,7 +134,7 @@ if ('onhashchange' in window) { 68 //:: ret 69 70 :(before "End Initialize Op Names") -71 put_new(Name, "c3", "return from most recent unfinished call (ret)"); +71 put_new(Name, "c3", "return from most recent unfinished call (ret)"); 72 73 :(scenario ret) 74 % Reg[ESP].u = 0x2000; @@ -149,9 +149,9 @@ if ('onhashchange' in window) { 83 84 :(before "End Single-Byte Opcodes") 85 case 0xc3: { // return from a call -86 trace(90, "run") << "return" << end(); +86 trace(90, "run") << "return" << end(); 87 EIP = pop(); -88 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); +88 trace(90, "run") << "jumping to 0x" << HEXWORD << EIP << end(); 89 break; 90 } -- cgit 1.4.1-2-gfad0