gsegs.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 154 行
C
154 行
/****************************************************************************
*
* 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: Global segment processing
*
****************************************************************************/
#include "ftnstd.h"
#include "global.h"
#include "fcgbls.h"
#include "progsw.h"
#include "cg.h"
#include "wf77segs.h"
#include "cpopt.h"
#include "fmemmgr.h"
global_seg *GlobalSeg;
static global_seg *CurrGSeg;
#if _CPU == 8086
#define MAX_SEG_SIZE 0x10000
#else
#define MAX_SEG_SIZE 0xffffffff
#endif
void InitGlobalSegs( void ) {
//========================
// Initialize global segment processing.
GlobalSeg = NULL;
CurrGSeg = NULL;
MaxSegSize = MAX_SEG_SIZE;
}
void FreeGlobalSegs( void ) {
//========================
// Free global segment list.
global_seg *curr_seg;
while( GlobalSeg != NULL ) {
curr_seg = GlobalSeg;
GlobalSeg = curr_seg->link;
FMemFree( curr_seg );
}
}
segment_id AllocGlobal( unsigned_32 g_size, bool init ) {
//============================================================
// Allocate space in global data area and return the global segment.
segment_id seg;
bool first_seg;
if( ProgSw & PS_ERROR ) return( WF77_FREE_SEG );
if( ( CurrGSeg != NULL ) && ( CurrGSeg->size + g_size <= MaxSegSize ) ) {
// object will fit in current segment
#if _CPU == 8086 || _CPU == 386
if( ( init == CurrGSeg->initialized ) || !_SmallDataModel( CGOpts ) ) {
CurrGSeg->size += g_size;
return( CurrGSeg->segment );
}
#else
if( init == CurrGSeg->initialized ) {
CurrGSeg->size += g_size;
return( CurrGSeg->segment );
}
#endif
}
if( g_size <= MaxSegSize ) {
// object smaller than a segment but won't
// fit in current segment
NewGlobalSeg();
CurrGSeg->size = g_size;
CurrGSeg->initialized = init;
return( CurrGSeg->segment );
}
// object larger than a segment
first_seg = TRUE;
for(;;) {
NewGlobalSeg();
if( first_seg ) {
seg = CurrGSeg->segment;
first_seg = FALSE;
}
CurrGSeg->size = MaxSegSize;
CurrGSeg->initialized = init;
g_size -= MaxSegSize;
if( g_size <= MaxSegSize ) break;
}
if( g_size != 0 ) {
NewGlobalSeg();
CurrGSeg->size = g_size;
CurrGSeg->initialized = init;
}
return( seg );
}
static void NewGlobalSeg( void ) {
//==============================
// Allocate a new global segment.
global_seg *new_seg;
new_seg = FMemAlloc( sizeof( global_seg ) );
new_seg->segment = WF77_NULLSEGID;
new_seg->link = NULL;
if( CurrGSeg == NULL ) {
GlobalSeg = new_seg;
} else {
CurrGSeg->link = new_seg;
}
CurrGSeg = new_seg;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?