|
@@ -130,11 +130,10 @@ implementation
|
|
if not assigned(p^.left) then
|
|
if not assigned(p^.left) then
|
|
begin
|
|
begin
|
|
case p^.inlinenumber of
|
|
case p^.inlinenumber of
|
|
- in_const_pi : begin
|
|
|
|
- hp:=genrealconstnode(pi);
|
|
|
|
- end;
|
|
|
|
- else
|
|
|
|
- internalerror(89);
|
|
|
|
|
|
+ in_const_pi :
|
|
|
|
+ hp:=genrealconstnode(pi);
|
|
|
|
+ else
|
|
|
|
+ internalerror(89);
|
|
end;
|
|
end;
|
|
end
|
|
end
|
|
else
|
|
else
|
|
@@ -162,120 +161,136 @@ implementation
|
|
CGMessage(cg_e_illegal_expression);
|
|
CGMessage(cg_e_illegal_expression);
|
|
end;
|
|
end;
|
|
case p^.inlinenumber of
|
|
case p^.inlinenumber of
|
|
- in_const_trunc : begin
|
|
|
|
- if isreal then
|
|
|
|
- begin
|
|
|
|
- if (vr>=2147483648.0) or (vr<=-2147483649.0) then
|
|
|
|
- begin
|
|
|
|
- CGMessage(parser_e_range_check_error);
|
|
|
|
- hp:=genordinalconstnode(1,s32bitdef)
|
|
|
|
- end
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(trunc(vr),s32bitdef)
|
|
|
|
- end
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(trunc(vl),s32bitdef);
|
|
|
|
- end;
|
|
|
|
- in_const_round : begin
|
|
|
|
- if isreal then
|
|
|
|
- begin
|
|
|
|
- if (vr>=2147483647.5) or (vr<=-2147483648.5) then
|
|
|
|
- begin
|
|
|
|
- CGMessage(parser_e_range_check_error);
|
|
|
|
- hp:=genordinalconstnode(1,s32bitdef)
|
|
|
|
- end
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(round(vr),s32bitdef)
|
|
|
|
- end
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(round(vl),s32bitdef);
|
|
|
|
- end;
|
|
|
|
- in_const_frac : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(frac(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(frac(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_int : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(int(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(int(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_abs : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(abs(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(abs(vl),p^.left^.resulttype);
|
|
|
|
- end;
|
|
|
|
- in_const_sqr : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(sqr(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(sqr(vl),p^.left^.resulttype);
|
|
|
|
- end;
|
|
|
|
- in_const_odd : begin
|
|
|
|
- if isreal then
|
|
|
|
- CGMessage(type_e_integer_expr_expected)
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode(byte(odd(vl)),booldef);
|
|
|
|
- end;
|
|
|
|
- in_const_swap_word : begin
|
|
|
|
- if isreal then
|
|
|
|
- CGMessage(type_e_integer_expr_expected)
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode((vl and $ff) shl 8+(vl shr 8),p^.left^.resulttype);
|
|
|
|
- end;
|
|
|
|
- in_const_swap_long : begin
|
|
|
|
- if isreal then
|
|
|
|
- CGMessage(type_e_mismatch)
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode((vl and $ffff) shl 16+(vl shr 16),p^.left^.resulttype);
|
|
|
|
- end;
|
|
|
|
- in_const_ptr : begin
|
|
|
|
- if isreal then
|
|
|
|
- CGMessage(type_e_mismatch)
|
|
|
|
- else
|
|
|
|
- hp:=genordinalconstnode((vl2 shl 16) or vl,voidpointerdef);
|
|
|
|
- end;
|
|
|
|
- in_const_sqrt : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(sqrt(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(sqrt(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_arctan : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(arctan(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(arctan(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_cos : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(cos(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(cos(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_sin : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(sin(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(sin(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_exp : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(exp(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(exp(vl));
|
|
|
|
- end;
|
|
|
|
- in_const_ln : begin
|
|
|
|
- if isreal then
|
|
|
|
- hp:=genrealconstnode(ln(vr))
|
|
|
|
- else
|
|
|
|
- hp:=genrealconstnode(ln(vl));
|
|
|
|
- end;
|
|
|
|
- else
|
|
|
|
- internalerror(88);
|
|
|
|
|
|
+ in_const_trunc :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ begin
|
|
|
|
+ if (vr>=2147483648.0) or (vr<=-2147483649.0) then
|
|
|
|
+ begin
|
|
|
|
+ CGMessage(parser_e_range_check_error);
|
|
|
|
+ hp:=genordinalconstnode(1,s32bitdef)
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(trunc(vr),s32bitdef)
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(trunc(vl),s32bitdef);
|
|
|
|
+ end;
|
|
|
|
+ in_const_round :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ begin
|
|
|
|
+ if (vr>=2147483647.5) or (vr<=-2147483648.5) then
|
|
|
|
+ begin
|
|
|
|
+ CGMessage(parser_e_range_check_error);
|
|
|
|
+ hp:=genordinalconstnode(1,s32bitdef)
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(round(vr),s32bitdef)
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(round(vl),s32bitdef);
|
|
|
|
+ end;
|
|
|
|
+ in_const_frac :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(frac(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(frac(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_int :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(int(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(int(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_abs :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(abs(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(abs(vl),p^.left^.resulttype);
|
|
|
|
+ end;
|
|
|
|
+ in_const_sqr :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(sqr(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(sqr(vl),p^.left^.resulttype);
|
|
|
|
+ end;
|
|
|
|
+ in_const_odd :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ CGMessage(type_e_integer_expr_expected)
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode(byte(odd(vl)),booldef);
|
|
|
|
+ end;
|
|
|
|
+ in_const_swap_word :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ CGMessage(type_e_integer_expr_expected)
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode((vl and $ff) shl 8+(vl shr 8),p^.left^.resulttype);
|
|
|
|
+ end;
|
|
|
|
+ in_const_swap_long :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ CGMessage(type_e_mismatch)
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode((vl and $ffff) shl 16+(vl shr 16),p^.left^.resulttype);
|
|
|
|
+ end;
|
|
|
|
+ in_const_ptr :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ CGMessage(type_e_mismatch)
|
|
|
|
+ else
|
|
|
|
+ hp:=genordinalconstnode((vl2 shl 16) or vl,voidpointerdef);
|
|
|
|
+ end;
|
|
|
|
+ in_const_sqrt :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(sqrt(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(sqrt(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_arctan :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(arctan(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(arctan(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_cos :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(cos(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(cos(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_sin :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(sin(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(sin(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_exp :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(exp(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(exp(vl));
|
|
|
|
+ end;
|
|
|
|
+ in_const_ln :
|
|
|
|
+ begin
|
|
|
|
+ if isreal then
|
|
|
|
+ hp:=genrealconstnode(ln(vr))
|
|
|
|
+ else
|
|
|
|
+ hp:=genrealconstnode(ln(vl));
|
|
|
|
+ end;
|
|
|
|
+ else
|
|
|
|
+ internalerror(88);
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
disposetree(p);
|
|
disposetree(p);
|
|
@@ -285,8 +300,11 @@ implementation
|
|
else
|
|
else
|
|
begin
|
|
begin
|
|
case p^.inlinenumber of
|
|
case p^.inlinenumber of
|
|
- in_lo_long,in_hi_long,
|
|
|
|
- in_lo_word,in_hi_word:
|
|
|
|
|
|
+
|
|
|
|
+ in_lo_long,
|
|
|
|
+ in_hi_long,
|
|
|
|
+ in_lo_word,
|
|
|
|
+ in_hi_word:
|
|
begin
|
|
begin
|
|
if p^.registers32<1 then
|
|
if p^.registers32<1 then
|
|
p^.registers32:=1;
|
|
p^.registers32:=1;
|
|
@@ -296,7 +314,7 @@ implementation
|
|
begin
|
|
begin
|
|
p^.resulttype:=u16bitdef;
|
|
p^.resulttype:=u16bitdef;
|
|
if (m_tp in aktmodeswitches) or
|
|
if (m_tp in aktmodeswitches) or
|
|
- (m_delphi in aktmodeswitches) then
|
|
|
|
|
|
+ (m_delphi in aktmodeswitches) then
|
|
CGMessage(type_w_maybe_wrong_hi_lo);
|
|
CGMessage(type_w_maybe_wrong_hi_lo);
|
|
end;
|
|
end;
|
|
p^.location.loc:=LOC_REGISTER;
|
|
p^.location.loc:=LOC_REGISTER;
|
|
@@ -318,6 +336,7 @@ implementation
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_sizeof_x:
|
|
in_sizeof_x:
|
|
begin
|
|
begin
|
|
if push_high_param(p^.left^.resulttype) then
|
|
if push_high_param(p^.left^.resulttype) then
|
|
@@ -337,6 +356,7 @@ implementation
|
|
p^.resulttype:=s32bitdef;
|
|
p^.resulttype:=s32bitdef;
|
|
p^.location.loc:=LOC_REGISTER;
|
|
p^.location.loc:=LOC_REGISTER;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_typeof_x:
|
|
in_typeof_x:
|
|
begin
|
|
begin
|
|
if p^.registers32<1 then
|
|
if p^.registers32<1 then
|
|
@@ -344,6 +364,7 @@ implementation
|
|
p^.location.loc:=LOC_REGISTER;
|
|
p^.location.loc:=LOC_REGISTER;
|
|
p^.resulttype:=voidpointerdef;
|
|
p^.resulttype:=voidpointerdef;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_ord_x:
|
|
in_ord_x:
|
|
begin
|
|
begin
|
|
if (p^.left^.treetype=ordconstn) then
|
|
if (p^.left^.treetype=ordconstn) then
|
|
@@ -401,6 +422,7 @@ implementation
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_chr_byte:
|
|
in_chr_byte:
|
|
begin
|
|
begin
|
|
hp:=gentypeconvnode(p^.left,cchardef);
|
|
hp:=gentypeconvnode(p^.left,cchardef);
|
|
@@ -409,6 +431,7 @@ implementation
|
|
p^.explizit:=true;
|
|
p^.explizit:=true;
|
|
firstpass(p);
|
|
firstpass(p);
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_length_string:
|
|
in_length_string:
|
|
begin
|
|
begin
|
|
if is_ansistring(p^.left^.resulttype) then
|
|
if is_ansistring(p^.left^.resulttype) then
|
|
@@ -446,11 +469,13 @@ implementation
|
|
p:=hp;
|
|
p:=hp;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_assigned_x:
|
|
in_assigned_x:
|
|
begin
|
|
begin
|
|
p^.resulttype:=booldef;
|
|
p^.resulttype:=booldef;
|
|
p^.location.loc:=LOC_FLAGS;
|
|
p^.location.loc:=LOC_FLAGS;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_pred_x,
|
|
in_pred_x,
|
|
in_succ_x:
|
|
in_succ_x:
|
|
begin
|
|
begin
|
|
@@ -477,9 +502,10 @@ implementation
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
- in_inc_x,
|
|
|
|
- in_dec_x:
|
|
|
|
- begin
|
|
|
|
|
|
+
|
|
|
|
+ in_inc_x,
|
|
|
|
+ in_dec_x:
|
|
|
|
+ begin
|
|
p^.resulttype:=voiddef;
|
|
p^.resulttype:=voiddef;
|
|
if assigned(p^.left) then
|
|
if assigned(p^.left) then
|
|
begin
|
|
begin
|
|
@@ -517,7 +543,8 @@ implementation
|
|
end
|
|
end
|
|
else
|
|
else
|
|
CGMessage(type_e_mismatch);
|
|
CGMessage(type_e_mismatch);
|
|
- end;
|
|
|
|
|
|
+ end;
|
|
|
|
+
|
|
in_read_x,
|
|
in_read_x,
|
|
in_readln_x,
|
|
in_readln_x,
|
|
in_write_x,
|
|
in_write_x,
|
|
@@ -570,69 +597,60 @@ implementation
|
|
begin
|
|
begin
|
|
isreal:=false;
|
|
isreal:=false;
|
|
case hp^.left^.resulttype^.deftype of
|
|
case hp^.left^.resulttype^.deftype of
|
|
- filedef : begin
|
|
|
|
- { only allowed as first parameter }
|
|
|
|
- if assigned(hp^.right) then
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
- end;
|
|
|
|
- stringdef : begin
|
|
|
|
- { generate the high() value for the shortstring }
|
|
|
|
- if (not dowrite) and
|
|
|
|
- is_shortstring(hp^.left^.resulttype) then
|
|
|
|
- gen_high_tree(hp,true);
|
|
|
|
- end;
|
|
|
|
- pointerdef : begin
|
|
|
|
- if not is_equal(ppointerdef(hp^.left^.resulttype)^.definition,cchardef) then
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
- end;
|
|
|
|
- floatdef : begin
|
|
|
|
- isreal:=true;
|
|
|
|
- end;
|
|
|
|
- orddef : begin
|
|
|
|
- case porddef(hp^.left^.resulttype)^.typ of
|
|
|
|
- uchar,
|
|
|
|
- u32bit,
|
|
|
|
- s32bit,
|
|
|
|
- s64bitint,
|
|
|
|
- u64bit:
|
|
|
|
- ;
|
|
|
|
-
|
|
|
|
- u8bit,s8bit,
|
|
|
|
- u16bit,s16bit : if dowrite then
|
|
|
|
- hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
|
|
|
|
- bool8bit,
|
|
|
|
- bool16bit,bool32bit : if dowrite then
|
|
|
|
- hp^.left:=gentypeconvnode(hp^.left,booldef)
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
- end;
|
|
|
|
- end;
|
|
|
|
- arraydef : begin
|
|
|
|
- if not((parraydef(hp^.left^.resulttype)^.lowrange=0) and
|
|
|
|
- is_equal(parraydef(hp^.left^.resulttype)^.definition,cchardef)) then
|
|
|
|
- begin
|
|
|
|
- { but we convert only if the first index<>0,
|
|
|
|
- because in this case we have a ASCIIZ string }
|
|
|
|
- if dowrite and
|
|
|
|
- (parraydef(hp^.left^.resulttype)^.lowrange<>0) and
|
|
|
|
- (parraydef(hp^.left^.resulttype)^.definition^.deftype=orddef) and
|
|
|
|
- (porddef(parraydef(hp^.left^.resulttype)^.definition)^.typ=uchar) then
|
|
|
|
- hp^.left:=gentypeconvnode(hp^.left,cshortstringdef)
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
- end;
|
|
|
|
- end;
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_cant_read_write_type);
|
|
|
|
|
|
+ filedef :
|
|
|
|
+ begin
|
|
|
|
+ { only allowed as first parameter }
|
|
|
|
+ if assigned(hp^.right) then
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
|
|
+ end;
|
|
|
|
+ stringdef :
|
|
|
|
+ begin
|
|
|
|
+ { generate the high() value for the shortstring }
|
|
|
|
+ if (not dowrite) and
|
|
|
|
+ is_shortstring(hp^.left^.resulttype) then
|
|
|
|
+ gen_high_tree(hp,true);
|
|
|
|
+ end;
|
|
|
|
+ pointerdef :
|
|
|
|
+ begin
|
|
|
|
+ if not is_pchar(hp^.left^.resulttype) then
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
|
|
+ end;
|
|
|
|
+ floatdef :
|
|
|
|
+ begin
|
|
|
|
+ isreal:=true;
|
|
|
|
+ end;
|
|
|
|
+ orddef :
|
|
|
|
+ begin
|
|
|
|
+ case porddef(hp^.left^.resulttype)^.typ of
|
|
|
|
+ uchar,
|
|
|
|
+ u32bit,s32bit,
|
|
|
|
+ u64bit,s64bitint:
|
|
|
|
+ ;
|
|
|
|
+ u8bit,s8bit,
|
|
|
|
+ u16bit,s16bit :
|
|
|
|
+ if dowrite then
|
|
|
|
+ hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
|
|
|
|
+ bool8bit,
|
|
|
|
+ bool16bit,
|
|
|
|
+ bool32bit :
|
|
|
|
+ if dowrite then
|
|
|
|
+ hp^.left:=gentypeconvnode(hp^.left,booldef)
|
|
|
|
+ else
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
|
|
+ else
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
|
|
+ end;
|
|
|
|
+ end;
|
|
|
|
+ arraydef :
|
|
|
|
+ begin
|
|
|
|
+ if not is_chararray(hp^.left^.resulttype) then
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
|
|
+ end;
|
|
|
|
+ else
|
|
|
|
+ CGMessage(type_e_cant_read_write_type);
|
|
end;
|
|
end;
|
|
|
|
|
|
{ some format options ? }
|
|
{ some format options ? }
|
|
-{$ifndef NOCOLONCHECK}
|
|
|
|
- { commented
|
|
|
|
- because supposes reverse order of parameters
|
|
|
|
- PM : now restored PM }
|
|
|
|
if hp^.is_colon_para then
|
|
if hp^.is_colon_para then
|
|
begin
|
|
begin
|
|
if hp^.right^.is_colon_para then
|
|
if hp^.right^.is_colon_para then
|
|
@@ -668,8 +686,6 @@ implementation
|
|
{ do the checking for the colon'd arg }
|
|
{ do the checking for the colon'd arg }
|
|
hp:=length_para;
|
|
hp:=length_para;
|
|
end;
|
|
end;
|
|
-{$endif ndef NOCOLONCHECK}
|
|
|
|
-
|
|
|
|
end;
|
|
end;
|
|
hp:=hp^.right;
|
|
hp:=hp^.right;
|
|
end;
|
|
end;
|
|
@@ -683,6 +699,7 @@ implementation
|
|
left_right_max(p);
|
|
left_right_max(p);
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_settextbuf_file_x :
|
|
in_settextbuf_file_x :
|
|
begin
|
|
begin
|
|
{ warning here p^.left is the callparannode
|
|
{ warning here p^.left is the callparannode
|
|
@@ -700,8 +717,10 @@ implementation
|
|
p:=hp;
|
|
p:=hp;
|
|
firstpass(p);
|
|
firstpass(p);
|
|
end;
|
|
end;
|
|
|
|
+
|
|
{ the firstpass of the arg has been done in firstcalln ? }
|
|
{ the firstpass of the arg has been done in firstcalln ? }
|
|
- in_reset_typedfile,in_rewrite_typedfile :
|
|
|
|
|
|
+ in_reset_typedfile,
|
|
|
|
+ in_rewrite_typedfile :
|
|
begin
|
|
begin
|
|
procinfo.flags:=procinfo.flags or pi_do_call;
|
|
procinfo.flags:=procinfo.flags or pi_do_call;
|
|
{ to be sure the right definition is loaded }
|
|
{ to be sure the right definition is loaded }
|
|
@@ -709,6 +728,7 @@ implementation
|
|
firstpass(p^.left);
|
|
firstpass(p^.left);
|
|
p^.resulttype:=voiddef;
|
|
p^.resulttype:=voiddef;
|
|
end;
|
|
end;
|
|
|
|
+
|
|
in_str_x_string :
|
|
in_str_x_string :
|
|
begin
|
|
begin
|
|
procinfo.flags:=procinfo.flags or pi_do_call;
|
|
procinfo.flags:=procinfo.flags or pi_do_call;
|
|
@@ -726,6 +746,9 @@ implementation
|
|
count_ref:=true;
|
|
count_ref:=true;
|
|
p^.left^.right:=nil;
|
|
p^.left^.right:=nil;
|
|
firstcallparan(p^.left,nil);
|
|
firstcallparan(p^.left,nil);
|
|
|
|
+ { remove warning when result is passed }
|
|
|
|
+ if (p^.left^.left^.treetype=funcretn) then
|
|
|
|
+ procinfo.funcret_is_valid:=true;
|
|
must_be_valid:=true;
|
|
must_be_valid:=true;
|
|
p^.left^.right:=hp;
|
|
p^.left^.right:=hp;
|
|
firstcallparan(p^.left^.right,nil);
|
|
firstcallparan(p^.left^.right,nil);
|
|
@@ -750,28 +773,25 @@ implementation
|
|
|
|
|
|
isreal:=false;
|
|
isreal:=false;
|
|
case hp^.resulttype^.deftype of
|
|
case hp^.resulttype^.deftype of
|
|
- orddef : begin
|
|
|
|
- case porddef(hp^.left^.resulttype)^.typ of
|
|
|
|
-
|
|
|
|
- u32bit,
|
|
|
|
- s32bit,
|
|
|
|
- s64bitint,
|
|
|
|
- u64bit:
|
|
|
|
- ;
|
|
|
|
-
|
|
|
|
- u8bit,s8bit,
|
|
|
|
- u16bit,s16bit:
|
|
|
|
- hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_integer_or_real_expr_expected);
|
|
|
|
- end;
|
|
|
|
- end;
|
|
|
|
- floatdef : begin
|
|
|
|
- isreal:=true;
|
|
|
|
- end;
|
|
|
|
- else
|
|
|
|
- CGMessage(type_e_integer_or_real_expr_expected);
|
|
|
|
|
|
+ orddef :
|
|
|
|
+ begin
|
|
|
|
+ case porddef(hp^.left^.resulttype)^.typ of
|
|
|
|
+ u32bit,s32bit,
|
|
|
|
+ s64bitint,u64bit:
|
|
|
|
+ ;
|
|
|
|
+ u8bit,s8bit,
|
|
|
|
+ u16bit,s16bit:
|
|
|
|
+ hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
|
|
|
|
+ else
|
|
|
|
+ CGMessage(type_e_integer_or_real_expr_expected);
|
|
|
|
+ end;
|
|
|
|
+ end;
|
|
|
|
+ floatdef :
|
|
|
|
+ begin
|
|
|
|
+ isreal:=true;
|
|
|
|
+ end;
|
|
|
|
+ else
|
|
|
|
+ CGMessage(type_e_integer_or_real_expr_expected);
|
|
end;
|
|
end;
|
|
|
|
|
|
{ some format options ? }
|
|
{ some format options ? }
|
|
@@ -808,6 +828,7 @@ implementation
|
|
{ calc registers }
|
|
{ calc registers }
|
|
left_right_max(p);
|
|
left_right_max(p);
|
|
end;
|
|
end;
|
|
|
|
+
|
|
{$IfnDef OLDVAL}
|
|
{$IfnDef OLDVAL}
|
|
in_val_x :
|
|
in_val_x :
|
|
begin
|
|
begin
|
|
@@ -848,9 +869,13 @@ implementation
|
|
must_be_valid:=false;
|
|
must_be_valid:=false;
|
|
count_ref:=true;
|
|
count_ref:=true;
|
|
hpp^.right:=nil;
|
|
hpp^.right:=nil;
|
|
- {hpp = destination}
|
|
|
|
|
|
+ {hpp = destination}
|
|
firstcallparan(hpp,nil);
|
|
firstcallparan(hpp,nil);
|
|
- if codegenerror then exit;
|
|
|
|
|
|
+ if codegenerror then
|
|
|
|
+ exit;
|
|
|
|
+ { remove warning when result is passed }
|
|
|
|
+ if (hpp^.left^.treetype=funcretn) then
|
|
|
|
+ procinfo.funcret_is_valid:=true;
|
|
hpp^.right := hp;
|
|
hpp^.right := hp;
|
|
if (hpp^.left^.location.loc<>LOC_REFERENCE) then
|
|
if (hpp^.left^.location.loc<>LOC_REFERENCE) then
|
|
CGMessage(type_e_variable_id_expected)
|
|
CGMessage(type_e_variable_id_expected)
|
|
@@ -874,9 +899,10 @@ implementation
|
|
left_right_max(p);
|
|
left_right_max(p);
|
|
end;
|
|
end;
|
|
{$EndIf OLDVAL}
|
|
{$EndIf OLDVAL}
|
|
- in_include_x_y,
|
|
|
|
- in_exclude_x_y:
|
|
|
|
- begin
|
|
|
|
|
|
+
|
|
|
|
+ in_include_x_y,
|
|
|
|
+ in_exclude_x_y:
|
|
|
|
+ begin
|
|
p^.resulttype:=voiddef;
|
|
p^.resulttype:=voiddef;
|
|
if assigned(p^.left) then
|
|
if assigned(p^.left) then
|
|
begin
|
|
begin
|
|
@@ -886,6 +912,9 @@ implementation
|
|
{$ifdef SUPPORT_MMX}
|
|
{$ifdef SUPPORT_MMX}
|
|
p^.registersmmx:=p^.left^.registersmmx;
|
|
p^.registersmmx:=p^.left^.registersmmx;
|
|
{$endif SUPPORT_MMX}
|
|
{$endif SUPPORT_MMX}
|
|
|
|
+ { remove warning when result is passed }
|
|
|
|
+ if (p^.left^.left^.treetype=funcretn) then
|
|
|
|
+ procinfo.funcret_is_valid:=true;
|
|
{ first param must be var }
|
|
{ first param must be var }
|
|
if (p^.left^.left^.location.loc<>LOC_REFERENCE) and
|
|
if (p^.left^.left^.location.loc<>LOC_REFERENCE) and
|
|
(p^.left^.left^.location.loc<>LOC_CREGISTER) then
|
|
(p^.left^.left^.location.loc<>LOC_CREGISTER) then
|
|
@@ -913,8 +942,10 @@ implementation
|
|
end
|
|
end
|
|
else
|
|
else
|
|
CGMessage(type_e_mismatch);
|
|
CGMessage(type_e_mismatch);
|
|
- end;
|
|
|
|
- in_low_x,in_high_x:
|
|
|
|
|
|
+ end;
|
|
|
|
+
|
|
|
|
+ in_low_x,
|
|
|
|
+ in_high_x:
|
|
begin
|
|
begin
|
|
if p^.left^.treetype in [typen,loadn,subscriptn] then
|
|
if p^.left^.treetype in [typen,loadn,subscriptn] then
|
|
begin
|
|
begin
|
|
@@ -1019,8 +1050,8 @@ implementation
|
|
end;
|
|
end;
|
|
|
|
|
|
else
|
|
else
|
|
- internalerror(8);
|
|
|
|
- end;
|
|
|
|
|
|
+ internalerror(8);
|
|
|
|
+ end;
|
|
end;
|
|
end;
|
|
{ generate an error if no resulttype is set }
|
|
{ generate an error if no resulttype is set }
|
|
if not assigned(p^.resulttype) then
|
|
if not assigned(p^.resulttype) then
|
|
@@ -1033,7 +1064,10 @@ implementation
|
|
end.
|
|
end.
|
|
{
|
|
{
|
|
$Log$
|
|
$Log$
|
|
- Revision 1.22 1999-03-26 00:05:48 peter
|
|
|
|
|
|
+ Revision 1.23 1999-04-08 10:16:48 peter
|
|
|
|
+ * funcret_valid flag is set for inline functions
|
|
|
|
+
|
|
|
|
+ Revision 1.22 1999/03/26 00:05:48 peter
|
|
* released valintern
|
|
* released valintern
|
|
+ deffile is now removed when compiling is finished
|
|
+ deffile is now removed when compiling is finished
|
|
* ^( compiles now correct
|
|
* ^( compiles now correct
|