Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
145 changes: 77 additions & 68 deletions docs/language_status/assembly.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/self_scan/tri_comparison_chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
468 changes: 215 additions & 253 deletions docs/self_scan/tri_comparison_ledger.json

Large diffs are not rendered by default.

215 changes: 105 additions & 110 deletions docs/self_scan/tri_comparison_points_of_interest.md

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion gitgalaxy/standards/language_standards.py
Original file line number Diff line number Diff line change
Expand Up @@ -7140,8 +7140,23 @@ class PrismConfigSchema(TypedDict):
),
# 4. func_start (Executable Logic Anchors)
# Subroutine entry points. EXCLUDES data labels or local loop markers.
# The trailing negative lookahead is the generic-assembly counterpart to
# agc_assembly's "label must be followed by a real opcode" positive lookahead,
# inverted for the own-line-label convention this dialect uses: a label whose
# colon is followed (same line, or the very next line) only by a pure
# data-emission / location-counter directive (`.asciz`, `.byte`, `.org`,
# `.endobj`, NASM `db`/`resb`/`times`, ...) is a data object, not a subroutine
# entry -- e.g. cosmopolitan/ape.S's `ape.mbrpad:` / `.org 0x1b4`
# (assembly/function/existence/agree[gitgalaxy]_vs[ctags], the mirror of
# agc_assembly's own data-label win). Section/visibility/type/align directives
# are deliberately NOT in the list -- those legitimately sit between a real
# function's label and its first instruction.
"func_start": re.compile(
r"^[ \t]*(?!\.L|\.LC|\d|\.text|\.data|\.bss)([a-zA-Z_?@.][a-zA-Z0-9_.$?@]*)(?=[ \t]*:)",
r"^[ \t]*(?!\.L|\.LC|\d|\.text|\.data|\.bss)([a-zA-Z_?@.][a-zA-Z0-9_.$?@]*)(?=[ \t]*:)"
r"(?![ \t]*:[ \t]*(?:\r?\n[ \t]*)?"
r"(?:\.(?:org|endobj|asciz|ascii|string|byte|hword|short|word|long|int|value"
r"|quad|octa|single|double|float|fill|space|skip|zero|incbin)"
r"|d[bwdq]|res[bwdq]|times)\b)",
re.M,
),
# 5. class_start (Object / Entity Declarations)
Expand Down
Loading
Loading