コード例 #1
0
ファイル: generate.c プロジェクト: ABratovic/open-watcom-v2
extern  void    InitCG( void )
/****************************/
{
    InOptimizer = 0;
    InsId = 0;
    CurrProc = NULL;
    CurrBlock = NULL;
    BlockList = NULL;
    HeadBlock = NULL;
    BlockByBlock = FALSE;
    abortCG = FALSE;
    InitFP();/* must be before InitRegTbl */
    InitRegTbl();
    ScoreInit();
    InitQueue();
    InitMakeAddr();
    RegTreeInit();
    InitIns();
    InitConflict();
    InitRT();
    InitNames();
    ObjInit();
    ClassPointer = TypeClass( TypePtr );
    InitSegment();
}
コード例 #2
0
ファイル: aris_control_pipe.cpp プロジェクト: YinHuile/Aris
			Imp(bool isBlock)
			{
				static int port = 0;
				InitRT(port);
				InitNRT(port, isBlock);
				++port;
			}