This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
@dataclass | |
class Instr: | |
startTime: str | |
instrType: str | |
ip: int | |
addr: int | |
size: int | |
value: int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import brotli | |
import zipfile | |
import os | |
archive_path = 'data-63cebb7cb7e3e17ed8a87d7c7a3fd1ab551cfd73.archive' | |
dump_root = 'dump' | |
with zipfile.ZipFile(archive_path) as archive: | |
for info in archive.infolist(): | |
if info.compress_type != 34: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <thread> | |
#include "lldb/API/LLDB.h" | |
using namespace std; | |
using namespace lldb; | |
class Debugger | |
{ | |
public: |