--- parser3/src/main/compile_tools.h 2002/04/15 08:13:10 1.60 +++ parser3/src/main/compile_tools.h 2002/08/01 11:41:17 1.63 @@ -3,13 +3,13 @@ Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) - - $Id: compile_tools.h,v 1.60 2002/04/15 08:13:10 paf Exp $ */ #ifndef COMPILE_TOOLS #define COMPILE_TOOLS +static const char* IDENT_COMPILE_TOOLS_H="$Date: 2002/08/01 11:41:17 $"; + #include "pa_opcode.h" #include "pa_types.h" #include "pa_vstring.h" @@ -90,26 +90,32 @@ inline void P(Array/**/ *resu } /// aPpend 'vstring' to 'result' -void PV(Array/**/ *result, VString *vstring); -/// Parameter 'simple Code_Array' -void PCA(Array/**/ *result, Array/**/ *code_array); -/// Parameter 'Expression code_Array' -void PEA(Array/**/ *result, Array/**/ *code_array); -/// Construct 'simple Code_Array' -void CCA(Array/**/ *result, Array/**/ *code_array); -/// aPpend Nested Code -void PNC(Array/**/ *result, Array/**/ *code_array); -/// aPpend obJect Pool -void PJP(Array/**/ *result, Array/**/ *code_array); -/// aPpend String Pool -void PSP(Array/**/ *result, Array/**/ *code_array); +void PV(Array/**/ *result, Value *value); + +inline void OA(Array/**/ *result, OPCODE opcode, Array/**/ *code_array) { + // append OP_CODE + Operation op; op.code=opcode; + *result+=op.cast; + + // append 'vstring' + *result+=code_array; +} /** Value Literal // returns array with - first: OP_VALUE instruction - second op: string itself */ -Array *VL(Value *value); +inline Array *VL(Value *value) { + // empty ops array + Array *result=N(value->pool()); + + // append 'value' to 'result' + PV(result, value); + + return result; +} + /// Literal Array to(2) Value @return Value from literal Array OP+Value Value *LA2V(Array *literal_string_array, int offset=0); /// Literal Array to(2) String @return String value from literal Array OP+String array @@ -118,9 +124,16 @@ inline const String *LA2S(Array *literal return value->get_string(); return 0; } + +inline void change_string_literal_to_write_string_literal(Array *literal_string_array) { + Operation op; op.code=OP_STRING__WRITE; + literal_string_array->put(0, op.cast); +} + +void changetail_or_append(Array *opcodes, + OPCODE find, bool with_argument, OPCODE replace, OPCODE notfound); + void change_string_literal_to_double_literal(Array *literal_string_array); -void change_string_literal_to_write_string_literal(Array *literal_string_array); -void changetail_or_append(Array *opcodes, OPCODE find, OPCODE replace, OPCODE notfound); void push_LS(parse_control& pc, lexical_state new_state); void pop_LS(parse_control& pc);