|
|
| version 1.11, 2001/02/22 15:17:40 | version 1.18, 2001/03/08 09:31:47 |
|---|---|
| Line 7 | Line 7 |
| #include "pa_array.h" | #include "pa_array.h" |
| #include "pa_exception.h" | #include "pa_exception.h" |
| #include "pa_vstring.h" | #include "pa_vstring.h" |
| #include "pa_vdouble.h" | |
| Array *L(VString *vstring) { | void PV(Array/*<op>*/ *result, Value *value) { |
| // empty ops array | // append OP_VALUE |
| Array *result=N(vstring->pool()); | Operation op; op.code=OP_VALUE; |
| *result+=op.cast; | |
| // append OP_STRING | // append 'value' |
| Operation op; op.code=OP_STRING; | *result+=value; |
| } | |
| void PCA(Array/*<op>*/ *result, Array/*<op>*/ *code_array) { | |
| // append OP_CODE | |
| Operation op; op.code=OP_CODE__STORE_PARAM; | |
| *result+=op.cast; | *result+=op.cast; |
| // append 'vstring' | // append 'vstring' |
| *result+=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; | 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; | |
| String *LA2S(Array *literal_string_array, int offset) { | // append 'vclass' |
| *result+=vclass; | |
| return result; | |
| } | |
| String *SLA2S(Array *literal_string_array, int offset) { | |
| Operation op; | Operation op; |
| op.cast=literal_string_array->get(offset+0); | op.cast=literal_string_array->get(offset+0); |
| if(op.code!=OP_STRING) | if(op.code!=OP_VALUE) |
| return 0; | return 0; |
| return static_cast<VString *>(literal_string_array->get(offset+1))->get_string(); | 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) { | void push_LS(struct parse_control *pc, lexical_state new_state) { |
| if(pc->sp<MAX_LEXICAL_STATES) { | if(pc->sp<MAX_LEXICAL_STATES) { |