RE: Constant comparisons

2001-09-15 Thread Dan Sugalski
On Sat, 15 Sep 2001, Nathan Torkington wrote: > Gibbs Tanton - tgibbs writes: > > It seems to me that this might eventually get out of hand...could there > > possibly be some way to automate the generation of a family of opcodes? For > > example: > > Hear hear, the same thing occurred to me. T

RE: Constant comparisons

2001-09-15 Thread Nathan Torkington
Gibbs Tanton - tgibbs writes: > It seems to me that this might eventually get out of hand...could there > possibly be some way to automate the generation of a family of opcodes? For > example: Hear hear, the same thing occurred to me. The way that there are separate functions for each argument

RE: Constant comparisons

2001-09-15 Thread Gibbs Tanton - tgibbs
It seems to me that this might eventually get out of hand...could there possibly be some way to automate the generation of a family of opcodes? For example: MANUAL_OP_FAMILY eq_T1_T2 { if( T1 == T2 ) { RETURN(P3); } else { RETURN(P4); } } OVER(i, ic, n, nc) Note that I'm not pro