/*
$Id: compile_tools.C,v 1.17 2001/03/06 15:02:48 paf Exp $
*/
#include "compile_tools.h"
#include "pa_string.h"
#include "pa_array.h"
#include "pa_exception.h"
#include "pa_vstring.h"
#include "pa_vdouble.h"
void PV(Array/*<op>*/ *result, Value *value) {
// append OP_VALUE
Operation op; op.code=OP_VALUE;
*result+=op.cast;
// append 'value'
*result+=value;
}
void PCA(Array/*<op>*/ *result, Array/*<op>*/ *code_array) {
// append OP_CODE
Operation op; op.code=OP_CODE;
*result+=op.cast;
// append 'vstring'
*result+=code_array;
}
Array *VL(Value *value) {
// empty ops array
Array *result=N(value->pool());
// append 'value' to 'result'
PV(result, value);
return result;
}
Array *CL(VClass *vclass) {
// empty ops array
Array *result=N(vclass->pool());
// append OP_CLASS
Operation op; op.code=OP_CLASS;
*result+=op.cast;
// append 'vclass'
*result+=vclass;
return result;
}
String *SLA2S(Array *literal_string_array, int offset) {
Operation op;
op.cast=literal_string_array->get(offset+0);
if(op.code!=OP_VALUE)
return 0;
return static_cast<VString *>(literal_string_array->get(offset+1))->get_string();
}
void change_string_literal_to_double_literal(Array *literal_string_array) {
VString *vstring=static_cast<VString *>(literal_string_array->get(1));
Pool& pool=vstring->pool();
VDouble *vdouble=new(pool) VDouble(pool, vstring->get_double());
literal_string_array->put(1, vdouble);
}
void push_LS(struct parse_control *pc, lexical_state new_state) {
if(pc->sp<MAX_LEXICAL_STATES) {
pc->stack[pc->sp++]=pc->ls; pc->ls=new_state;
} else
pc->pool->THROW(0, 0, 0, "push_LS: stack overflow");
}
void pop_LS(struct parse_control *pc) {
if(--pc->sp>=0)
pc->ls=pc->stack[pc->sp];
else
pc->pool->THROW(0, 0, 0, "push_LS: stack underflow");
}
E-mail: