File:  [parser3project] / parser3 / src / main / compile_tools.C
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Wed Feb 21 15:00:02 2001 UTC (25 years, 4 months ago) by paf
Branches: MAIN
CVS tags: HEAD
.y methods and one_big_piece. now compile returns array<method*>

/*
  $Id: compile_tools.C,v 1.5 2001/02/21 15:00:02 paf Exp $
*/

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

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

	// append OP_STRING
	Operation op; op.code=OP_STRING;
	*result+=reinterpret_cast<Array::Item *>(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));
}


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
		(static_cast<Pool *>(pc->pool))->exception().raise(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
		(static_cast<Pool *>(pc->pool))->exception().raise(0, 0, 0, 
			"push_LS: stack underflow");
}

E-mail: