File:  [parser3project] / parser3 / src / main / compile_tools.C
Revision 1.11: download - view: text, annotated - select for diffs - revision graph
Thu Feb 22 15:17:40 2001 UTC (25 years, 4 months ago) by paf
Branches: MAIN
CVS tags: HEAD
$self.get

/*
  $Id: compile_tools.C,v 1.11 2001/02/22 15:17:40 paf Exp $
*/

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

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

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

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

	return result;
}

String *LA2S(Array *literal_string_array, int offset) {
	Operation op;
	op.cast=literal_string_array->get(offset+0);
	if(op.code!=OP_STRING)
		return 0;

	return static_cast<VString *>(literal_string_array->get(offset+1))->get_string();
}


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: