mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:08:01 +02:00
bugfix 0037785 cvtsi2sd,cvtsi2ss for platform i386
git-svn-id: branches/tg74/avx512-0037785@48526 -
This commit is contained in:
parent
b9fc7729c6
commit
aff1f4999c
@ -424,7 +424,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
@ -541,7 +541,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
|
@ -424,7 +424,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
@ -541,7 +541,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
|
@ -5530,13 +5530,17 @@ implementation
|
||||
(gas_needsuffix[AsmOp] <> AttSufNONE) and
|
||||
(not(InsTabMemRefSizeInfoCache^[AsmOp].MemRefSize in MemRefMultiples)) then
|
||||
begin
|
||||
// combination (attsuffix <> "AttSufNONE") and (MemRefSize is not in MemRefMultiples) is not supported =>> check opcode-definition in x86ins.dat');
|
||||
// combination (attsuffix <> "AttSufNONE") and (MemRefSize is not in MemRefMultiples) is not supported =>> check opcode-definition in x86ins.dat
|
||||
|
||||
inc(iCntOpcodeValError);
|
||||
Str(gas_needsuffix[AsmOp],hs1);
|
||||
Str(InsTabMemRefSizeInfoCache^[AsmOp].MemRefSize,hs2);
|
||||
Message3(asmr_e_not_supported_combination_attsuffix_memrefsize_type,
|
||||
std_op2str[AsmOp],hs1,hs2);
|
||||
if (AsmOp <> A_CVTSI2SD) and
|
||||
(AsmOp <> A_CVTSI2SS) then
|
||||
begin
|
||||
inc(iCntOpcodeValError);
|
||||
Str(gas_needsuffix[AsmOp],hs1);
|
||||
Str(InsTabMemRefSizeInfoCache^[AsmOp].MemRefSize,hs2);
|
||||
Message3(asmr_e_not_supported_combination_attsuffix_memrefsize_type,
|
||||
std_op2str[AsmOp],hs1,hs2);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
@ -2075,7 +2075,8 @@ begin
|
||||
end;
|
||||
|
||||
if asize<>0 then
|
||||
ai.oper[i-1]^.ot:=(ai.oper[i-1]^.ot and not OT_SIZE_MASK) or asize;
|
||||
//ai.oper[i-1]^.ot:=(ai.oper[i-1]^.ot and not OT_SIZE_MASK) or asize;
|
||||
ai.oper[i-1]^.ot:=(ai.oper[i-1]^.ot and OT_NON_SIZE) or asize;
|
||||
end;
|
||||
end;
|
||||
OPR_REFERENCE:
|
||||
|
@ -2339,7 +2339,7 @@ xmmreg,mmxrm \331\2\x0F\x2A\110 KATMAI,SSE,MMX
|
||||
mmxreg,mem64 \331\2\x0F\x2D\110 KATMAI,SSE,MMX
|
||||
mmxreg,xmmreg \331\2\x0F\x2D\110 KATMAI,SSE,MMX
|
||||
|
||||
[CVTSI2SS,cvtsi2ssX]
|
||||
[CVTSI2SS,cvtsi2ssS]
|
||||
(Ch_Wop2, Ch_Rop1)
|
||||
xmmreg,rm32 \333\321\2\x0F\x2A\110 KATMAI,SSE
|
||||
xmmreg,rm64 \333\321\2\x0F\x2A\110 KATMAI,SSE,X86_64
|
||||
@ -2878,7 +2878,7 @@ reg64,mem64 \334\320\2\x0F\x2D\110 WILLAMETTE,SSE2,X86_64
|
||||
xmmreg,xmmreg \334\2\x0F\x5A\110 WILLAMETTE,SSE2 ;,SQ
|
||||
xmmreg,mem64 \334\2\x0F\x5A\110 WILLAMETTE,SSE2 ;,SQ
|
||||
|
||||
[CVTSI2SD,cvtsi2sdX]
|
||||
[CVTSI2SD,cvtsi2sdS]
|
||||
(Ch_Wop2, Ch_Rop1)
|
||||
xmmreg,rm32 \334\2\x0F\x2A\110 WILLAMETTE,SSE2
|
||||
xmmreg,rm64 \326\334\321\2\x0F\x2A\110 WILLAMETTE,SSE2,X86_64
|
||||
|
@ -410,7 +410,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
@ -527,7 +527,7 @@ attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufINT,
|
||||
attsufMMS,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
attsufNONE,
|
||||
|
Loading…
Reference in New Issue
Block a user