This commit is contained in:
Ryan Fleury
2026-06-17 19:30:08 -07:00
parent cc75260946
commit 3aad389174
3 changed files with 33 additions and 25 deletions
+1
View File
@@ -12,6 +12,7 @@ typedef enum E2_OpParseKind
E2_OpParseKind_Null, E2_OpParseKind_Null,
E2_OpParseKind_UnaryPrefix, E2_OpParseKind_UnaryPrefix,
E2_OpParseKind_Binary, E2_OpParseKind_Binary,
E2_OpParseKind_UnaryPostfix,
} }
E2_OpParseKind; E2_OpParseKind;
+7
View File
@@ -3762,6 +3762,13 @@ d2r_convert(Arena *arena, D2R_ConvertParams *params)
} }
} }
//- TODO(rjf): Try to statically evaluate the expression here if possible
// (or maybe intermixed above? investigate...), to reduce to simpler bytecode
// forms - reduce pressure on pattern matching
{
// TODO(rjf)
}
//- rjf: apply RDI byte offsets to jump ops //- rjf: apply RDI byte offsets to jump ops
{ {
// TODO(rjf): apply RDI byte offsets to jump ops // TODO(rjf): apply RDI byte offsets to jump ops