curctxlvl: Symbols.ContextLevel;
codeptr: CCIndex;
bodyRetLabel, bodyComRetLabel: LabelCCIndex;
reentryLabel: LabelCCIndex;
bodyInRecord, bodyOutRecord: Symbols.RecordSEIndex;
bodyFileIndex: CARDINAL;
mainBody: BOOL;
ZEROlexeme: word literal Lexeme;
stking: BOOL;
tailJumpOK: BOOL;
caseCVState: CaseCVState;
mwCaseCV: Lexeme;
fileindex, inlineFileIndex: CARDINAL;
catchcount: CARDINAL;
catchoutrecord: Symbols.RecordSEIndex;
tempcontext: Symbols.CTXIndex;
firstTemp, tempstart, framesz: CARDINAL;
cfSize: CARDINAL;
cfsi: CARDINAL;
actenable, substenable: LabelCCIndex;
xtracting: BOOL;
xtractlex: Lexeme;
xtractsei: Symbols.ISEIndex;
ACStackOverflow: SIGNAL = CODE;
ACStackUnderflow: SIGNAL = CODE;
StackNotEmptyAtStatement: SIGNAL = CODE;
CodeNotImplemented: SIGNAL = CODE;
DeletingUnreachableCode: SIGNAL = CODE;
CodePassInconsistency: SIGNAL = CODE;
P5module:
PROC =
BEGIN -- starts the code generation pass
P5.Module[];
END;
END.