From 6eb3d22eba72b967c32551c58899569cf2e339b5 Mon Sep 17 00:00:00 2001 From: TermiNexus Date: Mon, 20 Jul 2026 11:13:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=BA=86=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App/lib/core/IncludesScanner.py | 26 +- App/lib/core/Phase1.py | 37 +- App/lib/core/StubMerger.py | 52 + App/main.py | 4 + Test/crash_log.txt | 1169 ++++++++++++++++++++++ Test/crash_log2.txt | 1636 +++++++++++++++++++++++++++++++ Test/crash_out.txt | 1 + Test/crash_out2.txt | 1 + Test/crash_output.txt | 1 + 9 files changed, 2921 insertions(+), 6 deletions(-) create mode 100644 Test/crash_log.txt create mode 100644 Test/crash_log2.txt create mode 100644 Test/crash_out.txt create mode 100644 Test/crash_out2.txt create mode 100644 Test/crash_output.txt diff --git a/App/lib/core/IncludesScanner.py b/App/lib/core/IncludesScanner.py index 3c0f5b4..85c7978 100644 --- a/App/lib/core/IncludesScanner.py +++ b/App/lib/core/IncludesScanner.py @@ -171,6 +171,7 @@ def compute_file_sha1(pool: memhub.MemBuddy | t.CPtr, bytes_read: t.CInt64T = f.read_all(buf, BUF_SIZE) f.close() if bytes_read <= 0: + stdlib.free(buf) return None # 原地去除 \r(CRLF → LF),与 Projectrans.py 文本模式读取一致 @@ -189,17 +190,21 @@ def compute_file_sha1(pool: memhub.MemBuddy | t.CPtr, # 计算 SHA1 ctx: hashlib.sha1 | t.CPtr = hashlib.sha1() if ctx is None: + stdlib.free(buf) return None ctx.update(buf) digest: bytes = stdlib.malloc(hashlib.SHA1_DIGEST_LEN) if digest is None: + stdlib.free(buf) return None ctx.final(digest) # 转为十六进制字符串(取前 8 字节 = 16 个十六进制字符) hex_buf: str = stdlib.malloc(17) if hex_buf is None: + stdlib.free(buf) + stdlib.free(digest) return None for i in range(8): hi: int = (digest[i] >> 4) & 0xF @@ -213,6 +218,9 @@ def compute_file_sha1(pool: memhub.MemBuddy | t.CPtr, else: hex_buf[i * 2 + 1] = 'a' + (lo - 10) hex_buf[16] = '\0' + # 释放临时缓冲区(hex_buf 由调用者负责释放) + stdlib.free(buf) + stdlib.free(digest) return hex_buf @@ -245,6 +253,8 @@ def scan_directory_recursive(pool: memhub.MemBuddy | t.CPtr, handle: win32base.HANDLE = win32file.FindFirstFileA(pattern, find_data) if handle == win32base.INVALID_HANDLE_VALUE: + stdlib.free(pattern) + stdlib.free(find_data) return 1 # 遍历所有文件和子目录 @@ -284,6 +294,7 @@ def scan_directory_recursive(pool: memhub.MemBuddy | t.CPtr, prefix_len = string.strlen(rel_prefix) rel_path: bytes = stdlib.malloc(prefix_len + fname_len + 2) if rel_path is None: + stdlib.free(full_path) break if rel_prefix is not None and prefix_len > 0: viperlib.snprintf(rel_path, prefix_len + fname_len + 2, "%s/%s", rel_prefix, fname) @@ -312,13 +323,21 @@ def scan_directory_recursive(pool: memhub.MemBuddy | t.CPtr, sha1: str = compute_file_sha1(pool, full_path) if sha1 is not None: add_file_entry(result, pool, full_path, rel_path, sha1) - stdio.printf(" [scan] %s -> %s\n", rel_path, sha1) + # 释放 compute_file_sha1 返回的临时 hex_buf + stdlib.free(sha1) + + # 释放本次迭代分配的路径缓冲区 + stdlib.free(full_path) + stdlib.free(rel_path) # 继续搜索下一个文件 - if win32file.FindNextFileA(handle, find_data) == 0: + nxt: t.CInt = win32file.FindNextFileA(handle, find_data) + if nxt == 0: break win32file.FindClose(handle) + stdlib.free(pattern) + stdlib.free(find_data) return 0 @@ -341,7 +360,8 @@ def scan_includes(pool: memhub.MemBuddy | t.CPtr, scan_directory_recursive(pool, includes_dir, None, result) - stdio.printf("[Phase1] 扫描完成: %d 个 .py 文件\n", result.Count) + count: t.CInt = result.Count + stdio.printf("[Phase1] 扫描完成: %d 个 .py 文件\n", count) return result diff --git a/App/lib/core/Phase1.py b/App/lib/core/Phase1.py index 88d62f6..e3d1f62 100644 --- a/App/lib/core/Phase1.py +++ b/App/lib/core/Phase1.py @@ -44,47 +44,78 @@ SRC_BUF_SIZE: t.CDefine = 1048576 def RunPhase1(mb: memhub.MemBuddy | t.CPtr, includes_dir: str, temp_dir: str, log: VLogger.Logger | t.CPtr) -> int: """Phase1: 扫描 includes 目录,按需翻译并生成 stub""" + stdio.printf("[P1 ENTER] mb=%p inc=%p temp=%p log=%p\n", mb, includes_dir, temp_dir, log) + stdio.fflush(0) if includes_dir is None or temp_dir is None: stdio.printf("[Phase1] includes_dir 或 temp_dir 为空,跳过\n") return 1 + stdio.printf("[P1] before log.banner\n") + stdio.fflush(0) if log is not None: log.banner("Phase1: 扫描 includes(按需翻译)") + stdio.printf("[P1] after log.banner\n") + stdio.fflush(0) # 扫描 includes 目录 + stdio.printf("[P1] before scan_includes: mb=%p inc=%s\n", mb, includes_dir) + stdio.fflush(0) result: IncludesScanner.ScanResult | t.CPtr = IncludesScanner.scan_includes(mb, includes_dir) + stdio.printf("[P1] after scan_includes: result=%p\n", result) + stdio.fflush(0) if result is None: stdio.printf("[Phase1] 扫描失败\n") return 1 - stdio.printf("[Phase1] 共 %d 个文件\n", result.Count) + stdio.printf("[P1] result.Count=%d\n", result.Count) + stdio.fflush(0) # 读取 _sha1_map.txt 获取需要的 includes SHA1 集合 - # 优先使用 Projectrans.py 生成的 _sha1_map.txt(含依赖分析,只包含需要的 includes) - # 若不存在,则从扫描结果生成(包含所有 includes,可能导致结构体表溢出) sha1_set: str = stdlib.malloc(StubMerger.MAX_INCLUDES_SHA1 * 17) + stdio.printf("[P1] sha1_set=%p\n", sha1_set) + stdio.fflush(0) if sha1_set is None: stdio.printf("[Phase1] sha1_set 分配失败\n") return 1 string.memset(sha1_set, 0, StubMerger.MAX_INCLUDES_SHA1 * 17) + stdio.printf("[P1] before _load_includes_sha1_set\n") + stdio.fflush(0) set_count: int = StubMerger._load_includes_sha1_set(mb, temp_dir, sha1_set) + stdio.printf("[P1] set_count=%d\n", set_count) + stdio.fflush(0) if set_count <= 0: stdio.printf("[Phase1] _sha1_map.txt 不存在或为空,从扫描结果生成\n") + stdio.fflush(0) + stdio.printf("[P1] before WriteIncludesSha1Map\n") + stdio.fflush(0) StubMerger.WriteIncludesSha1Map(mb, temp_dir, result, None, 0) + stdio.printf("[P1] after WriteIncludesSha1Map, before _load_includes_sha1_set\n") + stdio.fflush(0) set_count = StubMerger._load_includes_sha1_set(mb, temp_dir, sha1_set) + stdio.printf("[P1] set_count2=%d\n", set_count) + stdio.fflush(0) if set_count < 0: stdio.printf("[Phase1] 无法加载 _sha1_map.txt,跳过 Phase1\n") return 1 stdio.printf("[Phase1] includes SHA1 集合: %d 个\n", set_count) + stdio.fflush(0) # 构建模块 SHA1 映射(供跨模块函数调用名混淆使用) td_len_p1map: t.CSizeT = string.strlen(temp_dir) p1_sha1_arr: bytes = stdlib.malloc(StubMerger.MAX_INCLUDES * 17) p1_mod_arr: bytes = stdlib.malloc(StubMerger.MAX_INCLUDES * 64) p1_inc_count: int = 0 + stdio.printf("[P1] before _BuildIncludesSha1Map\n") + stdio.fflush(0) if p1_sha1_arr is not None and p1_mod_arr is not None: p1_inc_count = StubMerger._BuildIncludesSha1Map(temp_dir, td_len_p1map, p1_sha1_arr, p1_mod_arr) + stdio.printf("[P1] after _BuildIncludesSha1Map: inc=%d\n", p1_inc_count) + stdio.fflush(0) + stdio.printf("[P1] before set_module_sha1_map\n") + stdio.fflush(0) HandlesExprCall.set_module_sha1_map(p1_sha1_arr, p1_mod_arr, p1_inc_count) + stdio.printf("[P1] after set_module_sha1_map\n") + stdio.fflush(0) # 初始化 AST 表(只需一次) ast._init_tables(mb) diff --git a/App/lib/core/StubMerger.py b/App/lib/core/StubMerger.py index 708563a..1183cc4 100644 --- a/App/lib/core/StubMerger.py +++ b/App/lib/core/StubMerger.py @@ -8,6 +8,7 @@ import llvmlite import w32.win32file as win32file import w32.win32base as win32base import w32.fileio as fileio +import w32.win32memory as win32memory import viperlib import sys import ast @@ -69,6 +70,7 @@ def _load_includes_sha1_set(pool: memhub.MemBuddy | t.CPtr, f: fileio.File | t.CPtr = fileio.File(map_path, fileio.MODE.R) if f.closed: stdio.printf("[StubMerger] _sha1_map.txt 不存在: %s\n", map_path) + stdlib.free(map_path) return -1 # 读取内容(使用 stdlib.malloc 避免 mbuddy 池耗尽) @@ -76,10 +78,13 @@ def _load_includes_sha1_set(pool: memhub.MemBuddy | t.CPtr, content: str = stdlib.malloc(MAP_BUF_SIZE) if content is None: f.close() + stdlib.free(map_path) return -1 bytes_read: t.CInt64T = f.read_all(content, MAP_BUF_SIZE) f.close() + stdlib.free(map_path) if bytes_read <= 0: + stdlib.free(content) return -1 content[bytes_read] = '\0' @@ -112,6 +117,7 @@ def _load_includes_sha1_set(pool: memhub.MemBuddy | t.CPtr, sha1_set[count * 17 + 16] = '\0' count += 1 + stdlib.free(content) return count @@ -189,6 +195,8 @@ def WriteIncludesSha1Map(mb: memhub.MemBuddy | t.CPtr, temp_dir: str, written_count += 1 f.close() + stdlib.free(map_path) + stdlib.free(line_buf) stdio.printf("[Phase1] 已写入 _sha1_map.txt (%d 个 includes)\n", written_count) return 0 @@ -735,14 +743,32 @@ def _BuildIncludesSha1Map(temp_dir: str, td_len: t.CSizeT, map_buf[map_br] = '\0' else: map_buf[STUB_READ_BUF_SIZE - 1] = '\0' + stdio.printf("[BISM] map_br=%lld\n", map_br) + stdio.fflush(0) + + # 堆探针:测试堆是否已被之前的操作损坏 + probe: bytes = stdlib.malloc(17) + stdio.printf("[BISM] probe malloc(17)=%p\n", probe) + stdio.fflush(0) + if probe is not None: + stdlib.free(probe) + stdio.printf("[BISM] probe free OK\n") + stdio.fflush(0) count: int = 0 pos: t.CSizeT = 0 while pos < map_br and count < MAX_INCLUDES: + stdio.printf("[BISM] iter=%d pos=%d\n", count, pos) + stdio.fflush(0) # 提取 SHA1(16 hex) sha1: t.CChar | t.CPtr = stdlib.malloc(17) + stdio.printf("[BISM] malloc(17)=%p\n", sha1) + stdio.fflush(0) if sha1 is None: break + hv: int = win32memory.HeapValidate(win32memory.GetProcessHeap(), 0, None) + stdio.printf("[BISM] HV after malloc(sha1)=%d\n", hv) + stdio.fflush(0) string.strncpy(sha1, map_buf + pos, 16) sha1[16] = '\0' pos += 16 @@ -755,6 +781,8 @@ def _BuildIncludesSha1Map(temp_dir: str, td_len: t.CSizeT, while pos < map_br and map_buf[pos] != '\n' and map_buf[pos] != '\r' and map_buf[pos] != '\0': pos += 1 path_len: t.CSizeT = pos - path_start + stdio.printf("[BISM] path_len=%d\n", path_len) + stdio.fflush(0) # 跳过 \r\n 或 \n if pos < map_br and map_buf[pos] == '\r': pos += 1 @@ -765,25 +793,49 @@ def _BuildIncludesSha1Map(temp_dir: str, td_len: t.CSizeT, # 否则用户文件会被误判为 includes,导致 is_module_imported 模块名不匹配而跳过加载 if path_len >= 9 and string.strncmp(map_buf + path_start, "includes/", 9) == 0: path_buf: t.CChar | t.CPtr = stdlib.malloc(path_len + 1) + stdio.printf("[BISM] malloc(%d)=%p\n", path_len + 1, path_buf) + stdio.fflush(0) if path_buf is not None: string.strncpy(path_buf, map_buf + path_start, path_len) path_buf[path_len] = '\0' + hv2: int = win32memory.HeapValidate(win32memory.GetProcessHeap(), 0, None) + stdio.printf("[BISM] HV after fill(path_buf)=%d\n", hv2) + stdio.fflush(0) mod_name: str = _PathToModuleName(path_buf) + stdio.printf("[BISM] _PathToModuleName=%p\n", mod_name) + stdio.fflush(0) + hv3: int = win32memory.HeapValidate(win32memory.GetProcessHeap(), 0, None) + stdio.printf("[BISM] HV after _PathToModuleName=%d\n", hv3) + stdio.fflush(0) stdlib.free(path_buf) if mod_name is not None: # 存储 sha1 和 mod_name 到数组中 idx: t.CSizeT = t.CSizeT(count) * 17 string.strcpy(sha1_list + idx, sha1) + hv4: int = win32memory.HeapValidate(win32memory.GetProcessHeap(), 0, None) + stdio.printf("[BISM] HV after strcpy(sha1_list)=%d\n", hv4) + stdio.fflush(0) idx2: t.CSizeT = t.CSizeT(count) * 64 mn_len: t.CSizeT = string.strlen(mod_name) + stdio.printf("[BISM] mn_len=%d count=%d\n", mn_len, count) + stdio.fflush(0) if mn_len < 64: string.strcpy(mod_list + idx2, mod_name) else: string.strncpy(mod_list + idx2, mod_name, 63) mod_list[idx2 + 63] = '\0' + hv5: int = win32memory.HeapValidate(win32memory.GetProcessHeap(), 0, None) + stdio.printf("[BISM] HV after strcpy(mod_list)=%d\n", hv5) + stdio.fflush(0) stdlib.free(mod_name) + stdio.printf("[BISM] free(mod_name) OK\n") + stdio.fflush(0) count += 1 + stdio.printf("[BISM] before free(sha1=%p)\n", sha1) + stdio.fflush(0) stdlib.free(sha1) + stdio.printf("[BISM] free(sha1) OK\n") + stdio.fflush(0) stdlib.free(map_buf) return count diff --git a/App/main.py b/App/main.py index a3c08ed..ee17071 100644 --- a/App/main.py +++ b/App/main.py @@ -249,7 +249,11 @@ def main() -> int: ph1_temp: str = Config.TempDir if ph1_temp is None: ph1_temp = "." + stdio.printf("[DBG MAIN] before Phase1: Inc=%s temp=%s\n", Config.IncludesDir, ph1_temp) + stdio.fflush(0) Phase1.RunPhase1(mb, Config.IncludesDir, ph1_temp, log) + stdio.printf("[DBG MAIN] after Phase1\n") + stdio.fflush(0) # 如果仅 Phase1(不执行 Phase2),直接退出 if do_phase2 == 0: stdio.printf("[phase] Phase1 完成,退出\n") diff --git a/Test/crash_log.txt b/Test/crash_log.txt new file mode 100644 index 0000000..6a4bc5a --- /dev/null +++ b/Test/crash_log.txt @@ -0,0 +1,1169 @@ +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D148 +[INFO] TransPyV 启动 +DBG MemBuddy.alloc: size=131 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=3 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D248 +DBG MemBuddy.alloc: size=1048 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=6 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D948 +DBG MemBuddy.alloc: size=40 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D188 +DBG MemBuddy.alloc: size=2048 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=7 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000E148 +DBG MemBuddy.alloc: size=16 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D1C8 +DBG MemBuddy.alloc: size=48 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D208 +DBG MemBuddy.alloc: size=384 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=4 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D348 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D1E8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D548 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D568 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D588 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D5A8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D5C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D5E8 + +=== TransPyV 参数解析结果 === + + --project: project.vpj + --src: (未指定) + --temp: (未指定) + --output: (未指定) + --phase: (未指定,默认 all) + --cc: (未指定) + --clean: True + --run: False + --rebuild-includes: True + --clear-cache: True + +参数解析完成。 + +=== 工程配置 === + +DBG MemBuddy.alloc: size=8192 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=9 max_order=24 +DBG MemBuddy.alloc: block=0000021A00011148 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D648 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D608 +DBG MemBuddy.alloc: size=87 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D6C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D748 +DBG MemBuddy.alloc: size=87 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D7C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D628 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D848 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D868 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D8C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D888 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000D8A8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F148 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F168 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F1C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F188 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F1A8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F248 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F268 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F2C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F288 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F2A8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F348 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F368 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F3C8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F388 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F3A8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F448 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F468 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F4C8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F488 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F4A8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F548 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F5C8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F568 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F588 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F648 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F5A8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F6C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F6E8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F748 +DBG MemBuddy.alloc: size=14 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F708 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F7C8 +DBG MemBuddy.alloc: size=14 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F728 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F848 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F8C8 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F868 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F888 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F8A8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F948 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F9C8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F968 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F988 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FA48 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000F9A8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FAC8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FAE8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FB48 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FB08 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FBC8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FB28 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FC48 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FCC8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FC68 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FC88 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FD48 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FCA8 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FDC8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FE48 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FDE8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FE08 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FEC8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FE28 +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FF48 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FFC8 +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A0000FF88 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010048 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010068 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010088 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000100C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000100A8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010148 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010168 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010188 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000101C8 +DBG MemBuddy.alloc: size=15 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000101A8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010248 +DBG MemBuddy.alloc: size=15 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000102C8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000102E8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010308 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010348 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010328 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000103C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010448 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000103E8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010408 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010428 +DBG MemBuddy.alloc: size=71 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000104C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010548 +DBG MemBuddy.alloc: size=71 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000105C8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010648 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010668 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010688 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000106C8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000106A8 +DBG MemBuddy.alloc: size=2 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010748 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A000107C8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010768 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010788 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000107A8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010848 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000108C8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000108E8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010908 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010948 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010928 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000021A000109C8 +DBG MemBuddy.alloc: size=37 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010A08 +DBG MemBuddy.alloc: size=80 +DBG MemBuddy.alloc: usable=0000021A0000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000021A00010A48 + project: AstTest v1.0.0 + source_dir: App + temp_dir: temp + output_dir: output + compiler: llc + linker: clang++ -> app.exe + includes: ../../includes + +[clean] 清理临时目录... +[clean] temp: 删除 1 个文件 +[clean] output: 删除 0 个文件 +[phase] 模式: all (phase1=1 phase2=1) + +=== Phase1: 扫描 includes(按需翻译) === + +[Phase1] 扫描 includes 目录: ../../includes +[DBG add_file_entry] Count=0 entry_addr=0x21a545d94e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d34a0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d34d0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d34f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3460 +[DBG add_file_entry] Count incremented to 1 + [scan] argparse.py -> aba439b7882ad9d6 +[DBG add_file_entry] Count=1 entry_addr=0x21a545d9500 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3530 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3550 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3570 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3430 +[DBG add_file_entry] Count incremented to 2 + [scan] asm.py -> 3487a256b250bb74 +[DBG add_file_entry] Count=2 entry_addr=0x21a545d9520 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3b80 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3b40 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d38a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d39c0 +[DBG add_file_entry] Count incremented to 3 + [scan] ast/astaux.py -> 4337fb260448bbe2 +[DBG add_file_entry] Count=3 entry_addr=0x21a545d9540 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3710 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3b20 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3940 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d39a0 +[DBG add_file_entry] Count incremented to 4 + [scan] ast/base.py -> 5dab8cb390496d22 +[DBG add_file_entry] Count=4 entry_addr=0x21a545d9560 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3740 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3a20 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3840 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3820 +[DBG add_file_entry] Count incremented to 5 + [scan] ast/exprs.py -> 47767b5026a8ee15 +[DBG add_file_entry] Count=5 entry_addr=0x21a545d9580 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3bb0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3a40 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3a60 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3860 +[DBG add_file_entry] Count incremented to 6 + [scan] ast/lexer.py -> 0c212981c180e7fb +[DBG add_file_entry] Count=6 entry_addr=0x21a545d95a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3be0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d38c0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3a00 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d37c0 +[DBG add_file_entry] Count incremented to 7 + [scan] ast/match.py -> 4dd6b3f1427d1cc5 +[DBG add_file_entry] Count=7 entry_addr=0x21a545d95c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3c10 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d37e0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3960 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d39e0 +[DBG add_file_entry] Count incremented to 8 + [scan] ast/parser.py -> ee52c08239684346 +[DBG add_file_entry] Count=8 entry_addr=0x21a545d95e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3c40 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3b00 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3980 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3880 +[DBG add_file_entry] Count incremented to 9 + [scan] ast/stmts.py -> 657e182b27c2a022 +[DBG add_file_entry] Count=9 entry_addr=0x21a545d9600 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545db8f0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3900 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3920 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3aa0 +[DBG add_file_entry] Count incremented to 10 + [scan] ast/tokens.py -> b547ac4f380bddb6 +[DBG add_file_entry] Count=10 entry_addr=0x21a545d9620 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545db920 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545d3800 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d38e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3ae0 +[DBG add_file_entry] Count incremented to 11 + [scan] ast/__init__.py -> 34548789d646f432 +[DBG add_file_entry] Count=11 entry_addr=0x21a545d9640 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546004c0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600680 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3410 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3480 +[DBG add_file_entry] Count incremented to 12 + [scan] atom.py -> 271ea3decb810db2 +[DBG add_file_entry] Count=12 entry_addr=0x21a545d9660 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d35c0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546001c0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600860 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600200 +[DBG add_file_entry] Count incremented to 13 + [scan] base64.py -> 971e24c228377a9b +[DBG add_file_entry] Count=13 entry_addr=0x21a545d9680 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d35f0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600140 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546004e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600600 +[DBG add_file_entry] Count incremented to 14 + [scan] binascii.py -> 257e074b935c33b4 +[DBG add_file_entry] Count=14 entry_addr=0x21a545d96a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3620 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600240 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600620 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600500 +[DBG add_file_entry] Count incremented to 15 + [scan] builtins.py -> ea80a4a724accbda +[DBG add_file_entry] Count=15 entry_addr=0x21a545d96c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d3650 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600540 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600740 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600660 +[DBG add_file_entry] Count incremented to 16 + [scan] condition.py -> ad6c853acfc0c146 +[DBG add_file_entry] Count=16 entry_addr=0x21a545d96e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600440 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600220 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546006a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546001e0 +[DBG add_file_entry] Count incremented to 17 + [scan] event.py -> 9d8626a10208b8de +[DBG add_file_entry] Count=17 entry_addr=0x21a545d9700 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545d36b0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600280 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546006c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546003a0 +[DBG add_file_entry] Count incremented to 18 + [scan] hashlib/__init__.py -> 96837bcc64032444 +[DBG add_file_entry] Count=18 entry_addr=0x21a545d9720 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600ce0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600720 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600560 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600700 +[DBG add_file_entry] Count incremented to 19 + [scan] hashlib/__md5.py -> 19f8024d10c828e8 +[DBG add_file_entry] Count=19 entry_addr=0x21a545d9740 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600b90 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546005a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546002c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546002a0 +[DBG add_file_entry] Count incremented to 20 + [scan] hashlib/__sha1.py -> 0df65b8ed15664b0 +[DBG add_file_entry] Count=20 entry_addr=0x21a545d9760 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600aa0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600520 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546002e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600840 +[DBG add_file_entry] Count incremented to 21 + [scan] hashlib/__sha256.py -> c9d54a4158f7f5a8 +[DBG add_file_entry] Count=21 entry_addr=0x21a545d9780 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600c50 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600180 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546005c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600580 +[DBG add_file_entry] Count incremented to 22 + [scan] hashlib/__sha512.py -> 6ff26590374ae6fc +[DBG add_file_entry] Count=22 entry_addr=0x21a545d97a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600a70 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600780 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546005e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600640 +[DBG add_file_entry] Count incremented to 23 + [scan] hashtable.py -> b8c66c8ff44eb874 +[DBG add_file_entry] Count=23 entry_addr=0x21a545d97c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546004a0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546007a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600480 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600260 +[DBG add_file_entry] Count incremented to 24 + [scan] hello.py -> 6166aecc7fa7ad65 +[DBG add_file_entry] Count=24 entry_addr=0x21a545d97e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600ad0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600320 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600400 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600300 +[DBG add_file_entry] Count incremented to 25 + [scan] json/__init__.py -> 57288496f7c2d1ad +[DBG add_file_entry] Count=25 entry_addr=0x21a545d9800 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600bf0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600800 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546006e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546003c0 +[DBG add_file_entry] Count incremented to 26 + [scan] json/__parser.py -> 240a9a4157959a9f +[DBG add_file_entry] Count=26 entry_addr=0x21a545d9820 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600bc0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600360 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600820 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600760 +[DBG add_file_entry] Count incremented to 27 + [scan] json/__writer.py -> 20cd49775c100a38 +[DBG add_file_entry] Count=27 entry_addr=0x21a545d9840 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600d10 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600380 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546001a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546007c0 +[DBG add_file_entry] Count incremented to 28 + [scan] linkedlist.py -> 2d39c6c7d3557b3e +[DBG add_file_entry] Count=28 entry_addr=0x21a545d9860 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600c80 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600460 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600160 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600420 +[DBG add_file_entry] Count incremented to 29 + [scan] llvmlite/__builder.py -> 946e087da91aaada +[DBG add_file_entry] Count=29 entry_addr=0x21a545d9880 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600cb0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600120 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3a80 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600100 +[DBG add_file_entry] Count incremented to 30 + [scan] llvmlite/__function.py -> 89b3965176cd2407 +[DBG add_file_entry] Count=30 entry_addr=0x21a545d98a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600d40 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601490 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601090 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546003e0 +[DBG add_file_entry] Count incremented to 31 + [scan] llvmlite/__init__.py -> 95394ca8da0f655a +[DBG add_file_entry] Count=31 entry_addr=0x21a545d98c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600da0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600e90 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601290 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601370 +[DBG add_file_entry] Count incremented to 32 + [scan] llvmlite/__module.py -> 21a7fcfc665f75ef +[DBG add_file_entry] Count=32 entry_addr=0x21a545d98e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600d70 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600ed0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601330 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546015d0 +[DBG add_file_entry] Count incremented to 33 + [scan] llvmlite/__types.py -> 15f1ded02f3aa5bc +[DBG add_file_entry] Count=33 entry_addr=0x21a545d9900 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600b00 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601550 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601450 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601510 +[DBG add_file_entry] Count incremented to 34 + [scan] llvmlite/__values.py -> f9e36e2cd6fa659f +[DBG add_file_entry] Count=34 entry_addr=0x21a545d9920 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600b30 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600f10 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601110 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600ef0 +[DBG add_file_entry] Count incremented to 35 + [scan] llvmlite/__verify.py -> 6b3bc463fd044545 +[DBG add_file_entry] Count=35 entry_addr=0x21a545d9940 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601590 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546013d0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3c70 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3510 +[DBG add_file_entry] Count incremented to 36 + [scan] lock.py -> 56d07ea7e30ef631 +[DBG add_file_entry] Count=36 entry_addr=0x21a545d9960 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600b60 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600f50 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546015b0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546014b0 +[DBG add_file_entry] Count incremented to 37 + [scan] memhub.py -> 754640ce30cfebcc +[DBG add_file_entry] Count=37 entry_addr=0x21a545d9980 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600c20 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601390 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546012b0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600f90 +[DBG add_file_entry] Count incremented to 38 + [scan] numpy/__init__.py -> c3a6aed1f1fb8b1e +[DBG add_file_entry] Count=38 entry_addr=0x21a545d99a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601d80 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600e50 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601130 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546013f0 +[DBG add_file_entry] Count incremented to 39 + [scan] os/path.py -> 13110effbb0bb06c +[DBG add_file_entry] Count=39 entry_addr=0x21a545d99c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601780 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546013b0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601150 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546011d0 +[DBG add_file_entry] Count incremented to 40 + [scan] os/_posix.py -> d152115b49e50218 +[DBG add_file_entry] Count=40 entry_addr=0x21a545d99e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601c00 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601530 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601470 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601430 +[DBG add_file_entry] Count incremented to 41 + [scan] os/_win32.py -> a68b70f233541a7f +[DBG add_file_entry] Count=41 entry_addr=0x21a545d9a00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601c60 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546014f0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546012d0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546014d0 +[DBG add_file_entry] Count incremented to 42 + [scan] os/__init__.py -> 76dd6c275aa72b3b +[DBG add_file_entry] Count=42 entry_addr=0x21a545d9a20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601930 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601010 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601210 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601250 +[DBG add_file_entry] Count incremented to 43 + [scan] platmacro.py -> 93c1d18e35d188d6 +[DBG add_file_entry] Count=43 entry_addr=0x21a545d9a40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600e70 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600fd0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601270 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601230 +[DBG add_file_entry] Count incremented to 44 + [scan] plist.py -> e0f1d864a10b2e4d +[DBG add_file_entry] Count=44 entry_addr=0x21a545d9a60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601350 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600f70 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601410 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601310 +[DBG add_file_entry] Count incremented to 45 + [scan] posix.py -> 6503c97dde0c79c4 +[DBG add_file_entry] Count=45 entry_addr=0x21a545d9a80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601b40 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601030 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600fb0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600eb0 +[DBG add_file_entry] Count incremented to 46 + [scan] requests.py -> b558d8d8f01f4825 +[DBG add_file_entry] Count=46 entry_addr=0x21a545d9aa0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546019c0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54600ff0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601050 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54600f30 +[DBG add_file_entry] Count incremented to 47 + [scan] rwlock.py -> da44924f0777c67a +[DBG add_file_entry] Count=47 entry_addr=0x21a545d9ac0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601720 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a54601190 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546010b0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546011f0 +[DBG add_file_entry] Count incremented to 48 + [scan] shutil.py -> abbcbd92436cc16a +[DBG add_file_entry] Count=48 entry_addr=0x21a545d9ae0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601db0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546010d0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a546010f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601070 +[DBG add_file_entry] Count incremented to 49 + [scan] socket.py -> d7e3386b828acb66 +[DBG add_file_entry] Count=49 entry_addr=0x21a545d9b00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546019f0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546011b0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54600340 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a54601570 +[DBG add_file_entry] Count incremented to 50 + [scan] spinlock.py -> b19a9e500f677f2e +[DBG add_file_entry] Count=50 entry_addr=0x21a545d9b20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601a50 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546000e0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d3ac0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a546012f0 +[DBG add_file_entry] Count incremented to 51 + [scan] stdarg.py -> 71e0a3ffcb3ebfad +[DBG add_file_entry] Count=51 entry_addr=0x21a545d9b40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601900 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbe80 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbb80 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbe00 +[DBG add_file_entry] Count incremented to 52 + [scan] stdint.py -> f5522571bcce7bcb +[DBG add_file_entry] Count=52 entry_addr=0x21a545d9b60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545dbea0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbb60 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbfa0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbd60 +[DBG add_file_entry] Count incremented to 53 + [scan] stdio.py -> 6f62fe05c5ea1ceb +[DBG add_file_entry] Count=53 entry_addr=0x21a545d9b80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601c30 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbfe0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbbe0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbe20 +[DBG add_file_entry] Count incremented to 54 + [scan] stdlib.py -> 90c53dd6db8d41cf +[DBG add_file_entry] Count=54 entry_addr=0x21a545d9ba0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601690 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbde0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbba0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbce0 +[DBG add_file_entry] Count incremented to 55 + [scan] string.py -> 9474791561654346 +[DBG add_file_entry] Count=55 entry_addr=0x21a545d9bc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546016c0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbec0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbf60 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbe40 +[DBG add_file_entry] Count incremented to 56 + [scan] subprocess.py -> 2da636c61863c815 +[DBG add_file_entry] Count=56 entry_addr=0x21a545d9be0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545dbb40 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc0a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545d36e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3680 +[DBG add_file_entry] Count incremented to 57 + [scan] sys.py -> b5a965302cded36b +[DBG add_file_entry] Count=57 entry_addr=0x21a545d9c00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601a20 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dba40 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbc60 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dba20 +[DBG add_file_entry] Count incremented to 58 + [scan] testcheck.py -> 14d33679f7fadf1f +[DBG add_file_entry] Count=58 entry_addr=0x21a545d9c20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545dc0c0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbf20 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc2f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545d3590 +[DBG add_file_entry] Count incremented to 59 + [scan] this.py -> a7bc8c01684c0001 +[DBG add_file_entry] Count=59 entry_addr=0x21a545d9c40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601b70 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbf00 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbf40 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbaa0 +[DBG add_file_entry] Count incremented to 60 + [scan] vector.py -> 285a822aa26bfbda +[DBG add_file_entry] Count=60 entry_addr=0x21a545d9c60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601c90 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbf80 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbee0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbd80 +[DBG add_file_entry] Count incremented to 61 + [scan] viperio.py -> c9f4be41ca1cc2b4 +[DBG add_file_entry] Count=61 entry_addr=0x21a545d9c80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546017b0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dba60 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc000 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dba00 +[DBG add_file_entry] Count incremented to 62 + [scan] viperlib.py -> c3b259b4059f8668 +[DBG add_file_entry] Count=62 entry_addr=0x21a545d9ca0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546016f0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc020 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc040 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbac0 +[DBG add_file_entry] Count incremented to 63 + [scan] vipermath.py -> 3f7c5e78d8652535 +[DBG add_file_entry] Count=63 entry_addr=0x21a545d9cc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601cc0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc0e0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbfc0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbda0 +[DBG add_file_entry] Count incremented to 64 + [scan] vipersimd.py -> c24f25b14b4bbd0a +[DBG add_file_entry] Count=64 entry_addr=0x21a545d9ce0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601cf0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbae0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbb00 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dba80 +[DBG add_file_entry] Count incremented to 65 + [scan] viperstring.py -> 3624cfde3c5cb6cb +[DBG add_file_entry] Count=65 entry_addr=0x21a545d9d00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601750 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbdc0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbb20 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc060 +[DBG add_file_entry] Count incremented to 66 + [scan] vrandom.py -> 62cc01c2bb770ca3 +[DBG add_file_entry] Count=66 entry_addr=0x21a545d9d20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601ba0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbd00 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc120 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbbc0 +[DBG add_file_entry] Count incremented to 67 + [scan] vthreading.py -> 87274c2b0190fb33 +[DBG add_file_entry] Count=67 entry_addr=0x21a545d9d40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601960 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbe60 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbd20 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545db9e0 +[DBG add_file_entry] Count incremented to 68 + [scan] w32/fileio.py -> 0035c95a18d4f8e8 +[DBG add_file_entry] Count=68 entry_addr=0x21a545d9d60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601d20 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545db9a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545db9c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbc20 +[DBG add_file_entry] Count incremented to 69 + [scan] w32/win32base.py -> 7e529fe7a078cfef +[DBG add_file_entry] Count=69 entry_addr=0x21a545d9d80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601d50 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dbca0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dbcc0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbc40 +[DBG add_file_entry] Count incremented to 70 + [scan] w32/win32console.py -> bbdf3bbd4c3bc28c +[DBG add_file_entry] Count=70 entry_addr=0x21a545d9da0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601a80 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a546007e0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a54601170 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dbc80 +[DBG add_file_entry] Count incremented to 71 + [scan] w32/win32file.py -> f6b51804a0ba8ff0 +[DBG add_file_entry] Count=71 entry_addr=0x21a545d9dc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601810 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc460 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dca40 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc4e0 +[DBG add_file_entry] Count incremented to 72 + [scan] w32/win32memory.py -> 72e2d5ccb7cedcf1 +[DBG add_file_entry] Count=72 entry_addr=0x21a545d9de0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601de0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc6a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc780 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc980 +[DBG add_file_entry] Count incremented to 73 + [scan] w32/win32process.py -> 067c78e9f121dce3 +[DBG add_file_entry] Count=73 entry_addr=0x21a545d9e00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546018a0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dca00 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc860 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc400 +[DBG add_file_entry] Count incremented to 74 + [scan] w32/win32sync.py -> 06f53cc594b4ac6c +[DBG add_file_entry] Count=74 entry_addr=0x21a545d9e20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601840 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dca20 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc6c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc8a0 +[DBG add_file_entry] Count incremented to 75 + [scan] w32/winsock2.py -> 6446627d4f07a1b5 +[DBG add_file_entry] Count=75 entry_addr=0x21a545d9e40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546017e0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc8c0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc520 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc7e0 +[DBG add_file_entry] Count incremented to 76 + [scan] zlib/pyzlib.py -> 1c46d554b3a3f9f3 +[DBG add_file_entry] Count=76 entry_addr=0x21a545d9e60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601bd0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc4c0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dca60 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc6e0 +[DBG add_file_entry] Count incremented to 77 + [scan] zlib/zchecksum.py -> 8ebed83a7817fa0c +[DBG add_file_entry] Count=77 entry_addr=0x21a545d9e80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601870 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dcaa0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dcac0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dca80 +[DBG add_file_entry] Count incremented to 78 + [scan] zlib/zdef.py -> 213348433fb01cc6 +[DBG add_file_entry] Count=78 entry_addr=0x21a545d9ea0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a546018d0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc720 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc5c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc640 +[DBG add_file_entry] Count incremented to 79 + [scan] zlib/zdeflate.py -> 90921d009fdd674c +[DBG add_file_entry] Count=79 entry_addr=0x21a545d9ec0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601990 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc840 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc440 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc7c0 +[DBG add_file_entry] Count incremented to 80 + [scan] zlib/zhuff.py -> d541ade6afb689a5 +[DBG add_file_entry] Count=80 entry_addr=0x21a545d9ee0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601ae0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc680 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc8e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc540 +[DBG add_file_entry] Count incremented to 81 + [scan] zlib/zinflate.py -> 451745df21e598af +[DBG add_file_entry] Count=81 entry_addr=0x21a545d9f00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601b10 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc7a0 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc900 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dcae0 +[DBG add_file_entry] Count incremented to 82 + [scan] zlib/__init__.py -> d63d2c2a2bd9bd2a +[DBG add_file_entry] Count=82 entry_addr=0x21a545d9f20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545dc5a0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc820 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc9a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc880 +[DBG add_file_entry] Count incremented to 83 + [scan] _dict.py -> e3e7b6de8d7d8b03 +[DBG add_file_entry] Count=83 entry_addr=0x21a545d9f40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54601ab0 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc700 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc420 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dc620 +[DBG add_file_entry] Count incremented to 84 + [scan] _fakeduck.py -> 79b337e5ea8951e2 +[DBG add_file_entry] Count=84 entry_addr=0x21a545d9f60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a545dc920 +[DBG add_file_entry] Sha1 set, sha1_buf=0x21a545dc480 +[DBG add_file_entry] RelPath set, rel_buf=0x21a545dc940 +[DBG add_file_entry] ModuleName set, mod_buf=0x21a545dcb40 +[DBG add_file_entry] Count incremented to 85 + [scan] _list.py -> 668790e6c9efdbae +[DBG add_file_entry] Count=85 entry_addr=0x21a545d9f80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x21a54600a40 +[DBG add_file_entry] Sha1 diff --git a/Test/crash_log2.txt b/Test/crash_log2.txt new file mode 100644 index 0000000..7829bec --- /dev/null +++ b/Test/crash_log2.txt @@ -0,0 +1,1636 @@ +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=000001618000D148 +[INFO] TransPyV 启动 +DBG MemBuddy.alloc: size=131 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=3 max_order=24 +DBG MemBuddy.alloc: block=000001618000D248 +DBG MemBuddy.alloc: size=1048 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=6 max_order=24 +DBG MemBuddy.alloc: block=000001618000D948 +DBG MemBuddy.alloc: size=40 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=000001618000D188 +DBG MemBuddy.alloc: size=2048 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=7 max_order=24 +DBG MemBuddy.alloc: block=000001618000E148 +DBG MemBuddy.alloc: size=16 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D1C8 +DBG MemBuddy.alloc: size=48 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=000001618000D208 +DBG MemBuddy.alloc: size=384 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=4 max_order=24 +DBG MemBuddy.alloc: block=000001618000D348 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D1E8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D548 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D568 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D588 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D5A8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D5C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D5E8 + +=== TransPyV 参数解析结果 === + + --project: project.vpj + --src: (未指定) + --temp: (未指定) + --output: (未指定) + --phase: (未指定,默认 all) + --cc: (未指定) + --clean: True + --run: False + --rebuild-includes: True + --clear-cache: True + +参数解析完成。 + +=== 工程配置 === + +DBG MemBuddy.alloc: size=8192 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=9 max_order=24 +DBG MemBuddy.alloc: block=0000016180011148 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000D648 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D608 +DBG MemBuddy.alloc: size=87 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000D6C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000D748 +DBG MemBuddy.alloc: size=87 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000D7C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D628 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D848 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D868 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000D8C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D888 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000D8A8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F148 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F168 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F1C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F188 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F1A8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F248 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F268 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F2C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F288 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F2A8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F348 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F368 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F3C8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F388 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F3A8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F448 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F468 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F4C8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F488 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F4A8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F548 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F5C8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F568 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F588 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F648 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F5A8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F6C8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F6E8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F748 +DBG MemBuddy.alloc: size=14 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F708 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F7C8 +DBG MemBuddy.alloc: size=14 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F728 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F848 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F8C8 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F868 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F888 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F8A8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F948 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000F9C8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F968 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F988 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FA48 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000F9A8 +DBG MemBuddy.alloc: size=4 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FAC8 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FAE8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FB48 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FB08 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FBC8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FB28 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FC48 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FCC8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FC68 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FC88 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FD48 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FCA8 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FDC8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FE48 +DBG MemBuddy.alloc: size=10 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FDE8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FE08 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FEC8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=000001618000FE28 +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=000001618000FF48 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=000001618000FFC8 +DBG MemBuddy.alloc: size=32 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=000001618000FF88 +DBG MemBuddy.alloc: size=6 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010048 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010068 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010088 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800100C8 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800100A8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010148 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010168 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010188 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800101C8 +DBG MemBuddy.alloc: size=15 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800101A8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010248 +DBG MemBuddy.alloc: size=15 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800102C8 +DBG MemBuddy.alloc: size=9 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800102E8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010308 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010348 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010328 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800103C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010448 +DBG MemBuddy.alloc: size=22 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800103E8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010408 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010428 +DBG MemBuddy.alloc: size=71 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800104C8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010548 +DBG MemBuddy.alloc: size=71 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800105C8 +DBG MemBuddy.alloc: size=11 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010648 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010668 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010688 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800106C8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800106A8 +DBG MemBuddy.alloc: size=2 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010748 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=00000161800107C8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010768 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010788 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800107A8 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010848 +DBG MemBuddy.alloc: size=5 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800108C8 +DBG MemBuddy.alloc: size=7 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800108E8 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010908 +DBG MemBuddy.alloc: size=64 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010948 +DBG MemBuddy.alloc: size=12 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=0000016180010928 +DBG MemBuddy.alloc: size=8 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=0 max_order=24 +DBG MemBuddy.alloc: block=00000161800109C8 +DBG MemBuddy.alloc: size=37 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=1 max_order=24 +DBG MemBuddy.alloc: block=0000016180010A08 +DBG MemBuddy.alloc: size=80 +DBG MemBuddy.alloc: usable=000001618000D148 +DBG MemBuddy.alloc: order=2 max_order=24 +DBG MemBuddy.alloc: block=0000016180010A48 + project: AstTest v1.0.0 + source_dir: App + temp_dir: temp + output_dir: output + compiler: llc + linker: clang++ -> app.exe + includes: ../../includes + +[clean] 清理临时目录... +[clean] temp: 删除 1 个文件 +[clean] output: 删除 0 个文件 +[phase] 模式: all (phase1=1 phase2=1) + +=== Phase1: 扫描 includes(按需翻译) === + +[Phase1] 扫描 includes 目录: ../../includes +[DBG add_file_entry] Count=0 entry_addr=0x161e6d394e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d334a0 +[DBG sha1] before malloc(17), sha1=0x161e6d33480 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d334d0 +[DBG sha1] before strcpy, sha1[0]=a +[DBG sha1] after strcpy, sha1_buf[0]=a +[DBG sha1] before store entry.Sha1, entry=0x161e6d394e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d334d0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d334f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33460 +[DBG add_file_entry] Count incremented to 1 + [scan] argparse.py -> aba439b7882ad9d6 +[DBG add_file_entry] Count=1 entry_addr=0x161e6d39500 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33530 +[DBG sha1] before malloc(17), sha1=0x161e6d33510 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33550 +[DBG sha1] before strcpy, sha1[0]=3 +[DBG sha1] after strcpy, sha1_buf[0]=3 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39500 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33550 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33570 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33430 +[DBG add_file_entry] Count incremented to 2 + [scan] asm.py -> 3487a256b250bb74 +[DBG add_file_entry] Count=2 entry_addr=0x161e6d39520 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33b80 +[DBG sha1] before malloc(17), sha1=0x161e6d33750 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33a20 +[DBG sha1] before strcpy, sha1[0]=4 +[DBG sha1] after strcpy, sha1_buf[0]=4 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39520 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33a20 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33a40 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33a00 +[DBG add_file_entry] Count incremented to 3 + [scan] ast/astaux.py -> 4337fb260448bbe2 +[DBG add_file_entry] Count=3 entry_addr=0x161e6d39540 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33710 +[DBG sha1] before malloc(17), sha1=0x161e6d33900 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33840 +[DBG sha1] before strcpy, sha1[0]=5 +[DBG sha1] after strcpy, sha1_buf[0]=5 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39540 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33840 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33860 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d339e0 +[DBG add_file_entry] Count incremented to 4 + [scan] ast/base.py -> 5dab8cb390496d22 +[DBG add_file_entry] Count=4 entry_addr=0x161e6d39560 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33740 +[DBG sha1] before malloc(17), sha1=0x161e6d338e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33a60 +[DBG sha1] before strcpy, sha1[0]=4 +[DBG sha1] after strcpy, sha1_buf[0]=4 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39560 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33a60 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d339c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33880 +[DBG add_file_entry] Count incremented to 5 + [scan] ast/exprs.py -> 47767b5026a8ee15 +[DBG add_file_entry] Count=5 entry_addr=0x161e6d39580 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33bb0 +[DBG sha1] before malloc(17), sha1=0x161e6d33920 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33800 +[DBG sha1] before strcpy, sha1[0]=0 +[DBG sha1] after strcpy, sha1_buf[0]=0 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39580 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33800 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33a80 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d338e0 +[DBG add_file_entry] Count incremented to 6 + [scan] ast/lexer.py -> 0c212981c180e7fb +[DBG add_file_entry] Count=6 entry_addr=0x161e6d395a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33be0 +[DBG sha1] before malloc(17), sha1=0x161e6d33aa0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33ae0 +[DBG sha1] before strcpy, sha1[0]=4 +[DBG sha1] after strcpy, sha1_buf[0]=4 +[DBG sha1] before store entry.Sha1, entry=0x161e6d395a0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33ae0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33b00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33ac0 +[DBG add_file_entry] Count incremented to 7 + [scan] ast/match.py -> 4dd6b3f1427d1cc5 +[DBG add_file_entry] Count=7 entry_addr=0x161e6d395c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33c10 +[DBG sha1] before malloc(17), sha1=0x161e6d33b40 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33820 +[DBG sha1] before strcpy, sha1[0]=e +[DBG sha1] after strcpy, sha1_buf[0]=e +[DBG sha1] before store entry.Sha1, entry=0x161e6d395c0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33820 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d338a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33900 +[DBG add_file_entry] Count incremented to 8 + [scan] ast/parser.py -> ee52c08239684346 +[DBG add_file_entry] Count=8 entry_addr=0x161e6d395e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33c40 +[DBG sha1] before malloc(17), sha1=0x161e6d338c0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33920 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d395e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33920 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33b40 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33b20 +[DBG add_file_entry] Count incremented to 9 + [scan] ast/stmts.py -> 657e182b27c2a022 +[DBG add_file_entry] Count=9 entry_addr=0x161e6d39600 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d3b8f0 +[DBG sha1] before malloc(17), sha1=0x161e6d337e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d33aa0 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d39600 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d33aa0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d338c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33960 +[DBG add_file_entry] Count incremented to 10 + [scan] ast/tokens.py -> b547ac4f380bddb6 +[DBG add_file_entry] Count=10 entry_addr=0x161e6d39620 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d3b920 +[DBG sha1] before malloc(17), sha1=0x161e6d33980 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d337c0 +[DBG sha1] before strcpy, sha1[0]=3 +[DBG sha1] after strcpy, sha1_buf[0]=3 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39620 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d337c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d337e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d339a0 +[DBG add_file_entry] Count incremented to 11 + [scan] ast/__init__.py -> 34548789d646f432 +[DBG add_file_entry] Count=11 entry_addr=0x161e6d39640 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50840 +[DBG sha1] before malloc(17), sha1=0x161e6c50640 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c503a0 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39640 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c503a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33410 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33480 +[DBG add_file_entry] Count incremented to 12 + [scan] atom.py -> 271ea3decb810db2 +[DBG add_file_entry] Count=12 entry_addr=0x161e6d39660 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d335c0 +[DBG sha1] before malloc(17), sha1=0x161e6c50220 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50400 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39660 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50400 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c502a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c505e0 +[DBG add_file_entry] Count incremented to 13 + [scan] base64.py -> 971e24c228377a9b +[DBG add_file_entry] Count=13 entry_addr=0x161e6d39680 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d335f0 +[DBG sha1] before malloc(17), sha1=0x161e6c504a0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c505a0 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39680 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c505a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50860 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50100 +[DBG add_file_entry] Count incremented to 14 + [scan] binascii.py -> 257e074b935c33b4 +[DBG add_file_entry] Count=14 entry_addr=0x161e6d396a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33620 +[DBG sha1] before malloc(17), sha1=0x161e6c50440 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c502c0 +[DBG sha1] before strcpy, sha1[0]=e +[DBG sha1] after strcpy, sha1_buf[0]=e +[DBG sha1] before store entry.Sha1, entry=0x161e6d396a0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c502c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c506e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50720 +[DBG add_file_entry] Count incremented to 15 + [scan] builtins.py -> ea80a4a724accbda +[DBG add_file_entry] Count=15 entry_addr=0x161e6d396c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d33650 +[DBG sha1] before malloc(17), sha1=0x161e6c50560 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c503c0 +[DBG sha1] before strcpy, sha1[0]=a +[DBG sha1] after strcpy, sha1_buf[0]=a +[DBG sha1] before store entry.Sha1, entry=0x161e6d396c0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c503c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c502e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c504a0 +[DBG add_file_entry] Count incremented to 16 + [scan] condition.py -> ad6c853acfc0c146 +[DBG add_file_entry] Count=16 entry_addr=0x161e6d396e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50600 +[DBG sha1] before malloc(17), sha1=0x161e6c50120 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50820 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d396e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50820 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50620 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c500e0 +[DBG add_file_entry] Count incremented to 17 + [scan] event.py -> 9d8626a10208b8de +[DBG add_file_entry] Count=17 entry_addr=0x161e6d39700 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d336b0 +[DBG sha1] before malloc(17), sha1=0x161e6c50700 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50380 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39700 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50380 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50220 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50300 +[DBG add_file_entry] Count incremented to 18 + [scan] hashlib/__init__.py -> 96837bcc64032444 +[DBG add_file_entry] Count=18 entry_addr=0x161e6d39720 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50ad0 +[DBG sha1] before malloc(17), sha1=0x161e6c50180 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50700 +[DBG sha1] before strcpy, sha1[0]=1 +[DBG sha1] after strcpy, sha1_buf[0]=1 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39720 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50700 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50340 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50260 +[DBG add_file_entry] Count incremented to 19 + [scan] hashlib/__md5.py -> 19f8024d10c828e8 +[DBG add_file_entry] Count=19 entry_addr=0x161e6d39740 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50d10 +[DBG sha1] before malloc(17), sha1=0x161e6c50200 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50360 +[DBG sha1] before strcpy, sha1[0]=0 +[DBG sha1] after strcpy, sha1_buf[0]=0 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39740 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50360 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c501c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50120 +[DBG add_file_entry] Count incremented to 20 + [scan] hashlib/__sha1.py -> 0df65b8ed15664b0 +[DBG add_file_entry] Count=20 entry_addr=0x161e6d39760 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50ce0 +[DBG sha1] before malloc(17), sha1=0x161e6c50140 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50280 +[DBG sha1] before strcpy, sha1[0]=c +[DBG sha1] after strcpy, sha1_buf[0]=c +[DBG sha1] before store entry.Sha1, entry=0x161e6d39760 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50280 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50320 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c506c0 +[DBG add_file_entry] Count incremented to 21 + [scan] hashlib/__sha256.py -> c9d54a4158f7f5a8 +[DBG add_file_entry] Count=21 entry_addr=0x161e6d39780 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50c50 +[DBG sha1] before malloc(17), sha1=0x161e6c50640 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50740 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39780 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50740 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c504c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50140 +[DBG add_file_entry] Count incremented to 22 + [scan] hashlib/__sha512.py -> 6ff26590374ae6fc +[DBG add_file_entry] Count=22 entry_addr=0x161e6d397a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50d40 +[DBG sha1] before malloc(17), sha1=0x161e6c50440 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50160 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d397a0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50160 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50760 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50780 +[DBG add_file_entry] Count incremented to 23 + [scan] hashtable.py -> b8c66c8ff44eb874 +[DBG add_file_entry] Count=23 entry_addr=0x161e6d397c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c503e0 +[DBG sha1] before malloc(17), sha1=0x161e6c504e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c501e0 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d397c0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c501e0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50520 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50500 +[DBG add_file_entry] Count incremented to 24 + [scan] hello.py -> 6166aecc7fa7ad65 +[DBG add_file_entry] Count=24 entry_addr=0x161e6d397e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50c80 +[DBG sha1] before malloc(17), sha1=0x161e6c50460 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50200 +[DBG sha1] before strcpy, sha1[0]=5 +[DBG sha1] after strcpy, sha1_buf[0]=5 +[DBG sha1] before store entry.Sha1, entry=0x161e6d397e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50200 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c501a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50180 +[DBG add_file_entry] Count incremented to 25 + [scan] json/__init__.py -> 57288496f7c2d1ad +[DBG add_file_entry] Count=25 entry_addr=0x161e6d39800 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50bc0 +[DBG sha1] before malloc(17), sha1=0x161e6c50440 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50480 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39800 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50480 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c504e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50460 +[DBG add_file_entry] Count incremented to 26 + [scan] json/__parser.py -> 240a9a4157959a9f +[DBG add_file_entry] Count=26 entry_addr=0x161e6d39820 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50d70 +[DBG sha1] before malloc(17), sha1=0x161e6c50240 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c507c0 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39820 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c507c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50640 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50660 +[DBG add_file_entry] Count incremented to 27 + [scan] json/__writer.py -> 20cd49775c100a38 +[DBG add_file_entry] Count=27 entry_addr=0x161e6d39840 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50b00 +[DBG sha1] before malloc(17), sha1=0x161e6c50440 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50680 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39840 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50680 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50240 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50540 +[DBG add_file_entry] Count incremented to 28 + [scan] linkedlist.py -> 2d39c6c7d3557b3e +[DBG add_file_entry] Count=28 entry_addr=0x161e6d39860 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50da0 +[DBG sha1] before malloc(17), sha1=0x161e6c507e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50580 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39860 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50580 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50800 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50560 +[DBG add_file_entry] Count incremented to 29 + [scan] llvmlite/__builder.py -> 946e087da91aaada +[DBG add_file_entry] Count=29 entry_addr=0x161e6d39880 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50a70 +[DBG sha1] before malloc(17), sha1=0x161e6c507a0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c505c0 +[DBG sha1] before strcpy, sha1[0]=8 +[DBG sha1] after strcpy, sha1_buf[0]=8 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39880 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c505c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33940 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c507e0 +[DBG add_file_entry] Count incremented to 30 + [scan] llvmlite/__function.py -> 89b3965176cd2407 +[DBG add_file_entry] Count=30 entry_addr=0x161e6d398a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50aa0 +[DBG sha1] before malloc(17), sha1=0x161e6c507a0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51450 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d398a0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51450 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51230 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50440 +[DBG add_file_entry] Count incremented to 31 + [scan] llvmlite/__init__.py -> 95394ca8da0f655a +[DBG add_file_entry] Count=31 entry_addr=0x161e6d398c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50cb0 +[DBG sha1] before malloc(17), sha1=0x161e6c51270 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50f10 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d398c0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50f10 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c513f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51150 +[DBG add_file_entry] Count incremented to 32 + [scan] llvmlite/__module.py -> 21a7fcfc665f75ef +[DBG add_file_entry] Count=32 entry_addr=0x161e6d398e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50a40 +[DBG sha1] before malloc(17), sha1=0x161e6c51250 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51490 +[DBG sha1] before strcpy, sha1[0]=1 +[DBG sha1] after strcpy, sha1_buf[0]=1 +[DBG sha1] before store entry.Sha1, entry=0x161e6d398e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51490 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51470 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51050 +[DBG add_file_entry] Count incremented to 33 + [scan] llvmlite/__types.py -> 15f1ded02f3aa5bc +[DBG add_file_entry] Count=33 entry_addr=0x161e6d39900 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50b60 +[DBG sha1] before malloc(17), sha1=0x161e6c51110 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c510b0 +[DBG sha1] before strcpy, sha1[0]=f +[DBG sha1] after strcpy, sha1_buf[0]=f +[DBG sha1] before store entry.Sha1, entry=0x161e6d39900 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c510b0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c514b0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51590 +[DBG add_file_entry] Count incremented to 34 + [scan] llvmlite/__values.py -> f9e36e2cd6fa659f +[DBG add_file_entry] Count=34 entry_addr=0x161e6d39920 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50bf0 +[DBG sha1] before malloc(17), sha1=0x161e6c51350 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c510f0 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39920 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c510f0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50e50 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51330 +[DBG add_file_entry] Count incremented to 35 + [scan] llvmlite/__verify.py -> 6b3bc463fd044545 +[DBG add_file_entry] Count=35 entry_addr=0x161e6d39940 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51250 +[DBG sha1] before malloc(17), sha1=0x161e6c514d0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50e90 +[DBG sha1] before strcpy, sha1[0]=5 +[DBG sha1] after strcpy, sha1_buf[0]=5 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39940 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50e90 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33c70 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33510 +[DBG add_file_entry] Count incremented to 36 + [scan] lock.py -> 56d07ea7e30ef631 +[DBG add_file_entry] Count=36 entry_addr=0x161e6d39960 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50b90 +[DBG sha1] before malloc(17), sha1=0x161e6c51030 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51070 +[DBG sha1] before strcpy, sha1[0]=7 +[DBG sha1] after strcpy, sha1_buf[0]=7 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39960 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51070 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c514d0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c511d0 +[DBG add_file_entry] Count incremented to 37 + [scan] memhub.py -> 754640ce30cfebcc +[DBG add_file_entry] Count=37 entry_addr=0x161e6d39980 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50c20 +[DBG sha1] before malloc(17), sha1=0x161e6c51030 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51130 +[DBG sha1] before strcpy, sha1[0]=c +[DBG sha1] after strcpy, sha1_buf[0]=c +[DBG sha1] before store entry.Sha1, entry=0x161e6d39980 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51130 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51110 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50ed0 +[DBG add_file_entry] Count incremented to 38 + [scan] numpy/__init__.py -> c3a6aed1f1fb8b1e +[DBG add_file_entry] Count=38 entry_addr=0x161e6d399a0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51cc0 +[DBG sha1] before malloc(17), sha1=0x161e6c51550 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51370 +[DBG sha1] before strcpy, sha1[0]=1 +[DBG sha1] after strcpy, sha1_buf[0]=1 +[DBG sha1] before store entry.Sha1, entry=0x161e6d399a0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51370 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c514f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51170 +[DBG add_file_entry] Count incremented to 39 + [scan] os/path.py -> 13110effbb0bb06c +[DBG add_file_entry] Count=39 entry_addr=0x161e6d399c0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51870 +[DBG sha1] before malloc(17), sha1=0x161e6c51210 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50ef0 +[DBG sha1] before strcpy, sha1[0]=d +[DBG sha1] after strcpy, sha1_buf[0]=d +[DBG sha1] before store entry.Sha1, entry=0x161e6d399c0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50ef0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50fd0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51270 +[DBG add_file_entry] Count incremented to 40 + [scan] os/_posix.py -> d152115b49e50218 +[DBG add_file_entry] Count=40 entry_addr=0x161e6d399e0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51a50 +[DBG sha1] before malloc(17), sha1=0x161e6c50f30 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51530 +[DBG sha1] before strcpy, sha1[0]=a +[DBG sha1] after strcpy, sha1_buf[0]=a +[DBG sha1] before store entry.Sha1, entry=0x161e6d399e0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51530 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51550 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51310 +[DBG add_file_entry] Count incremented to 41 + [scan] os/_win32.py -> a68b70f233541a7f +[DBG add_file_entry] Count=41 entry_addr=0x161e6d39a00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51cf0 +[DBG sha1] before malloc(17), sha1=0x161e6c51090 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c513d0 +[DBG sha1] before strcpy, sha1[0]=7 +[DBG sha1] after strcpy, sha1_buf[0]=7 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39a00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c513d0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51190 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50f30 +[DBG add_file_entry] Count incremented to 42 + [scan] os/__init__.py -> 76dd6c275aa72b3b +[DBG add_file_entry] Count=42 entry_addr=0x161e6d39a20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c518a0 +[DBG sha1] before malloc(17), sha1=0x161e6c50ff0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51510 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39a20 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51510 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51350 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c512d0 +[DBG add_file_entry] Count incremented to 43 + [scan] platmacro.py -> 93c1d18e35d188d6 +[DBG add_file_entry] Count=43 entry_addr=0x161e6d39a40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c512b0 +[DBG sha1] before malloc(17), sha1=0x161e6c51290 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c511b0 +[DBG sha1] before strcpy, sha1[0]=e +[DBG sha1] after strcpy, sha1_buf[0]=e +[DBG sha1] before store entry.Sha1, entry=0x161e6d39a40 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c511b0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c511f0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50f70 +[DBG add_file_entry] Count incremented to 44 + [scan] plist.py -> e0f1d864a10b2e4d +[DBG add_file_entry] Count=44 entry_addr=0x161e6d39a60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c50f90 +[DBG sha1] before malloc(17), sha1=0x161e6c50e70 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c50f50 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39a60 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c50f50 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51210 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c515d0 +[DBG add_file_entry] Count incremented to 45 + [scan] posix.py -> 6503c97dde0c79c4 +[DBG add_file_entry] Count=45 entry_addr=0x161e6d39a80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51780 +[DBG sha1] before malloc(17), sha1=0x161e6c512f0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51570 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d39a80 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51570 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50ff0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c50e70 +[DBG add_file_entry] Count incremented to 46 + [scan] requests.py -> b558d8d8f01f4825 +[DBG add_file_entry] Count=46 entry_addr=0x161e6d39aa0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51a20 +[DBG sha1] before malloc(17), sha1=0x161e6c51010 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c513b0 +[DBG sha1] before strcpy, sha1[0]=d +[DBG sha1] after strcpy, sha1_buf[0]=d +[DBG sha1] before store entry.Sha1, entry=0x161e6d39aa0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c513b0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50eb0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c515b0 +[DBG add_file_entry] Count incremented to 47 + [scan] rwlock.py -> da44924f0777c67a +[DBG add_file_entry] Count=47 entry_addr=0x161e6d39ac0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51d20 +[DBG sha1] before malloc(17), sha1=0x161e6c51290 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c510d0 +[DBG sha1] before strcpy, sha1[0]=a +[DBG sha1] after strcpy, sha1_buf[0]=a +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ac0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c510d0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50fb0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c512f0 +[DBG add_file_entry] Count incremented to 48 + [scan] shutil.py -> abbcbd92436cc16a +[DBG add_file_entry] Count=48 entry_addr=0x161e6d39ae0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c517b0 +[DBG sha1] before malloc(17), sha1=0x161e6c51010 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51390 +[DBG sha1] before strcpy, sha1[0]=d +[DBG sha1] after strcpy, sha1_buf[0]=d +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ae0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51390 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51090 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51030 +[DBG add_file_entry] Count incremented to 49 + [scan] socket.py -> d7e3386b828acb66 +[DBG add_file_entry] Count=49 entry_addr=0x161e6d39b00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51c30 +[DBG sha1] before malloc(17), sha1=0x161e6c51410 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c51430 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d39b00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c51430 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c50420 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51290 +[DBG add_file_entry] Count incremented to 50 + [scan] spinlock.py -> b19a9e500f677f2e +[DBG add_file_entry] Count=50 entry_addr=0x161e6d39b20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51690 +[DBG sha1] before malloc(17), sha1=0x161e6c51010 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c506a0 +[DBG sha1] before strcpy, sha1[0]=7 +[DBG sha1] after strcpy, sha1_buf[0]=7 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39b20 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c506a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d33980 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6c51410 +[DBG add_file_entry] Count incremented to 51 + [scan] stdarg.py -> 71e0a3ffcb3ebfad +[DBG add_file_entry] Count=51 entry_addr=0x161e6d39b40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51c90 +[DBG sha1] before malloc(17), sha1=0x161e6d3b9e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bc80 +[DBG sha1] before strcpy, sha1[0]=f +[DBG sha1] after strcpy, sha1_buf[0]=f +[DBG sha1] before store entry.Sha1, entry=0x161e6d39b40 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bc80 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bca0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bf20 +[DBG add_file_entry] Count incremented to 52 + [scan] stdint.py -> f5522571bcce7bcb +[DBG add_file_entry] Count=52 entry_addr=0x161e6d39b60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d3bd40 +[DBG sha1] before malloc(17), sha1=0x161e6d3bce0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bdc0 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39b60 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bdc0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bcc0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bb40 +[DBG add_file_entry] Count incremented to 53 + [scan] stdio.py -> 6f62fe05c5ea1ceb +[DBG add_file_entry] Count=53 entry_addr=0x161e6d39b80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51a80 +[DBG sha1] before malloc(17), sha1=0x161e6d3bc40 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bba0 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39b80 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bba0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3be00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bd60 +[DBG add_file_entry] Count incremented to 54 + [scan] stdlib.py -> 90c53dd6db8d41cf +[DBG add_file_entry] Count=54 entry_addr=0x161e6d39ba0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51db0 +[DBG sha1] before malloc(17), sha1=0x161e6d3bda0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bd80 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ba0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bd80 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bc00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bc60 +[DBG add_file_entry] Count incremented to 55 + [scan] string.py -> 9474791561654346 +[DBG add_file_entry] Count=55 entry_addr=0x161e6d39bc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51b40 +[DBG sha1] before malloc(17), sha1=0x161e6d3be60 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3be80 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39bc0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3be80 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bc40 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bea0 +[DBG add_file_entry] Count incremented to 56 + [scan] subprocess.py -> 2da636c61863c815 +[DBG add_file_entry] Count=56 entry_addr=0x161e6d39be0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d3bfa0 +[DBG sha1] before malloc(17), sha1=0x161e6d3bae0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bbc0 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d39be0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bbc0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d336e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33680 +[DBG add_file_entry] Count incremented to 57 + [scan] sys.py -> b5a965302cded36b +[DBG add_file_entry] Count=57 entry_addr=0x161e6d39c00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51ba0 +[DBG sha1] before malloc(17), sha1=0x161e6d3bde0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bce0 +[DBG sha1] before strcpy, sha1[0]=1 +[DBG sha1] after strcpy, sha1_buf[0]=1 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39c00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bce0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bd00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bda0 +[DBG add_file_entry] Count incremented to 58 + [scan] testcheck.py -> 14d33679f7fadf1f +[DBG add_file_entry] Count=58 entry_addr=0x161e6d39c20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6d3bbe0 +[DBG sha1] before malloc(17), sha1=0x161e6d3bd20 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bfc0 +[DBG sha1] before strcpy, sha1[0]=a +[DBG sha1] after strcpy, sha1_buf[0]=a +[DBG sha1] before store entry.Sha1, entry=0x161e6d39c20 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bfc0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c320 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d33590 +[DBG add_file_entry] Count incremented to 59 + [scan] this.py -> a7bc8c01684c0001 +[DBG add_file_entry] Count=59 entry_addr=0x161e6d39c40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c517e0 +[DBG sha1] before malloc(17), sha1=0x161e6d3bd20 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bfe0 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39c40 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bfe0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3ba60 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3ba40 +[DBG add_file_entry] Count incremented to 60 + [scan] vector.py -> 285a822aa26bfbda +[DBG add_file_entry] Count=60 entry_addr=0x161e6d39c60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51ab0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c080 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bee0 +[DBG sha1] before strcpy, sha1[0]=c +[DBG sha1] after strcpy, sha1_buf[0]=c +[DBG sha1] before store entry.Sha1, entry=0x161e6d39c60 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bee0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bb00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3b9c0 +[DBG add_file_entry] Count incremented to 61 + [scan] viperio.py -> c9f4be41ca1cc2b4 +[DBG add_file_entry] Count=61 entry_addr=0x161e6d39c80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51d50 +[DBG sha1] before malloc(17), sha1=0x161e6d3bb80 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c100 +[DBG sha1] before strcpy, sha1[0]=c +[DBG sha1] after strcpy, sha1_buf[0]=c +[DBG sha1] before store entry.Sha1, entry=0x161e6d39c80 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c100 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3ba80 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bd20 +[DBG add_file_entry] Count incremented to 62 + [scan] viperlib.py -> c3b259b4059f8668 +[DBG add_file_entry] Count=62 entry_addr=0x161e6d39ca0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51930 +[DBG sha1] before malloc(17), sha1=0x161e6d3bf00 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c000 +[DBG sha1] before strcpy, sha1[0]=3 +[DBG sha1] after strcpy, sha1_buf[0]=3 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ca0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c000 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bae0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c120 +[DBG add_file_entry] Count incremented to 63 + [scan] vipermath.py -> 3f7c5e78d8652535 +[DBG add_file_entry] Count=63 entry_addr=0x161e6d39cc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51900 +[DBG sha1] before malloc(17), sha1=0x161e6d3bb60 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c080 +[DBG sha1] before strcpy, sha1[0]=c +[DBG sha1] after strcpy, sha1_buf[0]=c +[DBG sha1] before store entry.Sha1, entry=0x161e6d39cc0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c080 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3b9e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c040 +[DBG add_file_entry] Count incremented to 64 + [scan] vipersimd.py -> c24f25b14b4bbd0a +[DBG add_file_entry] Count=64 entry_addr=0x161e6d39ce0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51840 +[DBG sha1] before malloc(17), sha1=0x161e6d3bde0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3be20 +[DBG sha1] before strcpy, sha1[0]=3 +[DBG sha1] after strcpy, sha1_buf[0]=3 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ce0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3be20 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bb80 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c020 +[DBG add_file_entry] Count incremented to 65 + [scan] viperstring.py -> 3624cfde3c5cb6cb +[DBG add_file_entry] Count=65 entry_addr=0x161e6d39d00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51ae0 +[DBG sha1] before malloc(17), sha1=0x161e6d3ba20 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3be40 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39d00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3be40 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bf00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bde0 +[DBG add_file_entry] Count incremented to 66 + [scan] vrandom.py -> 62cc01c2bb770ca3 +[DBG add_file_entry] Count=66 entry_addr=0x161e6d39d20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51810 +[DBG sha1] before malloc(17), sha1=0x161e6d3bb20 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3bec0 +[DBG sha1] before strcpy, sha1[0]=8 +[DBG sha1] after strcpy, sha1_buf[0]=8 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39d20 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3bec0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bf40 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3bc20 +[DBG add_file_entry] Count incremented to 67 + [scan] vthreading.py -> 87274c2b0190fb33 +[DBG add_file_entry] Count=67 entry_addr=0x161e6d39d40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51b70 +[DBG sha1] before malloc(17), sha1=0x161e6d3b9a0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3be60 +[DBG sha1] before strcpy, sha1[0]=0 +[DBG sha1] after strcpy, sha1_buf[0]=0 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39d40 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3be60 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bf80 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3ba20 +[DBG add_file_entry] Count incremented to 68 + [scan] w32/fileio.py -> 0035c95a18d4f8e8 +[DBG add_file_entry] Count=68 entry_addr=0x161e6d39d60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51660 +[DBG sha1] before malloc(17), sha1=0x161e6d3ba00 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c0a0 +[DBG sha1] before strcpy, sha1[0]=7 +[DBG sha1] after strcpy, sha1_buf[0]=7 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39d60 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c0a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c0c0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c060 +[DBG add_file_entry] Count incremented to 69 + [scan] w32/win32base.py -> 7e529fe7a078cfef +[DBG add_file_entry] Count=69 entry_addr=0x161e6d39d80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51960 +[DBG sha1] before malloc(17), sha1=0x161e6d3b9a0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3baa0 +[DBG sha1] before strcpy, sha1[0]=b +[DBG sha1] after strcpy, sha1_buf[0]=b +[DBG sha1] before store entry.Sha1, entry=0x161e6d39d80 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3baa0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3bb20 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3ba00 +[DBG add_file_entry] Count incremented to 70 + [scan] w32/win32console.py -> bbdf3bbd4c3bc28c +[DBG add_file_entry] Count=70 entry_addr=0x161e6d39da0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51990 +[DBG sha1] before malloc(17), sha1=0x161e6d3bac0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6c507a0 +[DBG sha1] before strcpy, sha1[0]=f +[DBG sha1] after strcpy, sha1_buf[0]=f +[DBG sha1] before store entry.Sha1, entry=0x161e6d39da0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6c507a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6c51010 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3b9a0 +[DBG add_file_entry] Count incremented to 71 + [scan] w32/win32file.py -> f6b51804a0ba8ff0 +[DBG add_file_entry] Count=71 entry_addr=0x161e6d39dc0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c518d0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c8e0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c420 +[DBG sha1] before strcpy, sha1[0]=7 +[DBG sha1] after strcpy, sha1_buf[0]=7 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39dc0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c420 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c500 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c740 +[DBG add_file_entry] Count incremented to 72 + [scan] w32/win32memory.py -> 72e2d5ccb7cedcf1 +[DBG add_file_entry] Count=72 entry_addr=0x161e6d39de0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51b10 +[DBG sha1] before malloc(17), sha1=0x161e6d3c440 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3ca80 +[DBG sha1] before strcpy, sha1[0]=0 +[DBG sha1] after strcpy, sha1_buf[0]=0 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39de0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3ca80 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3ca60 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c860 +[DBG add_file_entry] Count incremented to 73 + [scan] w32/win32process.py -> 067c78e9f121dce3 +[DBG add_file_entry] Count=73 entry_addr=0x161e6d39e00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51d80 +[DBG sha1] before malloc(17), sha1=0x161e6d3c5c0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c920 +[DBG sha1] before strcpy, sha1[0]=0 +[DBG sha1] after strcpy, sha1_buf[0]=0 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39e00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c920 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c640 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c440 +[DBG add_file_entry] Count incremented to 74 + [scan] w32/win32sync.py -> 06f53cc594b4ac6c +[DBG add_file_entry] Count=74 entry_addr=0x161e6d39e20 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51bd0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c4c0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c5e0 +[DBG sha1] before strcpy, sha1[0]=6 +[DBG sha1] after strcpy, sha1_buf[0]=6 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39e20 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c5e0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c9a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c520 +[DBG add_file_entry] Count incremented to 75 + [scan] w32/winsock2.py -> 6446627d4f07a1b5 +[DBG add_file_entry] Count=75 entry_addr=0x161e6d39e40 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c519c0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c780 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c9e0 +[DBG sha1] before strcpy, sha1[0]=1 +[DBG sha1] after strcpy, sha1_buf[0]=1 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39e40 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c9e0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3ca40 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c680 +[DBG add_file_entry] Count incremented to 76 + [scan] zlib/pyzlib.py -> 1c46d554b3a3f9f3 +[DBG add_file_entry] Count=76 entry_addr=0x161e6d39e60 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51750 +[DBG sha1] before malloc(17), sha1=0x161e6d3cb00 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c6c0 +[DBG sha1] before strcpy, sha1[0]=8 +[DBG sha1] after strcpy, sha1_buf[0]=8 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39e60 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c6c0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c6a0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c480 +[DBG add_file_entry] Count incremented to 77 + [scan] zlib/zchecksum.py -> 8ebed83a7817fa0c +[DBG add_file_entry] Count=77 entry_addr=0x161e6d39e80 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c516c0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c560 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c4e0 +[DBG sha1] before strcpy, sha1[0]=2 +[DBG sha1] after strcpy, sha1_buf[0]=2 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39e80 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c4e0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c980 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c8a0 +[DBG add_file_entry] Count incremented to 78 + [scan] zlib/zdef.py -> 213348433fb01cc6 +[DBG add_file_entry] Count=78 entry_addr=0x161e6d39ea0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51720 +[DBG sha1] before malloc(17), sha1=0x161e6d3c400 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3caa0 +[DBG sha1] before strcpy, sha1[0]=9 +[DBG sha1] after strcpy, sha1_buf[0]=9 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ea0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3caa0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c800 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c3e0 +[DBG add_file_entry] Count incremented to 79 + [scan] zlib/zdeflate.py -> 90921d009fdd674c +[DBG add_file_entry] Count=79 entry_addr=0x161e6d39ec0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51c60 +[DBG sha1] before malloc(17), sha1=0x161e6d3c8c0 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c540 +[DBG sha1] before strcpy, sha1[0]=d +[DBG sha1] after strcpy, sha1_buf[0]=d +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ec0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c540 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c6e0 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3ca20 +[DBG add_file_entry] Count incremented to 80 + [scan] zlib/zhuff.py -> d541ade6afb689a5 +[DBG add_file_entry] Count=80 entry_addr=0x161e6d39ee0 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c51c00 +[DBG sha1] before malloc(17), sha1=0x161e6d3c600 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c4a0 +[DBG sha1] before strcpy, sha1[0]=4 +[DBG sha1] after strcpy, sha1_buf[0]=4 +[DBG sha1] before store entry.Sha1, entry=0x161e6d39ee0 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c4a0 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3ca00 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3c460 +[DBG add_file_entry] Count incremented to 81 + [scan] zlib/zinflate.py -> 451745df21e598af +[DBG add_file_entry] Count=81 entry_addr=0x161e6d39f00 entry_size=32 +[DBG add_file_entry] Path set, abs_buf=0x161e6c516f0 +[DBG sha1] before malloc(17), sha1=0x161e6d3c820 +[DBG sha1] after malloc(17), sha1_buf=0x161e6d3c600 +[DBG sha1] before strcpy, sha1[0]=d +[DBG sha1] after strcpy, sha1_buf[0]=d +[DBG sha1] before store entry.Sha1, entry=0x161e6d39f00 +[DBG sha1] after store entry.Sha1 +[DBG add_file_entry] Sha1 set, sha1_buf=0x161e6d3c600 +[DBG add_file_entry] RelPath set, rel_buf=0x161e6d3c700 +[DBG add_file_entry] ModuleName set, mod_buf=0x161e6d3cac0 +[DBG add_file_entry] Count incre diff --git a/Test/crash_out.txt b/Test/crash_out.txt new file mode 100644 index 0000000..74f24be --- /dev/null +++ b/Test/crash_out.txt @@ -0,0 +1 @@ +DBG MemBuddy.alloc: block=0000019B93BE4828 diff --git a/Test/crash_out2.txt b/Test/crash_out2.txt new file mode 100644 index 0000000..2bb7585 --- /dev/null +++ b/Test/crash_out2.txt @@ -0,0 +1 @@ +DBG MemBuddy.alloc: block=000002428000F828 diff --git a/Test/crash_output.txt b/Test/crash_output.txt new file mode 100644 index 0000000..f393c9c --- /dev/null +++ b/Test/crash_output.txt @@ -0,0 +1 @@ +[DBG]