|
@@ -0,0 +1,150 @@
|
|
|
+{
|
|
|
+ Copyright (c) 1998-2002 by Florian Klaempfl and Jonas Maebe
|
|
|
+
|
|
|
+ This unit contains the peephole optimizer.
|
|
|
+
|
|
|
+ This program is free software; you can redistribute it and/or modify
|
|
|
+ it under the terms of the GNU General Public License as published by
|
|
|
+ the Free Software Foundation; either version 2 of the License, or
|
|
|
+ (at your option) any later version.
|
|
|
+
|
|
|
+ This program is distributed in the hope that it will be useful,
|
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ GNU General Public License for more details.
|
|
|
+
|
|
|
+ You should have received a copy of the GNU General Public License
|
|
|
+ along with this program; if not, write to the Free Software
|
|
|
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
+
|
|
|
+ ****************************************************************************
|
|
|
+}
|
|
|
+unit aoptx86;
|
|
|
+
|
|
|
+{$i fpcdefs.inc}
|
|
|
+
|
|
|
+{ $define DEBUG_AOPTCPU}
|
|
|
+
|
|
|
+ interface
|
|
|
+
|
|
|
+ uses
|
|
|
+ globtype,
|
|
|
+ cpubase,
|
|
|
+ aasmtai,
|
|
|
+ cgbase,cgutils;
|
|
|
+
|
|
|
+ function MatchInstruction(const instr: tai; const op: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+ function MatchInstruction(const instr: tai; const op1,op2: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+ function MatchInstruction(const instr: tai; const op1,op2,op3: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+
|
|
|
+ function MatchOperand(const oper: TOper; const reg: TRegister): boolean; inline;
|
|
|
+ function MatchOperand(const oper: TOper; const a: tcgint): boolean; inline;
|
|
|
+
|
|
|
+ function RefsEqual(const r1, r2: treference): boolean;
|
|
|
+
|
|
|
+ function MatchReference(const ref : treference;base,index : TRegister) : Boolean;
|
|
|
+
|
|
|
+ function MatchOpType(const instr : tai;ot0,ot1 : toptype) : Boolean;
|
|
|
+
|
|
|
+ implementation
|
|
|
+
|
|
|
+ uses
|
|
|
+ verbose,
|
|
|
+ aasmcpu;
|
|
|
+
|
|
|
+ function MatchInstruction(const instr: tai; const op: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+ begin
|
|
|
+ result :=
|
|
|
+ (instr.typ = ait_instruction) and
|
|
|
+ (taicpu(instr).opcode = op) and
|
|
|
+ ((opsize = []) or (taicpu(instr).opsize in opsize));
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchInstruction(const instr: tai; const op1,op2: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+ begin
|
|
|
+ result :=
|
|
|
+ (instr.typ = ait_instruction) and
|
|
|
+ ((taicpu(instr).opcode = op1) or
|
|
|
+ (taicpu(instr).opcode = op2)
|
|
|
+ ) and
|
|
|
+ ((opsize = []) or (taicpu(instr).opsize in opsize));
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchInstruction(const instr: tai; const op1,op2,op3: TAsmOp; const opsize: topsizes): boolean;
|
|
|
+ begin
|
|
|
+ result :=
|
|
|
+ (instr.typ = ait_instruction) and
|
|
|
+ ((taicpu(instr).opcode = op1) or
|
|
|
+ (taicpu(instr).opcode = op2) or
|
|
|
+ (taicpu(instr).opcode = op3)
|
|
|
+ ) and
|
|
|
+ ((opsize = []) or (taicpu(instr).opsize in opsize));
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchOperand(const oper: TOper; const reg: TRegister): boolean; inline;
|
|
|
+ begin
|
|
|
+ result := (oper.typ = top_reg) and (oper.reg = reg);
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchOperand(const oper: TOper; const a: tcgint): boolean; inline;
|
|
|
+ begin
|
|
|
+ result := (oper.typ = top_const) and (oper.val = a);
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchOperand(const oper1: TOper; const oper2: TOper): boolean; inline;
|
|
|
+ begin
|
|
|
+ result := oper1.typ = oper2.typ;
|
|
|
+
|
|
|
+ if result then
|
|
|
+ case oper1.typ of
|
|
|
+ top_const:
|
|
|
+ Result:=oper1.val = oper2.val;
|
|
|
+ top_reg:
|
|
|
+ Result:=oper1.reg = oper2.reg;
|
|
|
+ top_ref:
|
|
|
+ Result:=RefsEqual(oper1.ref^, oper2.ref^);
|
|
|
+ else
|
|
|
+ internalerror(2013102801);
|
|
|
+ end
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function RefsEqual(const r1, r2: treference): boolean;
|
|
|
+ begin
|
|
|
+ RefsEqual :=
|
|
|
+ (r1.offset = r2.offset) and
|
|
|
+ (r1.segment = r2.segment) and (r1.base = r2.base) and
|
|
|
+ (r1.index = r2.index) and (r1.scalefactor = r2.scalefactor) and
|
|
|
+ (r1.symbol=r2.symbol) and (r1.refaddr = r2.refaddr) and
|
|
|
+ (r1.relsymbol = r2.relsymbol);
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchReference(const ref : treference;base,index : TRegister) : Boolean;
|
|
|
+ begin
|
|
|
+ Result:=(ref.offset=0) and
|
|
|
+ (ref.scalefactor in [0,1]) and
|
|
|
+ (ref.segment=NR_NO) and
|
|
|
+ (ref.symbol=nil) and
|
|
|
+ (ref.relsymbol=nil) and
|
|
|
+ ((base=NR_INVALID) or
|
|
|
+ (ref.base=base)) and
|
|
|
+ ((index=NR_INVALID) or
|
|
|
+ (ref.index=index));
|
|
|
+ end;
|
|
|
+
|
|
|
+
|
|
|
+ function MatchOpType(const instr : tai;ot0,ot1 : toptype) : Boolean;
|
|
|
+ begin
|
|
|
+ Result:=(taicpu(instr).ops=2) and
|
|
|
+ (taicpu(instr).oper[0]^.typ=ot0) and
|
|
|
+ (taicpu(instr).oper[1]^.typ=ot1);
|
|
|
+ end;
|
|
|
+
|
|
|
+end.
|
|
|
+
|