Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to deal with peripheral interrupts? Use semihosting mode? #16

Closed
hongshui3000 opened this issue Dec 7, 2023 · 25 comments
Closed

How to deal with peripheral interrupts? Use semihosting mode? #16

hongshui3000 opened this issue Dec 7, 2023 · 25 comments
Labels
question Further information is requested

Comments

@hongshui3000
Copy link

I noticed that the example did not mention how to handle interrupts generated by MCU peripherals. I think interrupts are not supported in current cases, is that right?

@hongshui3000 hongshui3000 added the question Further information is requested label Dec 7, 2023
@ser-mk
Copy link
Member

ser-mk commented Dec 7, 2023

Yes, you're correct. In the current cases, the example didn't cover handling interrupts generated by MCU peripherals. The driver code runs on the PC, leaving the MCU core idle, and interrupts cannot be utilized. For more information, please refer to https://interrupt.memfault.com/blog/mcu-peripheral-forwarding

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 7, 2023

Thanks for the quick reply

another question:
Does some peripheral forwarding currently work? For example, in a BLE AUDIO system, the Bluetooth part of the software is still running in the MCU, and the audio decoding is processed on the PC side and sent to the MCU.
1701939068618

@ser-mk
Copy link
Member

ser-mk commented Dec 7, 2023

It is possible. You can run the firmware with the BLE part on the MCU, storing audio packets in the RAM memory. Using REMCU and a debugger, you can extract the packets from the MCU's RAM, process them, and then write the decoded packets back to the MCU's RAM buffer

@hongshui3000
Copy link
Author

As far as I know, generally gdb needs to stop the mcu when processing the mcu memory or peripherals. Is this how REMCU handles it too? Or something similar to gdb live watch? https://sysprogs.com/w/live-non-intrusive-debugging-of-real-time-arm-targets/

@ser-mk
Copy link
Member

ser-mk commented Dec 7, 2023

It's an interesting question. I'll check it out and get back to you soon

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 8, 2023

some interesting discussions:Marus/cortex-debug#943
Marus/cortex-debug#810 (comment)
https://interrupt.memfault.com/blog/cortex-m-debug-monitor
If remcu can be extended to dynamic debugging and monitoring (peripherals and mcu), it makes sense to me. I can directly call the API of MCU SDK to write PC monitoring software, which can simplify debugging work.

@ser-mk
Copy link
Member

ser-mk commented Dec 8, 2023

I've checked with STM32, ST-Link, and OpenOCD. In the test, the MCU's core didn't stop when the debugger read from RAM memory. However, I can't guarantee this works universally, as it may depend on the specific debugger, MCU, and software components (OpenOCD, GDB server, drivers).
What is your hardware?

@ser-mk
Copy link
Member

ser-mk commented Dec 8, 2023

Even if the MCU's core doesn't stop, it's important to note that the core and the inner debugger IP core may share the total memory/peripheral bus

@hongshui3000
Copy link
Author

By the way, how should I generate a python interface from an SDK? If done manually, I found that it requires a huge workload. The chip I'm using is atmel SAM4C

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 9, 2023

I've looked at Preparing nRF51 Drivers SDK for MCU's Peripheral Forwardin. Written in great detail. But it's still too complicated. Can you provide such a "counterfeit" SDK? There are only two functions provided in the sdk:
address_write(addr,value);
value addr_read(addr);
I only need to modify the conf.cpp file and I can try remcu on any mcu. By doing this, for an MCU with an SDK that is not supported by Remcu, I can quickly try Remcu on the MCU without porting the SDK to Remcu. Also for MCUs without SDK (such as those under SDK development or MCU development), I can also quickly use remcu
It will also become very simple for users who learn and understand remcu.

@ser-mk
Copy link
Member

ser-mk commented Dec 9, 2023

By the way, how should I generate a python interface from an SDK? If done manually, I found that it requires a huge workload. The chip I'm using is atmel SAM4C

Generating a Python interface from an SDK can indeed be a challenging task. Personally, I've automated the process using this repo, but keep in mind that some manual coding is still required. If you're looking for an interpreter, I'd recommend exploring Cling. I've created a tutorial video using it https://www.youtube.com/@RemoteMCU

