optmain.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 258 行
C
258 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: Instruction queue manipulation.
*
****************************************************************************/
#include "optwif.h"
#include "hostsys.h"
#include "ptrint.h"
#include "freelist.h"
extern ins_entry *FirstIns;
extern ins_entry *LastIns;
extern ins_entry *RetList;
extern uint QCount;
extern ins_entry *PendingDeletes;
extern pointer Handles;
extern pointer *InstrFrl;
extern seg_id SetOP(seg_id);
extern seg_id AskCodeSeg(void);
extern void FreePendingDeletes(void);
extern ins_entry *DelInstr(ins_entry*);
extern void OutputOC(any_oc*,any_oc*);
extern void OptPull(void);
extern void PLBlip(void);
extern void OptPush(void);
extern void AddInstr(ins_entry*,ins_entry*);
extern ins_entry *NewInstr(any_oc*);
extern oc_class PrevClass(ins_entry*);
extern void TryScrapLabel(code_lbl*);
extern void PSBlip(void);
extern void FreeInstr(ins_entry*);
extern pointer_int MemInUse(void);
extern ins_entry *NextIns(ins_entry*);
extern bool UniqueLabel(code_lbl*);
static void PullQueue( void )
/*******************************/
{
code_lbl *lbl;
code_lbl *next;
oc_class cl;
ins_entry *next_ins;
code_lbl *be_lbls;
code_lbl **owner;
optbegin
for( ;; ) {
PLBlip();
OptPull();
if( FirstIns == NULL ) break;
if( _Class( FirstIns ) == OC_LABEL ) {
if( UniqueLabel( _Label( FirstIns ) ) ) {
/* take off extra byte added when the ins went into queue */
FirstIns->oc.oc_entry.objlen--;
}
/*
We want to order the alias list so that the labels with
symbols dump out first. They might be FE_COMMON labels.
*/
be_lbls = NULL;
owner = &_Label( FirstIns );
for( lbl = _Label( FirstIns ); lbl != NULL; lbl = next ) {
next = lbl->alias;
if( lbl->lbl.sym != NULL ) {
*owner = lbl;
owner = &lbl->alias;
} else {
lbl->alias = be_lbls;
be_lbls = lbl;
}
}
*owner = be_lbls;
}
for(;;) {
next_ins = NextIns( FirstIns );
if( next_ins != NULL && _Class( next_ins ) == OC_LABEL ) {
OutputOC( &FirstIns->oc, &next_ins->oc );
} else {
OutputOC( &FirstIns->oc, NULL );
}
cl = _Class( FirstIns );
if( cl != OC_LABEL ) break;
lbl = _Label( FirstIns );
lbl->ins = NULL;
next = lbl->alias;
if( next == NULL ) break;
lbl->alias = NULL;
TryScrapLabel( lbl );
_Label( FirstIns ) = next;
}
DelInstr( FirstIns );
FreePendingDeletes();
/*
Head of queue must be immediately after an unconditional control
flow instruction since things may be bypassing the control
flow optimizer.
*/
if( _TransferClass( cl ) ) break;
if( FirstIns == NULL ) break;
}
optend
static bool LDone( any_oc *oc )
/*********************************/
{
code_lbl *lbl;
optbegin
if( oc->oc_entry.class != OC_LDONE ) optreturn( FALSE );
lbl = oc->oc_handle.handle;
_ValidLbl( lbl );
if( _TstStatus( lbl, CODELABEL ) == FALSE ) optreturn( FALSE );
_SetStatus( lbl, DYINGLABEL );
TryScrapLabel( lbl );
optreturn( TRUE );
}
extern void InputOC( any_oc *oc )
/***********************************/
{
optbegin
PSBlip();
if( LDone( oc ) == FALSE ) {
if( (oc->oc_entry.class & GET_BASE) != OC_INFO
&& (oc->oc_entry.class & GET_BASE) != OC_LABEL
&& _TransferClass( PrevClass( NULL ) ) ) optreturnvoid; /*dead code*/
while( QCount >= Q_MAX ) {
PullQueue();
}
AddInstr( NewInstr( oc ), LastIns );
switch( _Class( LastIns ) ) {
case OC_LABEL:
if( _TstStatus( _Label( LastIns ), UNIQUE ) ) {
/* Unique labels might need an addition byte of spacing */
LastIns->oc.oc_entry.objlen++;
}
/* fall through */
case OC_LREF:
case OC_JCOND:
case OC_JMP:
case OC_CALL:
_ClrStatus( _Label( LastIns ), DYINGLABEL );
break;
}
OptPush();
}
optend
extern bool ShrinkQueue( pointer_int size )
/*********************************************/
{
signed_32 freed;
signed_32 need;
optbegin
need = size;
freed = 0;
for(;;) {
if( freed >= need ) break;
if( QCount <= Q_MIN ) break;
freed += MemInUse();
PullQueue();
freed -= MemInUse();
}
optreturn( freed >= need );
}
extern void InitQueue( void )
/*******************************/
{
optbegin
QCount = 0;
FirstIns = NULL;
LastIns = NULL;
RetList = NULL;
PendingDeletes = NULL;
Handles = NULL;
InitFrl( &InstrFrl );
#if( OPTIONS & SAVINGS )
Savings = 0;
#endif
optend
extern void EmptyQueue( void )
/********************************/
{
optbegin
while( QCount != 0 ) {
PullQueue();
}
optend
extern void FlushQueue( void )
/********************************/
{
seg_id old;
optbegin
old = SetOP( AskCodeSeg() );
EmptyQueue();
SetOP( old );
optend
extern void FiniQueue( void )
/*******************************/
{
optbegin
SetOP( AskCodeSeg() );
EmptyQueue();
_DumpSavings();
optend
extern void AbortQueue( void )
/********************************/
{
ins_entry *instr;
optbegin
while( FirstIns != NULL ) {
instr = FirstIns;
FirstIns = FirstIns->ins.next;
FreeInstr( instr );
}
optend
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?