This needed lots of refactoring to ego --- not all platforms have ego descr files, and ego will just crash if you invoke it without one. I think originally it was never intended that these platforms would be used at -O2 or above. Plats now only specify the ego descr file if they have one.
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Id$ */
 | 
						|
/*
 | 
						|
 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
 | 
						|
 * See the copyright notice in the ACK home directory, in the file "Copyright".
 | 
						|
 */
 | 
						|
/*  S H A R E D    F I L E
 | 
						|
 *
 | 
						|
 *  G O . H
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
/* This is the main driving routine of the optimizer.
 | 
						|
 * It first processes the flags given as argument;
 | 
						|
 * for every flag it does not recognize itself, it
 | 
						|
 * calls 'proc_flag'; as soon as the -M flag is seen,
 | 
						|
 * it opens the machine descriptor file and
 | 
						|
 * reads phase-independend information (notably the
 | 
						|
 * wordsize and pointersize of the target machine);
 | 
						|
 * next it calls 'phase_machinit' with this file as
 | 
						|
 * parameter. Subsequently it calls 'initialize'.
 | 
						|
 * Finally, all procedures are read, one at a time,
 | 
						|
 * and 'optimize' is called with the current procedure
 | 
						|
 * as parameter.
 | 
						|
 */
 | 
						|
extern void go(int argc, const char** argv,
 | 
						|
    int (*initialize)(), int (*optimize)(),
 | 
						|
    int (*phase_machinit)(), int (*proc_flag)());
 | 
						|
 | 
						|
/*
 | 
						|
 * Parameter to be supplied for e.g. 'initialize' if
 | 
						|
 * no action is required.
 | 
						|
 */
 | 
						|
extern int no_action();
 | 
						|
 | 
						|
/* Report core usage, if core_flag is set. */
 | 
						|
extern void core_usage(void);
 | 
						|
 | 
						|
/* Report number of optimizations found, if 
 | 
						|
 * report_flag is set
 | 
						|
 */
 | 
						|
extern void report(char* s, int n);
 |