mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
* Type conversion nodes are now stripped if the
source and target types are equal, unmanaged and not generic/undefined.
This commit is contained in:
parent
8b1e5a0589
commit
19802bf597
@ -874,7 +874,6 @@ interface
|
||||
location_copy(location,call.location);
|
||||
end;
|
||||
|
||||
|
||||
begin
|
||||
ctypeconvnode := tcgtypeconvnode;
|
||||
casnode := tcgasnode;
|
||||
|
@ -335,6 +335,13 @@ implementation
|
||||
cg.a_jmp_always(list,falselabel);
|
||||
end;
|
||||
{$endif cpuflags}
|
||||
LOC_CONSTANT:
|
||||
begin
|
||||
if p.location.value = 0 then
|
||||
cg.a_jmp_always(list,falselabel)
|
||||
else
|
||||
cg.a_jmp_always(list,truelabel);
|
||||
end;
|
||||
else
|
||||
internalerror(200308241);
|
||||
end;
|
||||
|
@ -2906,10 +2906,22 @@ implementation
|
||||
case eq of
|
||||
te_exact,
|
||||
te_equal :
|
||||
begin
|
||||
{ JVM in particular gets itself in a twist if string consts
|
||||
aren't prematurely simplified }
|
||||
if not target_specific_need_equal_typeconv(left.resultdef, resultdef) then
|
||||
begin
|
||||
result := simplify(false);
|
||||
if assigned(result) then
|
||||
begin
|
||||
{ Make sure the compiler knows that this address is typed
|
||||
(prevents the warning from tbs/tb0504.pp from triggering) }
|
||||
if (nf_explicit in flags) and (result.nodetype = addrn) then
|
||||
include(taddrnode(result).addrnodeflags,anf_typedaddr);
|
||||
|
||||
exit;
|
||||
end;
|
||||
end;
|
||||
|
||||
{ in case of bitpacked accesses, the original type must
|
||||
remain so that not too many/few bits are laoded }
|
||||
@ -2948,6 +2960,7 @@ implementation
|
||||
result:=left;
|
||||
left:=nil;
|
||||
end;
|
||||
|
||||
exit;
|
||||
end;
|
||||
end;
|
||||
@ -3842,6 +3855,37 @@ implementation
|
||||
;
|
||||
end;
|
||||
{$endif not CPUNO32BITOPS}
|
||||
|
||||
{ Finally, let's see if we can strip equal type conversions completely }
|
||||
if (convtype = tc_equal) and
|
||||
(
|
||||
(
|
||||
{ Exact def matches are fine regardless }
|
||||
(totypedef = resultdef) and
|
||||
(left.resultdef = resultdef)
|
||||
) or (
|
||||
{ If left.resultdef = resultdef, that's implicitly checked in the condition above }
|
||||
not target_specific_need_equal_typeconv(left.resultdef, resultdef) and
|
||||
{ Objects need an explicit conversion }
|
||||
(resultdef.typ <> objectdef) and
|
||||
equal_defs(totypedef, resultdef) and
|
||||
equal_defs(left.resultdef, resultdef) and
|
||||
{ Undefined definitions are usually generics that haven't been specialized yet }
|
||||
not is_undefined(resultdef) and
|
||||
not is_undefined(totypedef) and
|
||||
not is_undefined(left.resultdef)
|
||||
)
|
||||
) and not is_managed_type(resultdef) and not is_managed_type(totypedef) and not is_managed_type(left.resultdef) then
|
||||
begin
|
||||
{ Exact conversion - we can remove this typeconv node }
|
||||
if nf_absolute in flags then
|
||||
{ Make sure the absolute flag gets transferred }
|
||||
Include(left.flags, nf_absolute);
|
||||
|
||||
Result := left;
|
||||
left := nil;
|
||||
Exit;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
|
@ -474,6 +474,7 @@ implementation
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
begin
|
||||
ctypeconvnode:=tx86typeconvnode
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user