@ser-mk
Copy link
Member

ser-mk commented Dec 9, 2023

Can you provide such a "counterfeit" SDK? There are only two functions provided in the sdk:
address_write(addr,value);
value addr_read(addr);

While the REMCU SDK doesn't precisely match the provided functions, it does offer equivalent functionality. You can use remcu_store2mem for writing to memory and remcu_loadFrMem for reading from memory. Would these serve your purpose, or is there a specific reason these functions might not be suitable?

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 10, 2023

I am planning to use remcu under windows, but it seems that the gdb connection cannot be established. How should I debug it? I can't see any log information.I can connect normally using the standard gdb debugging service, but it seems that it cannot work using remcu.dll.
image
image

image

@ser-mk
Copy link
Member

ser-mk commented Dec 10, 2023

Have you used this notebook ?

Based on the screenshot, it appears that your GDB port is 2331. Can you confirm if this value is passed in the remcu_connect2GDB function?"

@ser-mk
Copy link
Member

ser-mk commented Dec 10, 2023

How should I debug it?

I'd like to mention that you can easily change the verbose level using the remcu_setVerboseLevel function

@hongshui3000
Copy link
Author

Have you used this notebook ?

Based on the screenshot, it appears that your GDB port is 2331. Can you confirm if this value is passed in the remcu_connect2GDB function?"

I'm using the dll from prebuilt_libraries, so I can't confirm that this value is passed in the remcu_connect2GDB.

@hongshui3000
Copy link
Author

How should I debug it?

I'd like to mention that you can easily change the verbose level using the remcu_setVerboseLevel function

I'm using the dll from prebuilt_libraries,I can't see any debug information using the remcu_setVerboseLevel(3) function

@ser-mk
Copy link
Member

ser-mk commented Dec 11, 2023

I'm using the dll from prebuilt_libraries, so I can't confirm that this value is passed in the remcu_connect2GDB.

You're correct. You've uncommented the line correctly; I missed that

I'm using the dll from prebuilt_libraries,I can't see any debug information using the remcu_setVerboseLevel(3) function

Perhaps the new version of Jupyter Notebook requires a specific flag for printing logs.

Let's try with the console test. Download the directory, move the executable to the dir, and run the executable with the following arguments

test_shared.exe 127.0.0.1 0 2331 0x20000000 4

if 0x20000000 is your MCU's RAM address

@hongshui3000
Copy link
Author

I'm using the dll from prebuilt_libraries, so I can't confirm that this value is passed in the remcu_connect2GDB.

You're correct. You've uncommented the line correctly; I missed that

I'm using the dll from prebuilt_libraries,I can't see any debug information using the remcu_setVerboseLevel(3) function

Perhaps the new version of Jupyter Notebook requires a specific flag for printing logs.

Let's try with the console test. Download the directory, move the executable to the dir, and run the executable with the following arguments

test_shared.exe 127.0.0.1 0 2331 0x20000000 4

if 0x20000000 is your MCU's RAM address

It seems that openocd is enabled instead of jlink. How should I enable jlink?
image

@ser-mk
Copy link
Member

ser-mk commented Dec 12, 2023

My apologies for the confusion. I've updated the repository https://github.com/remotemcu/prebuilt_libraries/tree/master/TEST-TEST_LIB-1-00/Windows_x64. Could you please repeat the steps?

`

Download the directory, move the executable to the dir, and run the executable with the following arguments

test_shared.exe 127.0.0.1 0 2331 0x20000000 4

if 0x20000000 is your MCU's RAM address

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 13, 2023

My apologies for the confusion. I've updated the repository https://github.com/remotemcu/prebuilt_libraries/tree/master/TEST-TEST_LIB-1-00/Windows_x64. Could you please repeat the steps?

`

Download the directory, move the executable to the dir, and run the executable with the following arguments
test_shared.exe 127.0.0.1 0 2331 0x20000000 4
if 0x20000000 is your MCU's RAM address

test log Was the test successful?

version : !DEBUG!-TEST-TEST_LIB-1-00--3dd1e01-C_INTERFACE-Windows_x64--3dd1e01-APACHE_2.0
argc: 6
host: 127.0.0.1
portTCL: 0
portGDB: 2331
address: 0x20000000
Verbose Level: 4

