2023-08-04 13:35:56 -03:00
|
|
|
import dataclasses
|
|
|
|
import typing
|
|
|
|
|
2023-08-16 20:26:43 -03:00
|
|
|
from flags import variable_used_unspecialized
|
2023-08-04 13:35:56 -03:00
|
|
|
from formatting import (
|
|
|
|
Formatter,
|
|
|
|
UNUSED,
|
|
|
|
maybe_parenthesize,
|
|
|
|
parenthesize_cond,
|
|
|
|
)
|
|
|
|
from instructions import (
|
|
|
|
ActiveCacheEffect,
|
|
|
|
Instruction,
|
|
|
|
MacroInstruction,
|
|
|
|
Component,
|
|
|
|
Tiers,
|
|
|
|
TIER_ONE,
|
|
|
|
)
|
|
|
|
from parsing import StackEffect, CacheEffect, Family
|
|
|
|
|
|
|
|
|
|
|
|
@dataclasses.dataclass
|
|
|
|
class StackOffset:
|
|
|
|
"""Represent the stack offset for a PEEK or POKE.
|
|
|
|
|
|
|
|
- At stack_pointer[0], deep and high are both empty.
|
|
|
|
(Note that that is an invalid stack reference.)
|
|
|
|
- Below stack top, only deep is non-empty.
|
|
|
|
- Above stack top, only high is non-empty.
|
|
|
|
- In complex cases, both deep and high may be non-empty.
|
|
|
|
|
|
|
|
All this would be much simpler if all stack entries were the same
|
|
|
|
size, but with conditional and array effects, they aren't.
|
|
|
|
The offsets are each represented by a list of StackEffect objects.
|
|
|
|
The name in the StackEffects is unused.
|
|
|
|
"""
|
|
|
|
|
|
|
|
deep: list[StackEffect] = dataclasses.field(default_factory=list)
|
|
|
|
high: list[StackEffect] = dataclasses.field(default_factory=list)
|
|
|
|
|
|
|
|
def clone(self) -> "StackOffset":
|
|
|
|
return StackOffset(list(self.deep), list(self.high))
|
|
|
|
|
|
|
|
def negate(self) -> "StackOffset":
|
|
|
|
return StackOffset(list(self.high), list(self.deep))
|
|
|
|
|
|
|
|
def deeper(self, eff: StackEffect) -> None:
|
|
|
|
if eff in self.high:
|
|
|
|
self.high.remove(eff)
|
|
|
|
else:
|
|
|
|
self.deep.append(eff)
|
|
|
|
|
|
|
|
def higher(self, eff: StackEffect) -> None:
|
|
|
|
if eff in self.deep:
|
|
|
|
self.deep.remove(eff)
|
|
|
|
else:
|
|
|
|
self.high.append(eff)
|
|
|
|
|
|
|
|
def as_terms(self) -> list[tuple[str, str]]:
|
|
|
|
num = 0
|
|
|
|
terms: list[tuple[str, str]] = []
|
|
|
|
for eff in self.deep:
|
|
|
|
if eff.size:
|
|
|
|
terms.append(("-", maybe_parenthesize(eff.size)))
|
2023-08-12 16:36:46 -03:00
|
|
|
elif eff.cond and eff.cond not in ("0", "1"):
|
2023-08-04 13:35:56 -03:00
|
|
|
terms.append(("-", f"({parenthesize_cond(eff.cond)} ? 1 : 0)"))
|
|
|
|
elif eff.cond != "0":
|
|
|
|
num -= 1
|
|
|
|
for eff in self.high:
|
|
|
|
if eff.size:
|
|
|
|
terms.append(("+", maybe_parenthesize(eff.size)))
|
2023-08-12 16:36:46 -03:00
|
|
|
elif eff.cond and eff.cond not in ("0", "1"):
|
2023-08-04 13:35:56 -03:00
|
|
|
terms.append(("+", f"({parenthesize_cond(eff.cond)} ? 1 : 0)"))
|
|
|
|
elif eff.cond != "0":
|
|
|
|
num += 1
|
|
|
|
if num < 0:
|
|
|
|
terms.insert(0, ("-", str(-num)))
|
|
|
|
elif num > 0:
|
|
|
|
terms.append(("+", str(num)))
|
|
|
|
return terms
|
|
|
|
|
|
|
|
def as_index(self) -> str:
|
|
|
|
terms = self.as_terms()
|
|
|
|
return make_index(terms)
|
|
|
|
|
2023-08-24 16:10:51 -03:00
|
|
|
def equivalent_to(self, other: "StackOffset") -> bool:
|
|
|
|
if self.deep == other.deep and self.high == other.high:
|
|
|
|
return True
|
|
|
|
deep = list(self.deep)
|
|
|
|
for x in other.deep:
|
|
|
|
try:
|
|
|
|
deep.remove(x)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
if deep:
|
|
|
|
return False
|
|
|
|
high = list(self.high)
|
|
|
|
for x in other.high:
|
|
|
|
try:
|
|
|
|
high.remove(x)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
if high:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2023-08-04 13:35:56 -03:00
|
|
|
|
|
|
|
def make_index(terms: list[tuple[str, str]]) -> str:
|
|
|
|
# Produce an index expression from the terms honoring PEP 8,
|
|
|
|
# surrounding binary ops with spaces but not unary minus
|
|
|
|
index = ""
|
|
|
|
for sign, term in terms:
|
|
|
|
if index:
|
|
|
|
index += f" {sign} {term}"
|
|
|
|
elif sign == "+":
|
|
|
|
index = term
|
|
|
|
else:
|
|
|
|
index = sign + term
|
|
|
|
return index or "0"
|
|
|
|
|
|
|
|
|
|
|
|
@dataclasses.dataclass
|
|
|
|
class StackItem:
|
|
|
|
offset: StackOffset
|
|
|
|
effect: StackEffect
|
|
|
|
|
|
|
|
def as_variable(self, lax: bool = False) -> str:
|
|
|
|
"""Return e.g. stack_pointer[-1]."""
|
|
|
|
terms = self.offset.as_terms()
|
|
|
|
if self.effect.size:
|
|
|
|
terms.insert(0, ("+", "stack_pointer"))
|
|
|
|
index = make_index(terms)
|
|
|
|
if self.effect.size:
|
|
|
|
res = index
|
|
|
|
else:
|
|
|
|
res = f"stack_pointer[{index}]"
|
|
|
|
if not lax:
|
|
|
|
# Check that we're not reading or writing above stack top.
|
|
|
|
# Skip this for output variable initialization (lax=True).
|
|
|
|
assert (
|
|
|
|
self.effect in self.offset.deep and not self.offset.high
|
|
|
|
), f"Push or pop above current stack level: {res}"
|
|
|
|
return res
|
|
|
|
|
2023-08-08 01:32:42 -03:00
|
|
|
def as_stack_effect(self, lax: bool = False) -> StackEffect:
|
|
|
|
return StackEffect(
|
|
|
|
self.as_variable(lax=lax),
|
|
|
|
self.effect.type if self.effect.size else "",
|
|
|
|
self.effect.cond,
|
|
|
|
self.effect.size,
|
|
|
|
)
|
|
|
|
|
2023-08-04 13:35:56 -03:00
|
|
|
|
|
|
|
@dataclasses.dataclass
|
2023-08-24 16:10:51 -03:00
|
|
|
class CopyItem:
|
|
|
|
src: StackItem
|
|
|
|
dst: StackItem
|
2023-08-04 13:35:56 -03:00
|
|
|
|
|
|
|
|
|
|
|
class EffectManager:
|
|
|
|
"""Manage stack effects and offsets for an instruction."""
|
|
|
|
|
|
|
|
instr: Instruction
|
|
|
|
active_caches: list[ActiveCacheEffect]
|
|
|
|
peeks: list[StackItem]
|
|
|
|
pokes: list[StackItem]
|
2023-08-24 16:10:51 -03:00
|
|
|
copies: list[CopyItem] # See merge()
|
2023-08-04 13:35:56 -03:00
|
|
|
# Track offsets from stack pointer
|
|
|
|
min_offset: StackOffset
|
|
|
|
final_offset: StackOffset
|
2023-08-16 20:26:43 -03:00
|
|
|
# Link to previous manager
|
|
|
|
pred: "EffectManager | None" = None
|
2023-08-04 13:35:56 -03:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
instr: Instruction,
|
|
|
|
active_caches: list[ActiveCacheEffect],
|
|
|
|
pred: "EffectManager | None" = None,
|
|
|
|
):
|
|
|
|
self.instr = instr
|
|
|
|
self.active_caches = active_caches
|
|
|
|
self.peeks = []
|
|
|
|
self.pokes = []
|
|
|
|
self.copies = []
|
|
|
|
self.final_offset = pred.final_offset.clone() if pred else StackOffset()
|
|
|
|
for eff in reversed(instr.input_effects):
|
|
|
|
self.final_offset.deeper(eff)
|
|
|
|
self.peeks.append(StackItem(offset=self.final_offset.clone(), effect=eff))
|
|
|
|
self.min_offset = self.final_offset.clone()
|
|
|
|
for eff in instr.output_effects:
|
|
|
|
self.pokes.append(StackItem(offset=self.final_offset.clone(), effect=eff))
|
|
|
|
self.final_offset.higher(eff)
|
|
|
|
|
2023-08-16 20:26:43 -03:00
|
|
|
self.pred = pred
|
|
|
|
while pred:
|
2023-08-04 13:35:56 -03:00
|
|
|
# Replace push(x) + pop(y) with copy(x, y).
|
|
|
|
# Check that the sources and destinations are disjoint.
|
|
|
|
sources: set[str] = set()
|
|
|
|
destinations: set[str] = set()
|
|
|
|
while (
|
|
|
|
pred.pokes
|
|
|
|
and self.peeks
|
2023-08-24 16:10:51 -03:00
|
|
|
and pred.pokes[-1].effect == self.peeks[0].effect
|
2023-08-04 13:35:56 -03:00
|
|
|
):
|
2023-08-24 16:10:51 -03:00
|
|
|
src = pred.pokes.pop(-1)
|
|
|
|
dst = self.peeks.pop(0)
|
|
|
|
assert src.offset.equivalent_to(dst.offset), (src, dst)
|
|
|
|
pred.final_offset.deeper(src.effect)
|
|
|
|
if dst.effect.name != src.effect.name:
|
|
|
|
if dst.effect.name != UNUSED:
|
|
|
|
destinations.add(dst.effect.name)
|
|
|
|
if src.effect.name != UNUSED:
|
|
|
|
sources.add(src.effect.name)
|
|
|
|
self.copies.append(CopyItem(src, dst))
|
2023-08-04 13:35:56 -03:00
|
|
|
# TODO: Turn this into an error (pass an Analyzer instance?)
|
|
|
|
assert sources & destinations == set(), (
|
|
|
|
pred.instr.name,
|
|
|
|
self.instr.name,
|
|
|
|
sources,
|
|
|
|
destinations,
|
|
|
|
)
|
2023-08-16 20:26:43 -03:00
|
|
|
# See if we can get more copies of a earlier predecessor.
|
|
|
|
if self.peeks and not pred.pokes and not pred.peeks:
|
|
|
|
pred = pred.pred
|
|
|
|
else:
|
|
|
|
pred = None # Break
|
2023-08-04 13:35:56 -03:00
|
|
|
|
2023-08-24 16:10:51 -03:00
|
|
|
# Fix up patterns of copies through UNUSED,
|
|
|
|
# e.g. cp(a, UNUSED) + cp(UNUSED, b) -> cp(a, b).
|
|
|
|
if any(copy.src.effect.name == UNUSED for copy in self.copies):
|
|
|
|
pred = self.pred
|
|
|
|
while pred is not None:
|
|
|
|
for copy in self.copies:
|
|
|
|
if copy.src.effect.name == UNUSED:
|
|
|
|
for pred_copy in pred.copies:
|
|
|
|
if pred_copy.dst == copy.src:
|
|
|
|
copy.src = pred_copy.src
|
|
|
|
break
|
|
|
|
pred = pred.pred
|
|
|
|
|
2023-08-04 13:35:56 -03:00
|
|
|
def adjust_deeper(self, eff: StackEffect) -> None:
|
|
|
|
for peek in self.peeks:
|
|
|
|
peek.offset.deeper(eff)
|
|
|
|
for poke in self.pokes:
|
|
|
|
poke.offset.deeper(eff)
|
2023-08-24 16:10:51 -03:00
|
|
|
for copy in self.copies:
|
|
|
|
copy.src.offset.deeper(eff)
|
|
|
|
copy.dst.offset.deeper(eff)
|
2023-08-04 13:35:56 -03:00
|
|
|
self.min_offset.deeper(eff)
|
|
|
|
self.final_offset.deeper(eff)
|
|
|
|
|
|
|
|
def adjust_higher(self, eff: StackEffect) -> None:
|
|
|
|
for peek in self.peeks:
|
|
|
|
peek.offset.higher(eff)
|
|
|
|
for poke in self.pokes:
|
|
|
|
poke.offset.higher(eff)
|
2023-08-24 16:10:51 -03:00
|
|
|
for copy in self.copies:
|
|
|
|
copy.src.offset.higher(eff)
|
|
|
|
copy.dst.offset.higher(eff)
|
2023-08-04 13:35:56 -03:00
|
|
|
self.min_offset.higher(eff)
|
|
|
|
self.final_offset.higher(eff)
|
|
|
|
|
|
|
|
def adjust(self, offset: StackOffset) -> None:
|
2023-09-05 17:58:39 -03:00
|
|
|
deep = list(offset.deep)
|
|
|
|
high = list(offset.high)
|
|
|
|
for down in deep:
|
2023-08-04 13:35:56 -03:00
|
|
|
self.adjust_deeper(down)
|
2023-09-05 17:58:39 -03:00
|
|
|
for up in high:
|
2023-08-04 13:35:56 -03:00
|
|
|
self.adjust_higher(up)
|
|
|
|
|
|
|
|
def adjust_inverse(self, offset: StackOffset) -> None:
|
2023-09-05 17:58:39 -03:00
|
|
|
deep = list(offset.deep)
|
|
|
|
high = list(offset.high)
|
|
|
|
for down in deep:
|
2023-08-04 13:35:56 -03:00
|
|
|
self.adjust_higher(down)
|
2023-09-05 17:58:39 -03:00
|
|
|
for up in high:
|
2023-08-04 13:35:56 -03:00
|
|
|
self.adjust_deeper(up)
|
|
|
|
|
|
|
|
def collect_vars(self) -> dict[str, StackEffect]:
|
|
|
|
"""Collect all variables, skipping unused ones."""
|
|
|
|
vars: dict[str, StackEffect] = {}
|
|
|
|
|
|
|
|
def add(eff: StackEffect) -> None:
|
|
|
|
if eff.name != UNUSED:
|
|
|
|
if eff.name in vars:
|
|
|
|
# TODO: Make this an error
|
|
|
|
assert vars[eff.name] == eff, (
|
|
|
|
self.instr.name,
|
|
|
|
eff.name,
|
|
|
|
vars[eff.name],
|
|
|
|
eff,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
vars[eff.name] = eff
|
|
|
|
|
|
|
|
for copy in self.copies:
|
2023-08-24 16:10:51 -03:00
|
|
|
add(copy.src.effect)
|
|
|
|
add(copy.dst.effect)
|
2023-08-04 13:35:56 -03:00
|
|
|
for peek in self.peeks:
|
|
|
|
add(peek.effect)
|
|
|
|
for poke in self.pokes:
|
|
|
|
add(poke.effect)
|
|
|
|
|
|
|
|
return vars
|
|
|
|
|
|
|
|
|
|
|
|
def less_than(a: StackOffset, b: StackOffset) -> bool:
|
|
|
|
# TODO: Handle more cases
|
|
|
|
if a.high != b.high:
|
|
|
|
return False
|
|
|
|
return a.deep[: len(b.deep)] == b.deep
|
|
|
|
|
|
|
|
|
|
|
|
def get_managers(parts: list[Component]) -> list[EffectManager]:
|
|
|
|
managers: list[EffectManager] = []
|
|
|
|
pred: EffectManager | None = None
|
|
|
|
for part in parts:
|
|
|
|
mgr = EffectManager(part.instr, part.active_caches, pred)
|
|
|
|
managers.append(mgr)
|
|
|
|
pred = mgr
|
|
|
|
return managers
|
|
|
|
|
|
|
|
|
|
|
|
def get_stack_effect_info_for_macro(mac: MacroInstruction) -> tuple[str, str]:
|
|
|
|
"""Get the stack effect info for a macro instruction.
|
|
|
|
|
|
|
|
Returns a tuple (popped, pushed) where each is a string giving a
|
|
|
|
symbolic expression for the number of values popped/pushed.
|
|
|
|
"""
|
|
|
|
parts = [part for part in mac.parts if isinstance(part, Component)]
|
|
|
|
managers = get_managers(parts)
|
|
|
|
popped = StackOffset()
|
|
|
|
for mgr in managers:
|
|
|
|
if less_than(mgr.min_offset, popped):
|
|
|
|
popped = mgr.min_offset.clone()
|
|
|
|
# Compute pushed = final - popped
|
|
|
|
pushed = managers[-1].final_offset.clone()
|
|
|
|
for effect in popped.deep:
|
|
|
|
pushed.higher(effect)
|
|
|
|
for effect in popped.high:
|
|
|
|
pushed.deeper(effect)
|
|
|
|
return popped.negate().as_index(), pushed.as_index()
|
|
|
|
|
|
|
|
|
|
|
|
def write_single_instr(
|
|
|
|
instr: Instruction, out: Formatter, tier: Tiers = TIER_ONE
|
|
|
|
) -> None:
|
|
|
|
try:
|
|
|
|
write_components(
|
|
|
|
[Component(instr, instr.active_caches)],
|
|
|
|
out,
|
|
|
|
tier,
|
2023-08-16 20:26:43 -03:00
|
|
|
0,
|
2023-10-03 14:13:50 -03:00
|
|
|
instr.family,
|
2023-08-04 13:35:56 -03:00
|
|
|
)
|
|
|
|
except AssertionError as err:
|
|
|
|
raise AssertionError(f"Error writing instruction {instr.name}") from err
|
|
|
|
|
|
|
|
|
2023-10-03 14:13:50 -03:00
|
|
|
def write_macro_instr(mac: MacroInstruction, out: Formatter) -> None:
|
2023-08-16 20:26:43 -03:00
|
|
|
parts = [
|
|
|
|
part
|
|
|
|
for part in mac.parts
|
2023-09-11 19:39:19 -03:00
|
|
|
if isinstance(part, Component) and part.instr.name != "_SET_IP"
|
2023-08-16 20:26:43 -03:00
|
|
|
]
|
2023-08-04 13:35:56 -03:00
|
|
|
out.emit("")
|
|
|
|
with out.block(f"TARGET({mac.name})"):
|
|
|
|
if mac.predicted:
|
|
|
|
out.emit(f"PREDICTED({mac.name});")
|
2023-10-03 14:13:50 -03:00
|
|
|
out.static_assert_family_size(mac.name, mac.family, mac.cache_offset)
|
2023-08-04 13:35:56 -03:00
|
|
|
try:
|
2023-10-03 14:13:50 -03:00
|
|
|
next_instr_is_set = write_components(
|
|
|
|
parts, out, TIER_ONE, mac.cache_offset, mac.family
|
|
|
|
)
|
2023-08-04 13:35:56 -03:00
|
|
|
except AssertionError as err:
|
|
|
|
raise AssertionError(f"Error writing macro {mac.name}") from err
|
2023-08-31 07:34:52 -03:00
|
|
|
if not parts[-1].instr.always_exits:
|
|
|
|
if not next_instr_is_set and mac.cache_offset:
|
2023-08-16 20:26:43 -03:00
|
|
|
out.emit(f"next_instr += {mac.cache_offset};")
|
2023-09-15 12:39:05 -03:00
|
|
|
if parts[-1].instr.check_eval_breaker:
|
|
|
|
out.emit("CHECK_EVAL_BREAKER();")
|
2023-08-16 20:26:43 -03:00
|
|
|
out.emit("DISPATCH();")
|
2023-08-04 13:35:56 -03:00
|
|
|
|
|
|
|
|
|
|
|
def write_components(
|
|
|
|
parts: list[Component],
|
|
|
|
out: Formatter,
|
|
|
|
tier: Tiers,
|
2023-08-16 20:26:43 -03:00
|
|
|
cache_offset: int,
|
2023-10-03 14:13:50 -03:00
|
|
|
family: Family | None,
|
2023-08-16 20:26:43 -03:00
|
|
|
) -> bool:
|
2023-08-04 13:35:56 -03:00
|
|
|
managers = get_managers(parts)
|
|
|
|
|
|
|
|
all_vars: dict[str, StackEffect] = {}
|
|
|
|
for mgr in managers:
|
|
|
|
for name, eff in mgr.collect_vars().items():
|
|
|
|
if name in all_vars:
|
|
|
|
# TODO: Turn this into an error -- variable conflict
|
|
|
|
assert all_vars[name] == eff, (
|
|
|
|
name,
|
|
|
|
mgr.instr.name,
|
|
|
|
all_vars[name],
|
|
|
|
eff,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
all_vars[name] = eff
|
|
|
|
|
|
|
|
# Declare all variables
|
|
|
|
for name, eff in all_vars.items():
|
|
|
|
out.declare(eff, None)
|
|
|
|
|
2023-08-16 20:26:43 -03:00
|
|
|
next_instr_is_set = False
|
2023-08-04 13:35:56 -03:00
|
|
|
for mgr in managers:
|
|
|
|
if len(parts) > 1:
|
|
|
|
out.emit(f"// {mgr.instr.name}")
|
|
|
|
|
|
|
|
for copy in mgr.copies:
|
2023-08-24 16:10:51 -03:00
|
|
|
copy_src_effect = copy.src.effect
|
|
|
|
if copy_src_effect.name != copy.dst.effect.name:
|
|
|
|
if copy_src_effect.name == UNUSED:
|
|
|
|
copy_src_effect = copy.src.as_stack_effect()
|
|
|
|
out.assign(copy.dst.effect, copy_src_effect)
|
2023-08-04 13:35:56 -03:00
|
|
|
for peek in mgr.peeks:
|
|
|
|
out.assign(
|
|
|
|
peek.effect,
|
2023-08-08 01:32:42 -03:00
|
|
|
peek.as_stack_effect(),
|
2023-08-04 13:35:56 -03:00
|
|
|
)
|
|
|
|
# Initialize array outputs
|
|
|
|
for poke in mgr.pokes:
|
|
|
|
if poke.effect.size and poke.effect.name not in mgr.instr.unmoved_names:
|
|
|
|
out.assign(
|
|
|
|
poke.effect,
|
2023-08-08 01:32:42 -03:00
|
|
|
poke.as_stack_effect(lax=True),
|
2023-08-04 13:35:56 -03:00
|
|
|
)
|
|
|
|
|
2023-08-17 15:29:58 -03:00
|
|
|
if mgr.instr.name in ("_PUSH_FRAME", "_POP_FRAME"):
|
2023-09-05 17:58:39 -03:00
|
|
|
# Adjust stack to min_offset.
|
|
|
|
# This means that all input effects of this instruction
|
|
|
|
# are materialized, but not its output effects.
|
|
|
|
# That's as intended, since these two are so special.
|
2023-08-16 20:26:43 -03:00
|
|
|
out.stack_adjust(mgr.min_offset.deep, mgr.min_offset.high)
|
2023-09-05 17:58:39 -03:00
|
|
|
# However, for tier 2, pretend the stack is at final offset.
|
|
|
|
mgr.adjust_inverse(mgr.final_offset)
|
|
|
|
if tier == TIER_ONE:
|
|
|
|
# TODO: Check in analyzer that _{PUSH,POP}_FRAME is last.
|
|
|
|
assert (
|
|
|
|
mgr is managers[-1]
|
|
|
|
), f"Expected {mgr.instr.name!r} to be the last uop"
|
|
|
|
assert_no_pokes(managers)
|
2023-08-16 20:26:43 -03:00
|
|
|
|
2023-10-26 10:43:10 -03:00
|
|
|
if mgr.instr.name == "_SAVE_RETURN_OFFSET":
|
2023-08-16 20:26:43 -03:00
|
|
|
next_instr_is_set = True
|
|
|
|
if cache_offset:
|
|
|
|
out.emit(f"next_instr += {cache_offset};")
|
2023-09-05 17:58:39 -03:00
|
|
|
if tier == TIER_ONE:
|
|
|
|
assert_no_pokes(managers)
|
2023-08-16 20:26:43 -03:00
|
|
|
|
2023-08-04 13:35:56 -03:00
|
|
|
if len(parts) == 1:
|
2023-10-03 14:13:50 -03:00
|
|
|
mgr.instr.write_body(out, 0, mgr.active_caches, tier, family)
|
2023-08-04 13:35:56 -03:00
|
|
|
else:
|
|
|
|
with out.block(""):
|
2023-10-03 14:13:50 -03:00
|
|
|
mgr.instr.write_body(out, -4, mgr.active_caches, tier, family)
|
2023-08-04 13:35:56 -03:00
|
|
|
|
2023-09-12 14:58:40 -03:00
|
|
|
if mgr is managers[-1] and not next_instr_is_set and not mgr.instr.always_exits:
|
2023-09-05 17:58:39 -03:00
|
|
|
# Adjust the stack to its final depth, *then* write the
|
|
|
|
# pokes for all preceding uops.
|
|
|
|
# Note that for array output effects we may still write
|
|
|
|
# past the stack top.
|
2023-08-04 13:35:56 -03:00
|
|
|
out.stack_adjust(mgr.final_offset.deep, mgr.final_offset.high)
|
2023-09-05 17:58:39 -03:00
|
|
|
write_all_pokes(mgr.final_offset, managers, out)
|
2023-08-04 13:35:56 -03:00
|
|
|
|
2023-09-05 17:58:39 -03:00
|
|
|
return next_instr_is_set
|
|
|
|
|
|
|
|
|
|
|
|
def assert_no_pokes(managers: list[EffectManager]) -> None:
|
|
|
|
for mgr in managers:
|
2023-08-04 13:35:56 -03:00
|
|
|
for poke in mgr.pokes:
|
|
|
|
if not poke.effect.size and poke.effect.name not in mgr.instr.unmoved_names:
|
2023-09-05 17:58:39 -03:00
|
|
|
assert (
|
|
|
|
poke.effect.name == UNUSED
|
|
|
|
), f"Unexpected poke of {poke.effect.name} in {mgr.instr.name!r}"
|
2023-08-15 15:04:17 -03:00
|
|
|
|
2023-09-05 17:58:39 -03:00
|
|
|
|
|
|
|
def write_all_pokes(
|
|
|
|
offset: StackOffset, managers: list[EffectManager], out: Formatter
|
|
|
|
) -> None:
|
|
|
|
# Emit all remaining pushes (pokes)
|
|
|
|
for m in managers:
|
|
|
|
m.adjust_inverse(offset)
|
|
|
|
write_pokes(m, out)
|
|
|
|
|
|
|
|
|
|
|
|
def write_pokes(mgr: EffectManager, out: Formatter) -> None:
|
|
|
|
for poke in mgr.pokes:
|
|
|
|
if not poke.effect.size and poke.effect.name not in mgr.instr.unmoved_names:
|
|
|
|
out.assign(
|
|
|
|
poke.as_stack_effect(),
|
|
|
|
poke.effect,
|
|
|
|
)
|
2023-08-16 20:26:43 -03:00
|
|
|
|
2023-08-15 15:04:17 -03:00
|
|
|
|
2023-08-18 10:42:45 -03:00
|
|
|
def write_single_instr_for_abstract_interp(instr: Instruction, out: Formatter) -> None:
|
2023-08-15 15:04:17 -03:00
|
|
|
try:
|
|
|
|
_write_components_for_abstract_interp(
|
|
|
|
[Component(instr, instr.active_caches)],
|
|
|
|
out,
|
|
|
|
)
|
|
|
|
except AssertionError as err:
|
2023-08-18 10:42:45 -03:00
|
|
|
raise AssertionError(
|
|
|
|
f"Error writing abstract instruction {instr.name}"
|
|
|
|
) from err
|
2023-08-15 15:04:17 -03:00
|
|
|
|
|
|
|
|
|
|
|
def _write_components_for_abstract_interp(
|
|
|
|
parts: list[Component],
|
|
|
|
out: Formatter,
|
2023-08-18 10:42:45 -03:00
|
|
|
) -> None:
|
2023-08-15 15:04:17 -03:00
|
|
|
managers = get_managers(parts)
|
|
|
|
for mgr in managers:
|
|
|
|
if mgr is managers[-1]:
|
|
|
|
out.stack_adjust(mgr.final_offset.deep, mgr.final_offset.high)
|
2023-09-05 17:58:39 -03:00
|
|
|
mgr.adjust_inverse(mgr.final_offset)
|
2023-08-15 15:04:17 -03:00
|
|
|
# NULL out the output stack effects
|
|
|
|
for poke in mgr.pokes:
|
|
|
|
if not poke.effect.size and poke.effect.name not in mgr.instr.unmoved_names:
|
2023-08-18 10:42:45 -03:00
|
|
|
out.emit(
|
|
|
|
f"PARTITIONNODE_OVERWRITE((_Py_PARTITIONNODE_t *)"
|
|
|
|
f"PARTITIONNODE_NULLROOT, PEEK(-({poke.offset.as_index()})), true);"
|
|
|
|
)
|