conflict.h
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 112 行
H
112 行
/****************************************************************************
*
* 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: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
/* aligned */
#define MAX_SAVE 0xFFFFFFFF
#define DEL_CONFLICT_SAVE 10
typedef unsigned_32 save_def;
typedef enum {
CONF_IS_NEXT = 0x0001,
SAVINGS_JUST_CALCULATED = 0x0002,
CONFLICT_ON_HOLD = 0x0004,
SAVINGS_CALCULATED = 0x0008,
CANNOT_SPLIT = 0x0010,
CHANGES_OTHERS = 0x0020,
NEEDS_INDEX = 0x0040,
NEEDS_INDEX_SPLIT = 0x0080,
INDEX_SPLIT = 0x0100,
NEEDS_SEGMENT = 0x0200,
NEEDS_SEGMENT_SPLIT = 0x0400,
SEGMENT_SPLIT = 0x0800,
WAS_SEGMENT = 0x1000,
OK_ACROSS_CALLS = 0x2000,
CONF_VISITED = 0x4000
#define NEVER_TOO_GREEDY 0x8000
} conflict_state;
#define PERMANENT_FLAGS (NEEDS_INDEX+INDEX_SPLIT+CONFLICT_ON_HOLD\
+NEVER_TOO_GREEDY+OK_ACROSS_CALLS\
+NEEDS_SEGMENT+SEGMENT_SPLIT)
#define VALID_SEGMENT (NEEDS_SEGMENT+NEEDS_SEGMENT_SPLIT+\
SEGMENT_SPLIT+WAS_SEGMENT)
typedef struct reg_tree {
struct reg_tree *lo;
struct reg_tree *hi;
union name *temp;
union name *alt;
hw_reg_set *regs;
hw_reg_set chosen;
type_length size;
type_length offset;
byte idx; /* aka reg_set_index */
bool has_name;
} reg_tree;
typedef struct instruction_range {
struct instruction *first;
struct instruction *last;
} instruction_range;
typedef struct conflict_id {
local_bit_set within_block;
global_bit_set out_of_block;
} conflict_id;
typedef struct conflict_node { /* target independent */
struct conflict_node *next_conflict;
struct conflict_node *next_for_name;
union name *name;
struct block *start_block;
struct reg_tree *tree;
save_def savings;
int num_constrained; /* constrained conflicts */
int available; /* regs available */
struct name_set with;
struct instruction_range ins_range;
conflict_id id;
conflict_state state;
byte possible; /* aka reg_set_index */
} conflict_node;
#define _SetTrue( node, bit ) node->state |= bit;
#define _SetFalse( node, bit ) node->state &= ~(bit);
#define _Is( node, bit ) ( ( node->state & (bit) ) != 0 )
#define _Isnt( node, bit ) ( ( node->state & (bit) ) == 0 )
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?