----------------------- Test Error -----------------------

(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(ERROR)$addressintercept.cpp/store:172: server - error connection
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(ERROR)$addressintercept.cpp/load:192: server - error connection
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(ERROR)$addressintercept.cpp/store:172: server - error connection
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(ERROR)$addressintercept.cpp/store:172: server - error connection
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(ERROR)$addressintercept.cpp/load:192: server - error connection
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(ERROR)$addressintercept.cpp/store:172: server - error connection
(INFO)$addressintercept.cpp/pingServer:29: Ping server ...
(INFO)$addressintercept.cpp/ping:68: No set client. Please set client

----------------------- Test RSP GDB client -----------------------

(WARNING)$winsock2net/closeTCP:100: Client: Well, there is something wrong with the shutdown().                 The error code: 10093
(WARNING)$winsock2net/closeTCP:110: Client: Cannot close "Socket" socket. Error code: 10093
(WARNING)$winsock2net/closeTCP:117: Client: BBCleanup() failed!...
(INFO)$winsock2net/connectTCP:37: Client: BBsock status is Running.
(INFO)$winsock2net/connectTCP:68: Client: connect() is OK, got connected...
(INFO)$winsock2net/connectTCP:69: Client: Ready for sending and/or receiving data...
(INFO)$winsock2net/connectTCP:75: Client: Receiver IP(s) used: 127.0.0.1
(INFO)$winsock2net/connectTCP:76: Client: Receiver port used: 2331
(INFO)$winsock2net/connectTCP:83: Set receive timeout: ON
(INFO)$winsock2net/connectTCP:90: Set transmite timeout : ON
(DEBUG)$addressintercept.cpp/connect2Server:49: utv: client->connect(host,port, timeout_sec)
(INFO)$addressintercept.cpp/pingServer:29: Ping server ...
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 5 : '$?#3F'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 8
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 8 : '+$S05#b8'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 8 : +$S05#b8
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$S05#b8
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/ping:60: utv: commandSendAndGetResponse(reset_message.c_str(), reset_message.size(), bufferReceiv, lenReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/ping:62: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/connect2Server:51: utv: pingServer()
########  ######## ##     ##  #######  ######## ########
##     ## ##       ###   ### ##     ##    ##    ##
##     ## ##       #### #### ##     ##    ##    ##
########  ######   ## ### ## ##     ##    ##    ######
##   ##   ##       ##     ## ##     ##    ##    ##
##    ##  ##       ##     ## ##     ##    ##    ##
##     ## ######## ##     ##  #######     ##    ########
   ##     ##  ######  ##     ##
   ###   ### ##    ## ##     ##
   #### #### ##       ##     ##
   ## ### ## ##       ##     ##
   ##     ## ##       ##     ##
   ##     ## ##    ## ##     ##
   ##     ##  ######   #######
 ######   #######  ##    ## ######## ########   #######  ##
##    ## ##     ## ###   ##    ##    ##     ## ##     ## ##
##       ##     ## ####  ##    ##    ##     ## ##     ## ##
##       ##     ## ## ## ##    ##    ########  ##     ## ##
##       ##     ## ##  ####    ##    ##   ##   ##     ## ##
##    ## ##     ## ##   ###    ##    ##    ##  ##     ## ##
 ######   #######  ##    ##    ##    ##     ##  #######  ########


Version: !DEBUG!-TEST-TEST_LIB-1-00--3dd1e01-C_INTERFACE-Windows_x64--3dd1e01-APACHE_2.0
(INFO)$GdbClient.cpp/resetRemoteUnit:44: !
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 5 : '$R#52'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 1
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 1 : '+'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 1 : +
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got + : +
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/resetRemoteUnit:48: utv: commandSendAndGetResponse(RESET_COMMAND, size, bufferReceiv, lenReceiv, *TOKEN_ACK_SUCCESS)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/resetRemoteUnit:50: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/resetRemoteUnit:64: utv: client->resetRemoteUnit(type)
(ERROR)$GdbClient.cpp/resetRemoteUnit:37: GDB supports only halt reset
(ERROR)$addressintercept.cpp/resetRemoteUnit:64: can't reset remote unit
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x78, size 8, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:78#d9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 1
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 1 : '+'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 1 : +
(DEBUG)$winsock2net/receive:151: Bytes received: 6
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 6 : '$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000006, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000006,2:7856#47'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000008, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000008,4:78563412#15'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_memcpy_:296: memcpy : dest 0000004BD64FF0A0, src 0000000020000004, size 8
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a0
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000005,1#51'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$35#68'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$35#68
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$35#68
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a1
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,1#52'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a2
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000007,1#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$56#6b'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$56#6b
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56#6b
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a3
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,1#54'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a4
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000009,1#55'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$56#6b'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$56#6b
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56#6b
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a5
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m2000000a,1#7d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$34#67'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$34#67
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$34#67
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a6
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m2000000b,1#7e'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$12#63'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$12#63
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$12#63
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a7
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A0, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A2, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A4, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_memset_:311: memset : addr 0000000020000000, value 0, size 12
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:00#c6'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000001,1:00#c7'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000002,1:00#c8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000003,1:00#c9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:00#ca'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000005,1:00#cb'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000006,1:00#cc'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000007,1:00#cd'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000008,1:00#ce'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000009,1:00#cf'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000a,1:00#f7'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000b,1:00#f8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$00#60'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$00#60
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00#60
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000006, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,2#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$0000#c0'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$0000#c0
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$0000#c0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,4#57'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$00000000#80'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$00000000#80
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00000000#80
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_memcpy_:296: memcpy : dest 0000000020000004, src 0000004BD64FF0A0, size 8
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:78#d9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a1
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000005,1:35#d3'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000006,1:78#db'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a3
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000007,1:56#d8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000008,1:78#dd'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a5
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000009,1:56#da'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a6
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000a,1:34#fe'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a7
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000b,1:12#fb'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000006, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,2#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$7856#da'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$7856#da
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$7856#da
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,4#57'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_memset_:311: memset : addr 0000004BD64FF0A0, value 0, size 8
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a0
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a1
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a2
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a3
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a4
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a5
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a6
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a7
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A0, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A2, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A4, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 00007FFE6136C008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 7ffe6136c008
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:78563412#0d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78000000#8f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78000000#8f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78000000#8f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000000,2:7856#41'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78560000#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78560000#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78560000#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:00000000#ed'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000002, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000002,2:7856#43'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:78563412#11'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78007856#a9'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78007856#a9
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78007856#a9
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x56780078
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,4#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:00000000#ed'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000001, value 0x5678, size 16, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000001,2:7856#42'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000003, value 0x12345678, size 32, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000003,4:78563412#10'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78785678#b8'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78785678#b8
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78785678#b8
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78567878
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,4#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$56341200#95'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$56341200#95
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56341200#95
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x123456
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(INFO)$addressintercept.cpp/pingServer:29: Ping server ...
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 5 : '$?#3F'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 8
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 8 : '+$S05#b8'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 8 : +$S05#b8
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$S05#b8
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/ping:60: utv: commandSendAndGetResponse(reset_message.c_str(), reset_message.size(), bufferReceiv, lenReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/ping:62: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x78, size 8, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:78#d9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000006, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000006,2:7856#47'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000008, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000008,4:78563412#15'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_memcpy_:296: memcpy : dest 0000004BD64FF0A0, src 0000000020000004, size 8
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a0
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000005,1#51'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$34#67'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$34#67
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$34#67
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a1
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,1#52'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a2
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000007,1#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$56#6b'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$56#6b
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56#6b
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a3
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,1#54'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a4
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000009,1#55'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$56#6b'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$56#6b
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56#6b
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a5
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m2000000a,1#7d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$34#67'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$34#67
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$34#67
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a6
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m2000000b,1#7e'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$12#63'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$12#63
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$12#63
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a7
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A0, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A2, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A4, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_memset_:311: memset : addr 0000000020000000, value 0, size 12
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:00#c6'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000001,1:00#c7'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000002,1:00#c8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000003,1:00#c9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:00#ca'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000005,1:00#cb'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000006,1:00#cc'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000007,1:00#cd'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000008,1:00#ce'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000009,1:00#cf'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000a,1:00#f7'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000b,1:00#f8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$00#60'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$00#60
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00#60
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000006, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,2#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$0000#c0'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$0000#c0
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$0000#c0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,4#57'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$00000000#80'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$00000000#80
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00000000#80
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_memcpy_:296: memcpy : dest 0000000020000004, src 0000004BD64FF0A0, size 8
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000004,1:78#d9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a1
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000005,1:34#d2'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000006,1:78#db'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a3
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000007,1:56#d8'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000008,1:78#dd'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a5
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000009,1:56#da'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a6
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000a,1:34#fe'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a7
(DEBUG)$addressintercept.cpp/adin_memcpy:241: utv: load(reinterpret_cast<llvm_ocd_addr>(src+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M2000000b,1:12#fb'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/adin_memcpy:245: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), tmp, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,1#50'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$78#6f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$78#6f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78#6f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000006, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000006,2#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$7856#da'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$7856#da
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$7856#da
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000008,4#57'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_memset_:311: memset : addr 0000004BD64FF0A0, value 0, size 8
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a0
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a1
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a2
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a3
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a4
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a5
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a6
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/store:180: store by local's address: 4bd64ff0a7
(DEBUG)$addressintercept.cpp/store:181: utv: storeToLocalValue(pointer, value, TypeSizeArg, AlignmentArg)
(DEBUG)$addressintercept.cpp/adin_memset:255: utv: store(reinterpret_cast<llvm_ocd_addr>(dest+i), val8, SIZE_MEM_FUN_OPERAND, ALIGN_MEM_FUN_OPERAND)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A0, size 8, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a0
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A2, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a2
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000004BD64FF0A4, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 4bd64ff0a4
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 00007FFE6136C008, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$addressintercept.cpp/load:202: load by local's  address : 7ffe6136c008
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:78563412#0d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78000000#8f'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78000000#8f
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78000000#8f
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000000,2:7856#41'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78560000#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78560000#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78560000#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x5678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:00000000#ed'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000002, value 0x5678, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000002,2:7856#43'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x12345678, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:78563412#11'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78007856#a9'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78007856#a9
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78007856#a9
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x56780078
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,4#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78563412#a4'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78563412#a4
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78563412#a4
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x12345678
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000004, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000004,4:00000000#ed'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x78, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:78#d5'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000001, value 0x5678, size 16, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000001,2:7856#42'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000003, value 0x12345678, size 32, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000003,4:78563412#10'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$78785678#b8'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$78785678#b8
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$78785678#b8
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x78567878
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000004,4#53'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$56341200#95'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$56341200#95
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$56341200#95
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x123456
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$AddressFunction.cpp/store2mem:17: utv: size <= MAX_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:18: utv: size >= MIN_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:20: utv: is_entry_mem_interval(addr)
(DEBUG)$AddressFunction.cpp/store2mem:21: utv: is_entry_mem_interval(addr + size)
(DEBUG)$addressintercept.cpp/store2addr:218: utv: sink != nullptr
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 77 : '$M20000000,1e:303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c00#94'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store2addr:221: utv: client->arrayWrite2RemoteMem(addr, sink, size)
(DEBUG)$AddressFunction.cpp/loadFrMem:28: utv: size <= MAX_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/loadFrMem:29: utv: size >= MIN_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/loadFrMem:31: utv: is_entry_mem_interval(addr)
(DEBUG)$AddressFunction.cpp/loadFrMem:32: utv: is_entry_mem_interval(addr + size)
(DEBUG)$addressintercept.cpp/loadFromAddr:226: utv: dist != nullptr
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 16 : '$m20000000,1e#b1'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 65
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 65 : '+$303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c00#c9'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 65 : +$303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c00#c9
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c00#c9
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/loadFromAddr:229: utv: client->arrayLoadFromRemoteMem(addr, size, dist)
(DEBUG)$AddressFunction.cpp/store2mem:17: utv: size <= MAX_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:18: utv: size >= MIN_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:20: utv: is_entry_mem_interval(addr)
(DEBUG)$AddressFunction.cpp/store2mem:21: utv: is_entry_mem_interval(addr + size)
(DEBUG)$addressintercept.cpp/store2addr:218: utv: sink != nullptr
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 81 : '$M20000000,20:303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c000000#20'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store2addr:221: utv: client->arrayWrite2RemoteMem(addr, sink, size)
(ERROR)$AddressFunction.cpp/store2mem:17: The record size limit exceeded at a time. It is more then MAX_MEM_OPERATION_SIZE. Copy a lot of data in parts.
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0xFF, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:ff#32'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 8, align 1
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,1#4c'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$ff#cc'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$ff#cc
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$ff#cc
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0xFF
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 8, align 1
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 18 : '$M20000000,1:00#c6'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 8, align 1
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,1#4c'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$00#60'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$00#60
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00#60
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0xFFFF, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000000,2:ffff#ff'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,2#4d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$ffff#98'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$ffff#98
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$ffff#98
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0xFFFF
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 16, align 2
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 20 : '$M20000000,2:0000#27'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 16, align 2
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,2#4d'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 9
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 9 : '+$0000#c0'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 9 : +$0000#c0
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$0000#c0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0xFFFFFFFF, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:ffffffff#99'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$ffffffff#30'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$ffffffff#30
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$ffffffff#30
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0xFFFFFFFF
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 24 : '$M20000000,4:00000000#e9'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store:186: utv: client->store2RemoteAddr(pointer, val, TypeSizeArg)
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000000, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:210: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 15 : '$m20000000,4#4f'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 13
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 13 : '+$00000000#80'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 13 : +$00000000#80
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$00000000#80
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:217: utv: commandSendAndGetResponse(packet, strlen(packet), bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayLoadFromRemoteMem:246: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$AddressFunction.cpp/store2mem:17: utv: size <= MAX_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:18: utv: size >= MIN_MEM_OPERATION_SIZE
(DEBUG)$AddressFunction.cpp/store2mem:20: utv: is_entry_mem_interval(addr)
(DEBUG)$AddressFunction.cpp/store2mem:21: utv: is_entry_mem_interval(addr + size)
(DEBUG)$addressintercept.cpp/store2addr:218: utv: sink != nullptr
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:153: utv: len > 0
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:73: utv: lenData > 0
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 28 : '$M20000000,6:303132333435#cc'
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:75: utv: sendMessage2Server(data, lenData)
(DEBUG)$winsock2net/receive:151: Bytes received: 7
(DEBUG)$NetWrapper.cpp/receiveResponseFromServer:38: <- 7 : '+$OK#9a'
(DEBUG)$BaseClient.cpp/readBeforeToken:49: utv: receiveResponseFromServer(p + respN, len)
(DEBUG)$BaseClient.cpp/readBeforeToken:55: utv: respN < buffer.size()
(DEBUG)$BaseClient.cpp/readBeforeToken:57: buf 7 : +$OK#9a
(DEBUG)$BaseClient.cpp/readBeforeToken:60: token got # : +$OK#9a
(DEBUG)$BaseClient.cpp/commandSendAndGetResponse:77: utv: readBeforeToken(bufferResp, lenResp, token)
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:176: utv: commandSendAndGetResponse(packet, size_packet, bufferReceiv, lenBufReceiv, TOKEN_CHECKSUM)
(DEBUG)$NetWrapper.cpp/sendMessage2Server:25: -> 1 : '+'
(DEBUG)$GdbClient.cpp/arrayWrite2RemoteMem:189: utv: sendAck(TOKEN_ACK_SUCCESS)
(DEBUG)$addressintercept.cpp/store2addr:221: utv: client->arrayWrite2RemoteMem(addr, sink, size)
(DEBUG)$AddressFunction.cpp/store2mem:17: utv: size <= MAX_MEM_OPERATION_SIZE
(ERROR)$AddressFunction.cpp/store2mem:18: Invalid record size. It is less then MIN_MEM_OPERATION_SIZE. Increase size of array.
(DEBUG)$winsock2net/closeTCP:103: Client: shutdown() looks OK...
(DEBUG)$winsock2net/closeTCP:113: Client: Closing "Socket" socket...
(DEBUG)$winsock2net/closeTCP:120: Client: BBCleanup() is OK...
(INFO)$addressintercept.cpp/disconnect:58: Close connection: b

----------------------- Test Error -----------------------

(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/store2RemoteAddr:47: No set client. Please set client
(ERROR)$addressintercept.cpp/store:186: Can't write value to chip's addr: 0000000020000000, typesize: 32
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/loadFromRemoteAddr:51: No set client. Please set client
(ERROR)$addressintercept.cpp/load:207: Can't read value from chip's addr: 0000000020000004, typesize: 32
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/store2RemoteAddr:47: No set client. Please set client
(ERROR)$addressintercept.cpp/store:186: Can't write value to chip's addr: 0000000020000000, typesize: 32
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/store2RemoteAddr:47: No set client. Please set client
(ERROR)$addressintercept.cpp/store:186: Can't write value to chip's addr: 0000000020000000, typesize: 32
(DEBUG)$addressintercept.cpp/__adin_load_:279: adin load: addr 0000000020000004, size 32, align 4
(DEBUG)$addressintercept.cpp/load:192: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/loadFromRemoteAddr:51: No set client. Please set client
(ERROR)$addressintercept.cpp/load:207: Can't read value from chip's addr: 0000000020000004, typesize: 32
(DEBUG)$addressintercept.cpp/__adin_load_:289: adin load value: 0x0
(DEBUG)$addressintercept.cpp/__adin_store_:266: adin store : addr 0000000020000000, value 0x0, size 32, align 4
(DEBUG)$addressintercept.cpp/store:172: utv: is_empty_adin_interval() == false
(INFO)$addressintercept.cpp/store2RemoteAddr:47: No set client. Please set client
(ERROR)$addressintercept.cpp/store:186: Can't write value to chip's addr: 0000000020000000, typesize: 32
(INFO)$addressintercept.cpp/pingServer:29: Ping server ...
(INFO)$addressintercept.cpp/ping:68: No set client. Please set client

----------------------- SUCCESS ALL TEST -----------------------

@hongshui3000
Copy link
Author

hongshui3000 commented Dec 13, 2023

1702437131500
But using jupyter Notebook (python), I still cannot successfully connect to the gdb service. What did I miss?

Run the script directly from the console:

import ctypes
import sys
if sys.platform.startswith('win32'): #Windows
    remcu = ctypes.WinDLL("./remcu.dll")
elif sys.platform.startswith('cygwin'): #Windows/Cygwin
    remcu = ctypes.WinDLL("remcu.dll")
elif sys.platform.startswith('linux'):  #Linux OS
    remcu = ctypes.CDLL("./libremcu.so")
elif sys.platform.startswith('darwin'): #MacOS
    remcu = ctypes.CDLL("./libremcu.dylib")
debug_server_ip = "127.0.0.1"
default_openocd_port = 6666
default_openocd_gdb_port = 3333
default_jlink_port = 2331
default_stlink_port = 61234
#custom_port = ...
timeout_sec = 3 # It can not be negative
remcu.remcu_setVerboseLevel(3)

# For OpenOCD
#success = remcu.remcu_connect2GDB(debug_server_ip, default_openocd_gdb_port, timeout_sec)
# For Jlink
success = remcu.remcu_connect2GDB(debug_server_ip, default_jlink_port, timeout_sec)
# For ST link GDB server
#success = remcu.remcu_connect2GDB(debug_server_ip, default_stlink_port, timeout_sec)
if success == 0:
    print("Server error. Possible solutions: ")
    print("1. Check connection to debug server")
    print("2. Check debug server running")
    print("3. Run the script using Python2")

LOG:
1702440590688

@hongshui3000
Copy link
Author

After the change, the service connection was successful.

1702444240167

@ser-mk
Copy link
Member

ser-mk commented Dec 13, 2023

Do you use Python 3? I recall that my examples were originally crafted for Python 2
https://github.com/remotemcu/remcu_examples/tree/master/stm32f4_discovery/jupyter-notebook#prerequirements

@ser-mk
Copy link
Member

ser-mk commented Dec 13, 2023

test log Was the test successful?

Yes, it is successful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants