mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:09:30 +02:00
working on internal assembler-reader x86 opsize local/global var
git-svn-id: branches/tg74/avx512-0037785@47811 -
This commit is contained in:
parent
ecf5e51579
commit
295e2d4dff
@ -1537,6 +1537,23 @@ procedure Tx86Instruction.SetInstructionOpsize;
|
||||
result := true;
|
||||
end;
|
||||
end;
|
||||
|
||||
if result and (MemRefSize in [msiMultipleMinSize128, msiMultipleMinSize256, msiMultipleMinSize512]) then
|
||||
begin
|
||||
for i := 1 to ops do
|
||||
if tx86operand(operands[i]).opr.typ in [OPR_REGISTER] then
|
||||
begin
|
||||
case tx86operand(operands[i]).opsize of
|
||||
S_XMM: ;
|
||||
S_YMM:;
|
||||
S_ZMM:;
|
||||
end;
|
||||
//opsize := tx86operand(operands[i]).opsize;
|
||||
//result := true;
|
||||
|
||||
break;
|
||||
end;
|
||||
end;
|
||||
end
|
||||
else if not(MemRefSize in [msiMemRegSize]) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user