|
|
BSD 4.3
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#ifndef lint
static char sccsid[] = "@(#)sconv.c 5.1 (Berkeley) 6/5/85";
#endif not lint
/*
* functions to help pi put out
* polish postfix binary portable c compiler intermediate code
* thereby becoming the portable pascal compiler
*/
#include "whoami.h"
#ifdef PC
#include "0.h"
#include <pcc.h>
/*
* this routine enforces ``the usual arithmetic conversions''
* all integral operands are converted to ints.
* if either operand is a double, both are made to be double.
* this routine takes struct nl *'s for the types,
* and returns both the struct nl * and the p2type for the result.
*/
tuac(thistype, thattype, resulttypep, resultp2typep)
struct nl *thistype;
struct nl *thattype;
struct nl **resulttypep;
int *resultp2typep;
{
int thisp2type = p2type(thistype);
int thatp2type = p2type(thattype);
*resulttypep = thistype;
*resultp2typep = thisp2type;
/*
* should only be passed scalars
*/
if (isnta(thistype,"sbcid") || isnta(thattype,"sbcid")) {
return;
}
if (thisp2type == PCCT_CHAR || thisp2type == PCCT_SHORT) {
*resultp2typep = PCCT_INT;
*resulttypep = nl + T4INT;
}
if (*resultp2typep == PCCT_INT && thatp2type == PCCT_DOUBLE) {
*resultp2typep = PCCT_DOUBLE;
*resulttypep = nl + TDOUBLE;
}
sconv(thisp2type, *resultp2typep);
}
/*
* this routine will emit sconv operators when it thinks they are needed.
* this is code generator specific, rather than machine-specific.
* this routine takes p2types for arguments, not struct nl *'s.
*/
#ifdef vax
/*
* the vax code genrator is very good, this routine is extremely boring.
*/
sconv(fromp2type, top2type)
int fromp2type;
int top2type;
{
switch (top2type) {
case PCCT_CHAR:
case PCCT_SHORT:
case PCCT_INT:
switch (fromp2type) {
case PCCT_CHAR:
case PCCT_SHORT:
case PCCT_INT:
case PCCT_DOUBLE:
return; /* pass1 knows how to do these */
default:
return;
}
case PCCT_DOUBLE:
switch (fromp2type) {
case PCCT_CHAR:
case PCCT_SHORT:
case PCCT_INT:
putop(PCC_SCONV, PCCT_DOUBLE);
return;
case PCCT_DOUBLE:
return;
default:
return;
}
default:
return;
}
}
#endif vax
#ifdef mc68000
/*
* i don't know how much to trust the mc68000 compiler,
* so this routine is full.
*/
sconv(fromp2type, top2type)
int fromp2type;
int top2type;
{
switch (top2type) {
case PCCT_CHAR:
switch (fromp2type) {
case PCCT_CHAR:
return;
case PCCT_SHORT:
case PCCT_INT:
case PCCT_DOUBLE:
putop(PCC_SCONV, PCCT_CHAR);
return;
default:
return;
}
case PCCT_SHORT:
switch (fromp2type) {
case PCCT_SHORT:
return;
case PCCT_CHAR:
case PCCT_INT:
case PCCT_DOUBLE:
putop(PCC_SCONV, PCCT_SHORT);
return;
default:
return;
}
case PCCT_INT:
switch (fromp2type) {
case PCCT_INT:
return;
case PCCT_CHAR:
case PCCT_SHORT:
case PCCT_DOUBLE:
putop(PCC_SCONV, PCCT_INT);
return;
default:
return;
}
case PCCT_DOUBLE:
switch (fromp2type) {
case PCCT_DOUBLE:
return;
case PCCT_CHAR:
case PCCT_SHORT:
case PCCT_INT:
putop(PCC_SCONV, PCCT_DOUBLE);
return;
default:
return;
}
default:
return;
}
}
#endif mc68000
#endif PC
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.