File:  [parser3project] / parser3 / src / main / compile_tools.C
Revision 1.7: download - view: text, annotated - select for diffs - revision graph
Thu Feb 22 10:43:45 2001 UTC (25 years, 4 months ago) by paf
Branches: MAIN
CVS tags: HEAD
removed exception from request

/*
  $Id: compile_tools.C,v 1.7 2001/02/22 10:43:45 paf Exp $
*/

#include "compile_tools.h"
#include "pa_string.h"
#include "pa_array.h"
#include "pa_exception.h"
#include "pa_vstring.h"

Array *L(String *string) {
	// empty ops array
	Array *result=N(string->pool());

	// append OP_STRING
	Operation op; op.code=OP_STRING;
	*result+=op.cast;

	// append 'string'
	*result+=string;

	return result;
}

String *LA2S(Array *literal_string_array, int offset) {
	return static_cast<String *>(literal_string_array->get(offset+1));
}
Array *LAS2LAVS(Array *literal_array) {
	Operation op; op.code=OP_VSTRING;
	literal_array->put(0, op.cast);

	Value *value=new(literal_array->pool()) 
		VString(static_cast<String *>(literal_array->get(1)));
	literal_array->put(1, value);

	return literal_array;
}


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: