mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 07:32:24 +00:00
Moving to config independent types stage 1 - generate intxx types.
This commit is contained in:
parent
159f5a3d80
commit
ee8342ef0d
168 changed files with 6673 additions and 6565 deletions
|
|
@ -9,16 +9,16 @@
|
|||
|
||||
|
||||
|
||||
import void OPC_Align (LONGINT *adr, LONGINT base);
|
||||
import void OPC_Align (int32 *adr, int32 base);
|
||||
import void OPC_Andent (OPT_Struct typ);
|
||||
import LONGINT OPC_BaseAlignment (OPT_Struct typ);
|
||||
import int32 OPC_BaseAlignment (OPT_Struct typ);
|
||||
import OPT_Object OPC_BaseTProc (OPT_Object obj);
|
||||
import void OPC_BegBlk (void);
|
||||
import void OPC_BegStat (void);
|
||||
import void OPC_Case (LONGINT caseVal, INTEGER form);
|
||||
import void OPC_Cmp (INTEGER rel);
|
||||
import void OPC_Case (int32 caseVal, int16 form);
|
||||
import void OPC_Cmp (int16 rel);
|
||||
import void OPC_CompleteIdent (OPT_Object obj);
|
||||
import void OPC_Constant (OPT_Const con, INTEGER form);
|
||||
import void OPC_Constant (OPT_Const con, int16 form);
|
||||
import void OPC_DefineInter (OPT_Object proc);
|
||||
import void OPC_EndBlk (void);
|
||||
import void OPC_EndBlk0 (void);
|
||||
|
|
@ -31,19 +31,19 @@ import void OPC_GenBdy (OPT_Node n);
|
|||
import void OPC_GenEnumPtrs (OPT_Object var);
|
||||
import void OPC_GenHdr (OPT_Node n);
|
||||
import void OPC_GenHdrIncludes (void);
|
||||
import void OPC_Halt (LONGINT n);
|
||||
import void OPC_Halt (int32 n);
|
||||
import void OPC_Ident (OPT_Object obj);
|
||||
import void OPC_Increment (BOOLEAN decrement);
|
||||
import void OPC_Indent (INTEGER count);
|
||||
import void OPC_Indent (int16 count);
|
||||
import void OPC_Init (void);
|
||||
import void OPC_InitTDesc (OPT_Struct typ);
|
||||
import void OPC_IntLiteral (LONGINT n, LONGINT size);
|
||||
import void OPC_Len (OPT_Object obj, OPT_Struct array, LONGINT dim);
|
||||
import LONGINT OPC_NofPtrs (OPT_Struct typ);
|
||||
import void OPC_IntLiteral (int32 n, int32 size);
|
||||
import void OPC_Len (OPT_Object obj, OPT_Struct array, int32 dim);
|
||||
import int32 OPC_NofPtrs (OPT_Struct typ);
|
||||
import void OPC_SetInclude (BOOLEAN exclude);
|
||||
import LONGINT OPC_SizeAlignment (LONGINT size);
|
||||
import int32 OPC_SizeAlignment (int32 size);
|
||||
import void OPC_TDescDecl (OPT_Struct typ);
|
||||
import void OPC_TypeDefs (OPT_Object obj, INTEGER vis);
|
||||
import void OPC_TypeDefs (OPT_Object obj, int16 vis);
|
||||
import void OPC_TypeOf (OPT_Object ap);
|
||||
import void *OPC__init(void);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue