Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 # define CONSTRUCTOR_GUESS_SIZE 1000
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 # define LCV_CONST(ATTR, IDX) attr_tbl[ATTR].wd[IDX]
00061
00062
00063
00064
00065
00066
00067 # define SAVE_ENV \
00068 save.words_in_constructor = words_in_constructor; \
00069 save.bits_in_constructor = bits_in_constructor; \
00070 save.char_result_len = char_result_len; \
00071 save.char_result_offset = char_result_offset; \
00072 save.the_cn_bit_offset = the_cn_bit_offset; \
00073 save.the_cn_idx = the_cn_idx; \
00074 save.bcast_cn_bit_offset = bcast_cn_bit_offset; \
00075 save.no_result_value = no_result_value; \
00076 save.unequal_char_lens = unequal_char_lens; \
00077 save.do_constructor_init = do_constructor_init; \
00078 save.check_type_conversion = check_type_conversion; \
00079 save.target_type_idx = target_type_idx; \
00080 save.target_char_len_idx = target_char_len_idx; \
00081 save.single_value_array = single_value_array; \
00082 save.single_value_opnd = single_value_opnd; \
00083 COPY_OPND(save.init_target_opnd, init_target_opnd);
00084
00085 # define RESTORE_ENV \
00086 words_in_constructor = save.words_in_constructor; \
00087 bits_in_constructor = save.bits_in_constructor; \
00088 char_result_len = save.char_result_len; \
00089 char_result_offset = save.char_result_offset; \
00090 the_cn_bit_offset = save.the_cn_bit_offset; \
00091 the_cn_idx = save.the_cn_idx; \
00092 bcast_cn_bit_offset = save.bcast_cn_bit_offset; \
00093 no_result_value = save.no_result_value; \
00094 unequal_char_lens = save.unequal_char_lens; \
00095 do_constructor_init = save.do_constructor_init; \
00096 check_type_conversion = save.check_type_conversion; \
00097 target_type_idx = save.target_type_idx; \
00098 target_char_len_idx = save.target_char_len_idx; \
00099 single_value_array = save.single_value_array; \
00100 single_value_opnd = save.single_value_opnd; \
00101 COPY_OPND(init_target_opnd, save.init_target_opnd);