dominate.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 130 行
C
130 行
/****************************************************************************
*
* 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!
*
****************************************************************************/
#define _DBit_DEFINE_BITNEXT
#include <assert.h>
#include "standard.h"
#include "coderep.h"
#include "conflict.h"
#include "sysmacro.h"
#include "opcodes.h"
#include "cgdefs.h"
#include "model.h"
#include "zoiks.h"
#include "edgestk.h"
extern void ClearBlockBits( block_class class );
extern block *HeadBlock;
extern bool HaveDominatorInfo;
static block *ReturnBlock;
static bool AssignDominatorBits( void )
/*************************************************/
{
block *blk;
dom_bit_set id;
ReturnBlock = NULL;
blk = HeadBlock;
_DBitFirst( id );
while( blk != NULL ) {
if( ( blk->class & RETURN ) != EMPTY ) {
if( ReturnBlock != NULL ) return( FALSE );
ReturnBlock = blk;
}
_DBitAssign( blk->dom.id, id );
if( _DBitEmpty( id ) ) return( FALSE );
_DBitNext( &id );
blk = blk->next_block;
}
return( ReturnBlock != NULL );
}
bool CalcDominatorInfo( void )
/****************************/
{
block *blk;
block_edge *edge;
int i;
dom_bit_set predecessors;
dom_bit_set successors;
dom_bit_set full_set;
dom_bit_set old_dominator;
dom_bit_set temp_bits;
bool change;
bool have_info;
have_info = FALSE;
if( AssignDominatorBits() ) {
have_info = TRUE;
_DBitInit( full_set, ~0 );
for( blk = HeadBlock; blk != NULL; blk = blk->next_block ) {
_DBitAssign( blk->dom.dominator, full_set );
_DBitAssign( blk->dom.post_dominator, full_set );
}
_DBitAssign( HeadBlock->dom.dominator, HeadBlock->dom.id );
_DBitAssign( ReturnBlock->dom.post_dominator, ReturnBlock->dom.id );
do {
change = FALSE;
for( blk = HeadBlock; blk != NULL; blk = blk->next_block ) {
if( blk != HeadBlock ) {
_DBitAssign( old_dominator, blk->dom.dominator );
_DBitAssign( predecessors, full_set );
for( edge = blk->input_edges; edge != NULL; edge = edge->next_source ) {
_DBitAssign( temp_bits, full_set );
_DBitTurnOff( temp_bits, edge->source->dom.dominator );
_DBitTurnOff( predecessors, temp_bits );
}
_DBitTurnOn( predecessors, blk->dom.id );
_DBitAssign( blk->dom.dominator, predecessors );
if( !_DBitSame( blk->dom.dominator, old_dominator ) ) change = TRUE;
}
if( blk != ReturnBlock ) {
_DBitAssign( old_dominator, blk->dom.post_dominator );
_DBitAssign( successors, full_set );
for( i = 0, edge = &blk->edge[ 0 ]; i < blk->targets; i++, edge++ ) {
_DBitAssign( temp_bits, full_set );
_DBitTurnOff( temp_bits, edge->destination->dom.post_dominator );
_DBitTurnOff( successors, temp_bits );
}
_DBitTurnOn( successors, blk->dom.id );
_DBitAssign( blk->dom.post_dominator, successors );
if( !_DBitSame( blk->dom.post_dominator, old_dominator ) ) change = TRUE;
}
}
} while( change );
}
return( have_info );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?