data.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 75 行

H
75
字号
/****************************************************************************
*
*                            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 code generator data (defined in data.c).
*
****************************************************************************/


#include "ptrint.h"
#include "typedef.h"

extern  block                   *HeadBlock;
extern  block                   *BlockList;
extern  int                     InsId;
extern  int                     TempId;
extern  pointer                 ConfList;
extern  int                     RoutineNum;
extern  pointer                 Names[N_INDEXED+1];
extern  pointer                 LastTemp;
extern  pointer                 DummyIndex;
extern  source_line_number      SrcLine;
extern  cg_switches             Model;
extern  cg_target_switches      TargetModel;
extern  cg_switches             SaveModel;
extern  global_bit_set          MemoryBits;
extern  type_class_def          ClassPointer;
extern  bool                    BlockByBlock;
extern  type_length             MaxStack;
extern  type_def                *TypeBoolean;
extern  type_def                *TypeInteger;
extern  type_def                *TypeUnsigned;
extern  type_def                *TypePtr;
extern  type_def                *TypeNone;
extern  type_def                *TypeProcParm;
extern  type_def                *TypeNearInteger;
extern  type_def                *TypeLongInteger;
extern  type_def                *TypeLongLongInteger;
extern  type_def                *TypeHugeInteger;
extern  hw_reg_set              GivenRegisters;
extern  bool                    BlocksUnTrimmed;
extern  pointer                 AddrList;
extern  seg_id                  DbgLocals;
extern  seg_id                  DbgTypes;
extern  unsigned_16             TypeIdx;
extern  int                     InOptimizer;
extern  byte                    OptForSize;
extern  bool                    HaveLiveInfo;
extern  bool                    HaveDominatorInfo;
extern  pointer_int             FrlSize;
extern  bool                    HaveCurrBlock;
extern  proc_revision           CGProcessorVersion;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?