added rcsid
This commit is contained in:
parent
18ffd176ba
commit
3c197c150a
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
extern line_p newline();
|
extern line_p newline();
|
||||||
extern offset *newrom();
|
extern offset *newrom();
|
||||||
extern sym_p newsym();
|
extern sym_p newsym();
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
|
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#ifndef FILE
|
#ifndef FILE
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define NARGBYTES 14
|
#define NARGBYTES 14
|
||||||
struct argbytes {
|
struct argbytes {
|
||||||
argb_p ab_next;
|
argb_p ab_next;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define IDL 8
|
#define IDL 8
|
||||||
|
|
||||||
struct sym {
|
struct sym {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
: '$Header$'
|
||||||
for extension in c y
|
for extension in c y
|
||||||
do
|
do
|
||||||
for file in *.$extension
|
for file in *.$extension
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
%{
|
%{
|
||||||
|
#ifndef NORCSID
|
||||||
|
static char rcsid[] = "$Header$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "param.h"
|
#include "param.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
/* #define DIAGOPT /* if defined diagnostics are produced */
|
/* #define DIAGOPT /* if defined diagnostics are produced */
|
||||||
#ifdef DIAGOPT
|
#ifdef DIAGOPT
|
||||||
#define OPTIM(x) optim(x)
|
#define OPTIM(x) optim(x)
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
#define LONGOFF /* if defined long offsets are used */
|
#define LONGOFF /* if defined long offsets are used */
|
||||||
|
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* pattern contains the optimization patterns in an apparently
|
* pattern contains the optimization patterns in an apparently
|
||||||
* unordered fashion. All patterns follow each other unaligned.
|
* unordered fashion. All patterns follow each other unaligned.
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# $Header$
|
||||||
loc adi loc sbi $2==w && $4==w: loc $1-$3 adi w
|
loc adi loc sbi $2==w && $4==w: loc $1-$3 adi w
|
||||||
ldc adi ldc sbi $2==2*w && $4==2*w: ldc $1-$3 adi 2*w
|
ldc adi ldc sbi $2==2*w && $4==2*w: ldc $1-$3 adi 2*w
|
||||||
loc adi loc adi $2==w && $4==w: loc $1+$3 adi w
|
loc adi loc adi $2==w && $4==w: loc $1+$3 adi w
|
||||||
|
@ -438,8 +439,8 @@ lal loi lal sti $2==$4 && $2>4*w && ( $3<=$1-$2 || $3>=$1+$2 ) :
|
||||||
lae loi lae sti $2==$4 && $2>4*w && ( !defined($1==$3) || $3<=$1-$2 || $3>=$1+$2 ) :
|
lae loi lae sti $2==$4 && $2>4*w && ( !defined($1==$3) || $3<=$1-$2 || $3>=$1+$2 ) :
|
||||||
lae $1 lae $3 blm $2
|
lae $1 lae $3 blm $2
|
||||||
loc loc loc cif $1==0 && $2==w : zrf $3
|
loc loc loc cif $1==0 && $2==w : zrf $3
|
||||||
loc loc loc cii $2==w && $3==2*w : ldc $1
|
loc loc loc ciu $1>=0 && $2==w && $3==2*w : ldc $1
|
||||||
loc loc loc ciu $1>=0 && $2==w && $3==2*w : ldc $1
|
loc loc loc cii $2==w && $3==2*w : ldc $1
|
||||||
loi loc inn $1==$3 && $2>=0 && $2<$1*8 :
|
loi loc inn $1==$3 && $2>=0 && $2<$1*8 :
|
||||||
lof ($2/(8*w))*w loc $2&(8*w-1) inn w
|
lof ($2/(8*w))*w loc $2&(8*w-1) inn w
|
||||||
ldl loc inn $3==2*w && $2>=0 && $2<16*w :
|
ldl loc inn $3==2*w && $2>=0 && $2<16*w :
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
: '$Header$'
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
(echo ' mes 2,2,2
|
(echo ' mes 2,2,2
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Header$ */
|
||||||
|
|
||||||
typedef char byte;
|
typedef char byte;
|
||||||
typedef char bool;
|
typedef char bool;
|
||||||
typedef struct line line_t;
|
typedef struct line line_t;
|
||||||
|
|
Loading…
Reference in a new issue