Extract and profile STINIT stage records
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Extract a *INIT data table to JSON. Auto-detects the table's shape.
|
||||
|
||||
*INIT scripts populate parallel global arrays with static game data. Three shapes seen:
|
||||
*INIT scripts populate global arrays and work buffers with static game data. Four shapes seen:
|
||||
|
||||
name — records keyed by a name string. Each record: set-string(name), static field writes,
|
||||
set-string(desc). Arrays indexed by record id in lockstep (+1/record).
|
||||
@@ -10,12 +10,14 @@
|
||||
by an incrementing index column. (CGINIT gallery)
|
||||
footer — copy-local-array (op 0x64) bulk-loads length-prefixed arrays from the file
|
||||
footer into per-record global arrays. The data lives in the footer. (MPINIT maps)
|
||||
mixed — a sparse selector dispatch writes strings, scalars, fixed-buffer cells, and
|
||||
footer arrays for one runtime record. (STINIT stages)
|
||||
|
||||
Records are {id, name?, desc?, fields:{"0x<col_base>": value}} or, for footer tables,
|
||||
{id, global_addr, footer_off, values:[...]}. Column addresses are raw engine globals;
|
||||
naming them (attack, cost, …) needs the engine global-var map — later work.
|
||||
|
||||
Usage: py -3.11 -X utf8 tools/extract_init.py <TABLE> [OUTNAME] [--mode name|numeric|footer]
|
||||
Usage: py -3.11 -X utf8 tools/extract_init.py <TABLE> [OUTNAME] [--mode name|numeric|footer|mixed]
|
||||
"""
|
||||
from __future__ import annotations
|
||||
import json
|
||||
@@ -37,6 +39,7 @@ COPY_LOCAL_ARRAY = 0x64
|
||||
T_GLOBAL_INT = 3
|
||||
T_GLOBAL_STRING = 5
|
||||
T_IMM = 0
|
||||
T_LOCAL_INT = 9
|
||||
|
||||
MESSAGE_TABLES = {
|
||||
"ITINIT": "ITMES",
|
||||
@@ -85,10 +88,44 @@ def read_footer_array(scr, off):
|
||||
return list(dw[off + 1: off + 1 + length])
|
||||
|
||||
|
||||
def _mixed_guards(scr):
|
||||
"""Find the dominant `eq local, selector-global, record-id; jcc` dispatch."""
|
||||
candidates = []
|
||||
instructions = scr.instructions
|
||||
for index, ins in enumerate(instructions[:-1]):
|
||||
if (sys4load.display_label(ins.opcode) != "eq"
|
||||
or len(ins.args) < 3
|
||||
or ins.args[0][0] != T_LOCAL_INT
|
||||
or ins.args[1][0] != T_GLOBAL_INT
|
||||
or ins.args[2][0] != T_IMM):
|
||||
continue
|
||||
branch = instructions[index + 1]
|
||||
if (sys4load.display_label(branch.opcode) != "jcc"
|
||||
or not branch.args
|
||||
or branch.args[0] != ins.args[0]):
|
||||
continue
|
||||
candidates.append({
|
||||
"index": index,
|
||||
"offset": ins.offset,
|
||||
"selector": ins.args[1][1],
|
||||
"id": ins.args[2][1],
|
||||
})
|
||||
if not candidates:
|
||||
return []
|
||||
selector_counts = {}
|
||||
for guard in candidates:
|
||||
selector = guard["selector"]
|
||||
selector_counts[selector] = selector_counts.get(selector, 0) + 1
|
||||
selector = max(selector_counts, key=lambda value: (selector_counts[value], -value))
|
||||
return [guard for guard in candidates if guard["selector"] == selector]
|
||||
|
||||
|
||||
def detect_mode(scr):
|
||||
ops = [ins.opcode for ins in scr.instructions]
|
||||
has_str = any(ins.opcode == SET_STRING and ins.args and ins.args[0][0] == T_GLOBAL_STRING
|
||||
for ins in scr.instructions)
|
||||
if has_str and len(_mixed_guards(scr)) >= 4:
|
||||
return "mixed"
|
||||
if has_str:
|
||||
return "name"
|
||||
n_footer = ops.count(COPY_LOCAL_ARRAY)
|
||||
@@ -96,6 +133,150 @@ def detect_mode(scr):
|
||||
return "footer" if n_footer >= max(4, n_int) else "numeric"
|
||||
|
||||
|
||||
def _eval_static_arg(arg, locals_: dict[int, int]):
|
||||
arg_type, value = arg
|
||||
if arg_type == T_IMM:
|
||||
return value
|
||||
if arg_type == T_LOCAL_INT:
|
||||
return locals_.get(value)
|
||||
return None
|
||||
|
||||
|
||||
def _mixed_array_layouts(scr, first_guard_index: int) -> dict[int, dict]:
|
||||
"""Recover fixed global-buffer lengths initialized before the dispatch."""
|
||||
locals_: dict[int, int] = {}
|
||||
layouts: dict[int, dict] = {}
|
||||
for ins in scr.instructions[:first_guard_index]:
|
||||
label = sys4load.display_label(ins.opcode)
|
||||
if ins.args and ins.args[0][0] == T_LOCAL_INT:
|
||||
destination = ins.args[0][1]
|
||||
operands = [_eval_static_arg(arg, locals_) for arg in ins.args[1:]]
|
||||
value = None
|
||||
if label == "mov" and operands:
|
||||
value = operands[0]
|
||||
elif len(operands) >= 2 and None not in operands[:2]:
|
||||
left, right = operands[:2]
|
||||
if label == "add":
|
||||
value = left + right
|
||||
elif label == "sub":
|
||||
value = left - right
|
||||
elif label == "mul":
|
||||
value = left * right
|
||||
elif label == "div" and right:
|
||||
value = left // right
|
||||
if value is None:
|
||||
locals_.pop(destination, None)
|
||||
else:
|
||||
locals_[destination] = value
|
||||
if (ins.opcode == COPY_TO_GLOBAL
|
||||
and len(ins.args) >= 2
|
||||
and ins.args[0][0] == T_GLOBAL_INT):
|
||||
length = _eval_static_arg(ins.args[1], locals_)
|
||||
if isinstance(length, int) and length > 0:
|
||||
layouts[ins.args[0][1]] = {"length": length}
|
||||
|
||||
known = dict(_known_record_tables())
|
||||
for base, layout in layouts.items():
|
||||
if stride := known.get(base):
|
||||
layout["stride"] = stride
|
||||
if layout["length"] % stride == 0:
|
||||
layout["rows"] = layout["length"] // stride
|
||||
return layouts
|
||||
|
||||
|
||||
def _mixed_buffer_key(destination: int, layouts: dict[int, dict]) -> str | None:
|
||||
matches = [
|
||||
(base, destination - base)
|
||||
for base, layout in layouts.items()
|
||||
if base <= destination < base + layout["length"]
|
||||
]
|
||||
if len(matches) > 1:
|
||||
raise ValueError(f"ambiguous mixed-table destination 0x{destination:x}: {matches}")
|
||||
if not matches:
|
||||
return None
|
||||
base, index = matches[0]
|
||||
return f"0x{base:x}/{index}"
|
||||
|
||||
|
||||
def _store_unique(target: dict, key: str, value, record_id: int) -> None:
|
||||
if key in target and target[key] != value:
|
||||
raise ValueError(f"mixed record {record_id}: conflicting writes to {key}")
|
||||
target[key] = value
|
||||
|
||||
|
||||
def extract_mixed(scr):
|
||||
"""Extract selector-dispatched records that populate a shared runtime buffer."""
|
||||
guards = _mixed_guards(scr)
|
||||
if not guards:
|
||||
return [], {}
|
||||
layouts = _mixed_array_layouts(scr, guards[0]["index"])
|
||||
records = []
|
||||
instructions = scr.instructions
|
||||
for guard_index, guard in enumerate(guards):
|
||||
end = guards[guard_index + 1]["index"] if guard_index + 1 < len(guards) else len(instructions)
|
||||
record = {
|
||||
"id": guard["id"],
|
||||
"guard_offset": f"0x{guard['offset']:x}",
|
||||
"string_fields": {},
|
||||
"fields": {},
|
||||
"array_fields": {},
|
||||
"footer_arrays": {},
|
||||
}
|
||||
for ins in instructions[guard["index"] + 2:end]:
|
||||
if (ins.opcode == SET_STRING
|
||||
and len(ins.args) >= 2
|
||||
and ins.args[0][0] == T_GLOBAL_STRING):
|
||||
text = scr.strings.get(ins.args[1][1], (None,))[0]
|
||||
_store_unique(
|
||||
record["string_fields"], f"0x{ins.args[0][1]:x}", text, record["id"]
|
||||
)
|
||||
continue
|
||||
if (ins.opcode == COPY_LOCAL_ARRAY
|
||||
and len(ins.args) >= 2
|
||||
and ins.args[0][0] == T_GLOBAL_INT
|
||||
and ins.args[1][0] == T_IMM):
|
||||
destination = ins.args[0][1]
|
||||
footer_off = ins.args[1][1]
|
||||
values = read_footer_array(scr, footer_off)
|
||||
if values is None:
|
||||
raise ValueError(
|
||||
f"mixed record {record['id']}: invalid footer array 0x{footer_off:x}"
|
||||
)
|
||||
key = _mixed_buffer_key(destination, layouts) or f"0x{destination:x}"
|
||||
_store_unique(record["footer_arrays"], key, {
|
||||
"footer_off": f"0x{footer_off:x}",
|
||||
"values": values,
|
||||
}, record["id"])
|
||||
continue
|
||||
if (write := _static_global_write(ins)) is not None:
|
||||
destination, value = write
|
||||
key = _mixed_buffer_key(destination, layouts)
|
||||
target = record["array_fields"] if key else record["fields"]
|
||||
_store_unique(target, key or f"0x{destination:x}", value, record["id"])
|
||||
for key in ("string_fields", "fields", "array_fields", "footer_arrays"):
|
||||
if not record[key]:
|
||||
del record[key]
|
||||
records.append(record)
|
||||
|
||||
layouts_json = {
|
||||
f"0x{base:x}": layout for base, layout in sorted(layouts.items())
|
||||
}
|
||||
key_sort = lambda key: tuple(int(part, 0) for part in key.split("/"))
|
||||
return records, {
|
||||
"selector_global": f"0x{guards[0]['selector']:x}",
|
||||
"array_layouts": layouts_json,
|
||||
"string_field_columns": sorted({
|
||||
key for record in records for key in record.get("string_fields", {})
|
||||
}, key=lambda key: int(key, 16)),
|
||||
"array_field_columns": sorted({
|
||||
key for record in records for key in record.get("array_fields", {})
|
||||
}, key=key_sort),
|
||||
"footer_array_columns": sorted({
|
||||
key for record in records for key in record.get("footer_arrays", {})
|
||||
}, key=key_sort),
|
||||
}
|
||||
|
||||
|
||||
def _infer_record_span(string_addrs):
|
||||
"""Infer the reserved width of one parallel string-array column.
|
||||
|
||||
@@ -294,7 +475,13 @@ def field_semantics(records: list[dict]) -> dict[str, str]:
|
||||
keys = {
|
||||
key
|
||||
for record in records
|
||||
for key in (*record.get("fields", {}), *record.get("record_fields", {}))
|
||||
for key in (
|
||||
*record.get("string_fields", {}),
|
||||
*record.get("fields", {}),
|
||||
*record.get("array_fields", {}),
|
||||
*record.get("footer_arrays", {}),
|
||||
*record.get("record_fields", {}),
|
||||
)
|
||||
}
|
||||
registry = _global_registry()
|
||||
semantics = {}
|
||||
@@ -306,7 +493,9 @@ def field_semantics(records: list[dict]) -> dict[str, str]:
|
||||
name = entry.get("name")
|
||||
if not name:
|
||||
continue
|
||||
if len(parts) == 3:
|
||||
if len(parts) == 2:
|
||||
name = f"{name}.index_{parts[1]}"
|
||||
elif len(parts) == 3:
|
||||
column = parts[2]
|
||||
column_name = entry.get("columns", {}).get(column, f"column_{column}")
|
||||
name = f"{name}.{column_name}"
|
||||
@@ -334,8 +523,8 @@ def write_data_index(data_dir: Path) -> None:
|
||||
"bases remain available in every record; confirmed field meanings live in",
|
||||
"`vm-map/globals.toml` and the generated `docs/global-reference.md`.",
|
||||
"",
|
||||
"| file | mode | records | messages | array fields | record columns |",
|
||||
"|---|---|---:|---:|---:|---:|",
|
||||
"| file | mode | records | messages | scalar/array fields | strings | buffer cells | footer arrays | record columns |",
|
||||
"|---|---|---:|---:|---:|---:|---:|---:|---:|",
|
||||
]
|
||||
for filename, data in tables:
|
||||
columns = len(data.get("field_columns") or [])
|
||||
@@ -345,7 +534,9 @@ def write_data_index(data_dir: Path) -> None:
|
||||
)
|
||||
lines.append(
|
||||
f"| `{filename}` | {data['mode']} | {data['record_count']} | "
|
||||
f"{message_count} | {columns} | {record_columns} |"
|
||||
f"{message_count} | {columns} | {len(data.get('string_field_columns') or [])} | "
|
||||
f"{len(data.get('array_field_columns') or [])} | "
|
||||
f"{len(data.get('footer_array_columns') or [])} | {record_columns} |"
|
||||
)
|
||||
lines += [
|
||||
"",
|
||||
@@ -360,16 +551,31 @@ def write_data_index(data_dir: Path) -> None:
|
||||
"Top-level `field_semantics` maps raw array/row-column keys to canonical machine-readable",
|
||||
"names from `vm-map/globals.toml`; raw keys remain intact as bytecode provenance.",
|
||||
"",
|
||||
"Mixed-mode tables preserve the sparse selector id, branch offset, condition strings,",
|
||||
"scalar fields, cells within preallocated buffers, and length-prefixed footer arrays.",
|
||||
"Use `tools/init_table_profile.py <TABLE> --build` to generate value/population and",
|
||||
"direct-consumer evidence. `STINIT` still requires a bespoke mixed numeric/string parser.",
|
||||
"direct-consumer evidence.",
|
||||
"",
|
||||
]
|
||||
(data_dir / "README.md").write_text("\n".join(lines), encoding="utf8")
|
||||
|
||||
|
||||
def main() -> int:
|
||||
argv = [a for a in sys.argv[1:] if not a.startswith("--")]
|
||||
mode_arg = next((sys.argv[i + 1] for i, a in enumerate(sys.argv) if a == "--mode"), None)
|
||||
argv = []
|
||||
mode_arg = None
|
||||
index = 1
|
||||
while index < len(sys.argv):
|
||||
arg = sys.argv[index]
|
||||
if arg == "--mode":
|
||||
if index + 1 >= len(sys.argv):
|
||||
raise SystemExit("--mode requires a value")
|
||||
mode_arg = sys.argv[index + 1]
|
||||
index += 2
|
||||
continue
|
||||
if arg.startswith("--"):
|
||||
raise SystemExit(f"unknown option: {arg}")
|
||||
argv.append(arg)
|
||||
index += 1
|
||||
if not argv:
|
||||
raise SystemExit(__doc__)
|
||||
name = argv[0].upper().removesuffix(".BIN")
|
||||
@@ -377,7 +583,12 @@ def main() -> int:
|
||||
scr = sys4load.load(resolve(name))
|
||||
|
||||
mode = mode_arg or detect_mode(scr)
|
||||
extractor = {"name": extract_name, "numeric": extract_numeric, "footer": extract_footer}[mode]
|
||||
extractor = {
|
||||
"name": extract_name,
|
||||
"numeric": extract_numeric,
|
||||
"footer": extract_footer,
|
||||
"mixed": extract_mixed,
|
||||
}[mode]
|
||||
recs, meta = extractor(scr)
|
||||
if mode == "name" and name in MESSAGE_TABLES:
|
||||
message_name = MESSAGE_TABLES[name]
|
||||
@@ -403,7 +614,8 @@ def main() -> int:
|
||||
print(f" id {r['id']:>4} {r['global_addr']} <- footer {r['footer_off']} "
|
||||
f"len {r['length']} head={r['values'][:8]}")
|
||||
else:
|
||||
f4 = {k: r['fields'][k] for k in list(r['fields'])[:4]}
|
||||
fields = r.get("fields", {})
|
||||
f4 = {k: fields[k] for k in list(fields)[:4]}
|
||||
print(f" id {r['id']:>4} {r.get('name','')!r:12} desc={r.get('desc','')!r} {f4}")
|
||||
return 0
|
||||
|
||||
|
||||
@@ -37,8 +37,8 @@ def load_table(name: str) -> dict:
|
||||
if not path.exists():
|
||||
raise SystemExit(f"missing extracted table: {path}")
|
||||
data = json.loads(path.read_text(encoding="utf8"))
|
||||
if data.get("mode") not in {"name", "numeric"}:
|
||||
raise SystemExit(f"{name}: field profiling requires name/numeric mode")
|
||||
if data.get("mode") not in {"name", "numeric", "mixed"}:
|
||||
raise SystemExit(f"{name}: field profiling requires name/numeric/mixed mode")
|
||||
return data
|
||||
|
||||
|
||||
@@ -54,49 +54,87 @@ def profile_columns(data: dict) -> list[dict]:
|
||||
values: dict[str, list] = collections.defaultdict(list)
|
||||
examples: dict[str, list[dict]] = collections.defaultdict(list)
|
||||
identities: dict[str, dict] = {}
|
||||
|
||||
def record_name(record: dict) -> str:
|
||||
if record.get("name"):
|
||||
return record["name"]
|
||||
return next(
|
||||
(text for text in record.get("string_fields", {}).values() if text),
|
||||
f"record {record['id']}",
|
||||
)
|
||||
|
||||
def add(key: str, identity: dict, value, record: dict, **extra) -> None:
|
||||
identities[key] = identity
|
||||
values[key].append(value)
|
||||
if len(examples[key]) < 5:
|
||||
example = {
|
||||
"id": record["id"],
|
||||
"name": record_name(record),
|
||||
"value": value,
|
||||
**extra,
|
||||
}
|
||||
if message := record.get("message"):
|
||||
example["message_description"] = message.get("description", "")
|
||||
examples[key].append(example)
|
||||
|
||||
for record in records:
|
||||
for address, value in record.get("fields", {}).items():
|
||||
base = int(address, 16)
|
||||
key = f"0x{base:x}"
|
||||
identities[key] = {
|
||||
"key": key, "kind": "parallel-array", "base": key,
|
||||
add(key, {
|
||||
"key": key,
|
||||
"kind": "scalar-field" if data.get("mode") == "mixed" else "parallel-array",
|
||||
"base": key,
|
||||
"stride": None, "column": None,
|
||||
"semantic_name": field_semantics.get(key),
|
||||
}
|
||||
values[key].append(value)
|
||||
if len(examples[key]) < 5:
|
||||
example = {
|
||||
"id": record["id"],
|
||||
"name": record.get("name", ""),
|
||||
"value": value,
|
||||
}
|
||||
if message := record.get("message"):
|
||||
example["message_description"] = message.get("description", "")
|
||||
examples[key].append(example)
|
||||
}, value, record)
|
||||
for address, value in record.get("string_fields", {}).items():
|
||||
base = int(address, 16)
|
||||
key = f"0x{base:x}"
|
||||
add(key, {
|
||||
"key": key, "kind": "string-field", "base": key,
|
||||
"stride": None, "column": None,
|
||||
"semantic_name": field_semantics.get(key),
|
||||
}, value, record)
|
||||
for key, value in record.get("record_fields", {}).items():
|
||||
base_text, stride_text, column_text = key.split("/")
|
||||
base = int(base_text, 16)
|
||||
stride = int(stride_text)
|
||||
column = int(column_text)
|
||||
normalized_key = f"0x{base:x}/{stride}/{column}"
|
||||
identities[normalized_key] = {
|
||||
add(normalized_key, {
|
||||
"key": normalized_key,
|
||||
"kind": "record-column",
|
||||
"base": f"0x{base:x}",
|
||||
"stride": stride,
|
||||
"column": column,
|
||||
"semantic_name": field_semantics.get(normalized_key),
|
||||
}
|
||||
values[normalized_key].append(value)
|
||||
if len(examples[normalized_key]) < 5:
|
||||
example = {
|
||||
"id": record["id"],
|
||||
"name": record.get("name", ""),
|
||||
"value": value,
|
||||
}
|
||||
if message := record.get("message"):
|
||||
example["message_description"] = message.get("description", "")
|
||||
examples[normalized_key].append(example)
|
||||
}, value, record)
|
||||
for kind, field_name in (
|
||||
("array-cell", "array_fields"),
|
||||
("footer-array", "footer_arrays"),
|
||||
):
|
||||
for key, raw_value in record.get(field_name, {}).items():
|
||||
parts = key.split("/")
|
||||
base = int(parts[0], 16)
|
||||
index = int(parts[1]) if len(parts) == 2 else None
|
||||
layout = data.get("array_layouts", {}).get(f"0x{base:x}", {})
|
||||
stride = layout.get("stride")
|
||||
column = index % stride if index is not None and stride else None
|
||||
value = raw_value.get("values", []) if kind == "footer-array" else raw_value
|
||||
extra = (
|
||||
{"footer_off": raw_value.get("footer_off")}
|
||||
if kind == "footer-array" else {}
|
||||
)
|
||||
add(key, {
|
||||
"key": key,
|
||||
"kind": kind,
|
||||
"base": f"0x{base:x}",
|
||||
"index": index,
|
||||
"stride": stride,
|
||||
"column": column,
|
||||
"semantic_name": field_semantics.get(key),
|
||||
}, value, record, **extra)
|
||||
|
||||
rows = []
|
||||
for key, vals in values.items():
|
||||
@@ -283,6 +321,10 @@ def main() -> int:
|
||||
"field_column_count": len(rows),
|
||||
"parallel_array_count": sum(row["kind"] == "parallel-array" for row in rows),
|
||||
"record_column_count": sum(row["kind"] == "record-column" for row in rows),
|
||||
"scalar_field_count": sum(row["kind"] == "scalar-field" for row in rows),
|
||||
"string_field_count": sum(row["kind"] == "string-field" for row in rows),
|
||||
"array_cell_count": sum(row["kind"] == "array-cell" for row in rows),
|
||||
"footer_array_count": sum(row["kind"] == "footer-array" for row in rows),
|
||||
"message_profile": messages,
|
||||
"columns": sorted(rows, key=lambda row: (
|
||||
int(row["base"], 16), row["stride"] or 0, row["column"] or 0
|
||||
|
||||
@@ -66,6 +66,35 @@ def test_static_negative_write() -> None:
|
||||
"INIT subtraction writes preserve negative values")
|
||||
|
||||
|
||||
def test_real_mixed_table() -> None:
|
||||
script = sys4load.load(extract_init.resolve("STINIT"))
|
||||
check(extract_init.detect_mode(script) == "mixed",
|
||||
"STINIT auto-detects as a mixed selector table")
|
||||
records, meta = extract_init.extract_mixed(script)
|
||||
check(len(records) == 74, "STINIT extracts all 74 sparse stage records")
|
||||
check(records[0]["id"] == 1 and records[-1]["id"] == 170,
|
||||
"STINIT preserves sparse runtime stage ids")
|
||||
check(meta["selector_global"] == "0x4dfbc",
|
||||
"STINIT records are keyed by scjump_progress_a")
|
||||
check(meta["array_layouts"]["0xe74b5"] == {
|
||||
"length": 350, "stride": 7, "rows": 50,
|
||||
}, "STINIT preamble recovers a consumer-confirmed row buffer")
|
||||
stage1 = records[0]
|
||||
check(list(stage1["string_fields"].values()) == [
|
||||
"オークの撃破", "", "自軍拠点の制圧", "50ターン経過",
|
||||
], "STINIT stage 1 preserves all four condition strings")
|
||||
check(stage1["fields"]["0xe7302"] == 12
|
||||
and stage1["fields"]["0xe730c"] == 50
|
||||
and stage1["fields"]["0xe730d"] == 0,
|
||||
"STINIT stage 1 preserves BGM and turn-limit scalars")
|
||||
check(stage1["array_fields"]["0xe7305/3"] == -2,
|
||||
"STINIT fixed-buffer cells preserve negative values")
|
||||
check(stage1["footer_arrays"]["0xe7889/3"]["values"] == [1, 1, 1],
|
||||
"STINIT length-prefixed footer arrays retain their destination")
|
||||
check(sum(len(record.get("footer_arrays", {})) for record in records) == 1396,
|
||||
"STINIT accounts for every footer-array copy")
|
||||
|
||||
|
||||
def test_real_message_tables() -> None:
|
||||
scripts = paths.scripts()
|
||||
expected = {
|
||||
@@ -143,6 +172,7 @@ def test_field_semantics() -> None:
|
||||
if __name__ == "__main__":
|
||||
test_real_name_tables()
|
||||
test_static_negative_write()
|
||||
test_real_mixed_table()
|
||||
test_real_message_tables()
|
||||
test_message_join()
|
||||
test_field_semantics()
|
||||
|
||||
@@ -41,6 +41,35 @@ def main() -> int:
|
||||
assert rows["0x30/3/0"]["stride"] == 3
|
||||
assert rows["0x30/3/0"]["semantic_name"] == "test_record.zero"
|
||||
assert rows["0x30/3/2"]["column"] == 2
|
||||
|
||||
mixed_fixture = {
|
||||
"table": "MIXED",
|
||||
"mode": "mixed",
|
||||
"array_layouts": {"0x100": {"length": 9, "stride": 3, "rows": 3}},
|
||||
"field_semantics": {"0x40": "condition", "0x50": "scalar"},
|
||||
"records": [
|
||||
{
|
||||
"id": 11,
|
||||
"string_fields": {"0x40": "Win"},
|
||||
"fields": {"0x50": 20},
|
||||
"array_fields": {"0x100/4": 7},
|
||||
"footer_arrays": {
|
||||
"0x100/6": {"footer_off": "0x200", "values": [1, 2, 3]},
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
mixed = {row["key"]: row for row in profile.profile_columns(mixed_fixture)}
|
||||
assert mixed["0x40"]["kind"] == "string-field"
|
||||
assert mixed["0x40"]["semantic_name"] == "condition"
|
||||
assert mixed["0x50"]["kind"] == "scalar-field"
|
||||
assert mixed["0x100/4"]["kind"] == "array-cell"
|
||||
assert mixed["0x100/4"]["stride"] == 3 and mixed["0x100/4"]["column"] == 1
|
||||
assert mixed["0x100/6"]["kind"] == "footer-array"
|
||||
assert mixed["0x100/6"]["examples"][0]["footer_off"] == "0x200"
|
||||
assert mixed["0x100/6"]["common"][0]["value"] == "[1, 2, 3]"
|
||||
assert mixed["0x40"]["examples"][0]["name"] == "Win"
|
||||
|
||||
messages = profile.profile_messages(fixture)
|
||||
assert messages["population"] == 1
|
||||
assert messages["coverage"] == 1 / 3
|
||||
|
||||
Reference in New Issue
Block a user