12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319 |
- {
- Copyright (c) 1998-2002 by Jonas Maebe, member of the Free Pascal
- Development Team
- This unit implements the ARM optimizer object
- 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 aoptcpu;
- {$i fpcdefs.inc}
- { $define DEBUG_PREREGSCHEDULER}
- Interface
- uses cgbase, cpubase, aasmtai, aasmcpu,aopt, aoptcpub, aoptobj;
- Type
- { TCpuAsmOptimizer }
- TCpuAsmOptimizer = class(TAsmOptimizer)
- { uses the same constructor as TAopObj }
- function PeepHoleOptPass1Cpu(var p: tai): boolean; override;
- procedure PeepHoleOptPass2;override;
- Function RegInInstruction(Reg: TRegister; p1: tai): Boolean;override;
- procedure RemoveSuperfluousMove(const p: tai; movp: tai; const optimizer: string);
- function RegUsedAfterInstruction(reg: Tregister; p: tai;
- var AllUsedRegs: TAllUsedRegs): Boolean;
- End;
- { TCpuPreRegallocScheduler }
- TCpuPreRegallocScheduler = class(TAsmOptimizer)
- function PeepHoleOptPass1Cpu(var p: tai): boolean;override;
- procedure SwapRegLive(p, hp1: taicpu);
- end;
- TCpuThumb2AsmOptimizer = class(TCpuAsmOptimizer)
- { uses the same constructor as TAopObj }
- procedure PeepHoleOptPass2;override;
- End;
- Implementation
- uses
- cutils,verbose,globals,
- systems,
- cpuinfo,
- cgobj,cgutils,procinfo,
- aasmbase,aasmdata;
- function CanBeCond(p : tai) : boolean;
- begin
- result:=
- (p.typ=ait_instruction) and
- (taicpu(p).condition=C_None) and
- (taicpu(p).opcode<>A_PLD) and
- ((taicpu(p).opcode<>A_BLX) or
- (taicpu(p).oper[0]^.typ=top_reg));
- end;
- function RefsEqual(const r1, r2: treference): boolean;
- begin
- refsequal :=
- (r1.offset = r2.offset) 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) and
- (r1.signindex = r2.signindex) and
- (r1.shiftimm = r2.shiftimm) and
- (r1.addressmode = r2.addressmode) and
- (r1.shiftmode = r2.shiftmode);
- end;
- function MatchInstruction(const instr: tai; const op: TAsmOp; const cond: TAsmConds; const postfix: TOpPostfixes): boolean;
- begin
- result :=
- (instr.typ = ait_instruction) and
- (taicpu(instr).opcode = op) and
- ((cond = []) or (taicpu(instr).condition in cond)) and
- ((postfix = []) or (taicpu(instr).oppostfix in postfix));
- 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_conditioncode:
- Result:=oper1.cc = oper2.cc;
- top_ref:
- Result:=RefsEqual(oper1.ref^, oper2.ref^);
- else Result:=false;
- end
- end;
- function MatchOperand(const oper: TOper; const reg: TRegister): boolean; inline;
- begin
- result := (oper.typ = top_reg) and (oper.reg = reg);
- end;
- procedure RemoveRedundantMove(const cmpp: tai; movp: tai; asml: TAsmList);
- begin
- if (taicpu(movp).condition = C_EQ) and
- (taicpu(cmpp).oper[0]^.reg = taicpu(movp).oper[0]^.reg) and
- (taicpu(cmpp).oper[1]^.val = taicpu(movp).oper[1]^.val) then
- begin
- asml.insertafter(tai_comment.Create(strpnew('Peephole CmpMovMov - Removed redundant moveq')), movp);
- asml.remove(movp);
- movp.free;
- end;
- end;
- function regLoadedWithNewValue(reg: tregister; hp: tai): boolean;
- var
- p: taicpu;
- begin
- p := taicpu(hp);
- regLoadedWithNewValue := false;
- if not ((assigned(hp)) and (hp.typ = ait_instruction)) then
- exit;
- case p.opcode of
- { These operands do not write into a register at all }
- A_CMP, A_CMN, A_TST, A_TEQ, A_B, A_BL, A_BX, A_BLX, A_SWI, A_MSR, A_PLD:
- exit;
- {Take care of post/preincremented store and loads, they will change their base register}
- A_STR, A_LDR:
- regLoadedWithNewValue :=
- (taicpu(p).oper[1]^.typ=top_ref) and
- (taicpu(p).oper[1]^.ref^.addressmode in [AM_PREINDEXED,AM_POSTINDEXED]) and
- (taicpu(p).oper[1]^.ref^.base = reg);
- { These four are writing into the first 2 register, UMLAL and SMLAL will also read from them }
- A_UMLAL, A_UMULL, A_SMLAL, A_SMULL:
- regLoadedWithNewValue :=
- (p.oper[1]^.typ = top_reg) and
- (p.oper[1]^.reg = reg);
- {Loads to oper2 from coprocessor}
- {
- MCR/MRC is currently not supported in FPC
- A_MRC:
- regLoadedWithNewValue :=
- (p.oper[2]^.typ = top_reg) and
- (p.oper[2]^.reg = reg);
- }
- {Loads to all register in the registerset}
- A_LDM:
- regLoadedWithNewValue := (getsupreg(reg) in p.oper[1]^.regset^);
- end;
- if regLoadedWithNewValue then
- exit;
- case p.oper[0]^.typ of
- {This is the case}
- top_reg:
- regLoadedWithNewValue := (p.oper[0]^.reg = reg) or
- { LDRD }
- (p.opcode=A_LDR) and (p.oppostfix=PF_D) and (getsupreg(p.oper[0]^.reg)+1=getsupreg(reg));
- {LDM/STM might write a new value to their index register}
- top_ref:
- regLoadedWithNewValue :=
- (taicpu(p).oper[0]^.ref^.addressmode in [AM_PREINDEXED,AM_POSTINDEXED]) and
- (taicpu(p).oper[0]^.ref^.base = reg);
- end;
- end;
- function AlignedToQWord(const ref : treference) : boolean;
- begin
- { (safe) heuristics to ensure alignment }
- result:=(target_info.abi in [abi_eabi,abi_armeb,abi_eabihf]) and
- (((ref.offset>=0) and
- ((ref.offset mod 8)=0) and
- ((ref.base=NR_R13) or
- (ref.index=NR_R13))
- ) or
- ((ref.offset<=0) and
- { when using NR_R11, it has always a value of <qword align>+4 }
- ((abs(ref.offset+4) mod 8)=0) and
- (current_procinfo.framepointer=NR_R11) and
- ((ref.base=NR_R11) or
- (ref.index=NR_R11))
- )
- );
- end;
- function instructionLoadsFromReg(const reg: TRegister; const hp: tai): boolean;
- var
- p: taicpu;
- i: longint;
- begin
- instructionLoadsFromReg := false;
- if not (assigned(hp) and (hp.typ = ait_instruction)) then
- exit;
- p:=taicpu(hp);
- i:=1;
- {For these instructions we have to start on oper[0]}
- if (p.opcode in [A_STR, A_LDM, A_STM, A_PLD,
- A_CMP, A_CMN, A_TST, A_TEQ,
- A_B, A_BL, A_BX, A_BLX,
- A_SMLAL, A_UMLAL]) then i:=0;
- while(i<p.ops) do
- begin
- case p.oper[I]^.typ of
- top_reg:
- instructionLoadsFromReg := (p.oper[I]^.reg = reg) or
- { STRD }
- ((i=0) and (p.opcode=A_STR) and (p.oppostfix=PF_D) and (getsupreg(p.oper[0]^.reg)+1=getsupreg(reg)));
- top_regset:
- instructionLoadsFromReg := (getsupreg(reg) in p.oper[I]^.regset^);
- top_shifterop:
- instructionLoadsFromReg := p.oper[I]^.shifterop^.rs = reg;
- top_ref:
- instructionLoadsFromReg :=
- (p.oper[I]^.ref^.base = reg) or
- (p.oper[I]^.ref^.index = reg);
- end;
- if instructionLoadsFromReg then exit; {Bailout if we found something}
- Inc(I);
- end;
- end;
- function TCpuAsmOptimizer.RegUsedAfterInstruction(reg: Tregister; p: tai;
- var AllUsedRegs: TAllUsedRegs): Boolean;
- begin
- AllUsedRegs[getregtype(reg)].Update(tai(p.Next));
- RegUsedAfterInstruction :=
- AllUsedRegs[getregtype(reg)].IsUsed(reg) and
- not(regLoadedWithNewValue(reg,p)) and
- (
- not(GetNextInstruction(p,p)) or
- instructionLoadsFromReg(reg,p) or
- not(regLoadedWithNewValue(reg,p))
- );
- end;
- procedure TCpuAsmOptimizer.RemoveSuperfluousMove(const p: tai; movp: tai; const optimizer: string);
- var
- TmpUsedRegs: TAllUsedRegs;
- begin
- if MatchInstruction(movp, A_MOV, [taicpu(p).condition], [PF_None]) and
- (taicpu(movp).ops=2) and {We can't optimize if there is a shiftop}
- MatchOperand(taicpu(movp).oper[1]^, taicpu(p).oper[0]^.reg) and
- {There is a special requirement for MUL and MLA, oper[0] and oper[1] are not allowed to be the same}
- not (
- (taicpu(p).opcode in [A_MLA, A_MUL]) and
- (taicpu(p).oper[1]^.reg = taicpu(movp).oper[0]^.reg)
- ) then
- begin
- CopyUsedRegs(TmpUsedRegs);
- UpdateUsedRegs(TmpUsedRegs, tai(p.next));
- if not(RegUsedAfterInstruction(taicpu(p).oper[0]^.reg,movp,TmpUsedRegs)) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole '+optimizer+' removed superfluous mov')), movp);
- taicpu(p).loadreg(0,taicpu(movp).oper[0]^.reg);
- asml.remove(movp);
- movp.free;
- end;
- ReleaseUsedRegs(TmpUsedRegs);
- end;
- end;
- function TCpuAsmOptimizer.PeepHoleOptPass1Cpu(var p: tai): boolean;
- var
- hp1,hp2: tai;
- i, i2: longint;
- TmpUsedRegs: TAllUsedRegs;
- tempop: tasmop;
- function IsPowerOf2(const value: DWord): boolean; inline;
- begin
- Result:=(value and (value - 1)) = 0;
- end;
- begin
- result := false;
- case p.typ of
- ait_instruction:
- begin
- (* optimization proved not to be safe, see tw4768.pp
- {
- change
- <op> reg,x,y
- cmp reg,#0
- into
- <op>s reg,x,y
- }
- { this optimization can applied only to the currently enabled operations because
- the other operations do not update all flags and FPC does not track flag usage }
- if (taicpu(p).opcode in [A_ADC,A_ADD,A_SUB {A_UDIV,A_SDIV,A_MUL,A_MVN,A_MOV,A_ORR,A_EOR,A_AND}]) and
- (taicpu(p).oppostfix = PF_None) and
- (taicpu(p).condition = C_None) and
- GetNextInstruction(p, hp1) and
- MatchInstruction(hp1, A_CMP, [C_None], [PF_None]) and
- (taicpu(hp1).oper[1]^.typ = top_const) and
- (taicpu(p).oper[0]^.reg = taicpu(hp1).oper[0]^.reg) and
- (taicpu(hp1).oper[1]^.val = 0) { and
- GetNextInstruction(hp1, hp2) and
- (tai(hp2).typ = ait_instruction) and
- // be careful here, following instructions could use other flags
- // however after a jump fpc never depends on the value of flags
- (taicpu(hp2).opcode = A_B) and
- (taicpu(hp2).condition in [C_EQ,C_NE,C_MI,C_PL])} then
- begin
- taicpu(p).oppostfix:=PF_S;
- asml.remove(hp1);
- hp1.free;
- end
- else
- *)
- case taicpu(p).opcode of
- A_STR:
- begin
- { change
- str reg1,ref
- ldr reg2,ref
- into
- str reg1,ref
- mov reg2,reg1
- }
- if (taicpu(p).oper[1]^.ref^.addressmode=AM_OFFSET) and
- (taicpu(p).oppostfix=PF_None) and
- GetNextInstruction(p,hp1) and
- MatchInstruction(hp1, A_LDR, [taicpu(p).condition, C_None], [PF_None]) and
- RefsEqual(taicpu(p).oper[1]^.ref^,taicpu(hp1).oper[1]^.ref^) and
- (taicpu(hp1).oper[1]^.ref^.addressmode=AM_OFFSET) then
- begin
- if taicpu(hp1).oper[0]^.reg=taicpu(p).oper[0]^.reg then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole StrLdr2StrMov 1 done')), hp1);
- asml.remove(hp1);
- hp1.free;
- end
- else
- begin
- taicpu(hp1).opcode:=A_MOV;
- taicpu(hp1).oppostfix:=PF_None;
- taicpu(hp1).loadreg(1,taicpu(p).oper[0]^.reg);
- asml.insertbefore(tai_comment.Create(strpnew('Peephole StrLdr2StrMov 2 done')), hp1);
- end;
- result := true;
- end
- { change
- str reg1,ref
- str reg2,ref
- into
- strd reg1,ref
- }
- else if (CPUARM_HAS_EDSP in cpu_capabilities[current_settings.cputype]) and
- (taicpu(p).oppostfix=PF_None) and
- (taicpu(p).oper[1]^.ref^.addressmode=AM_OFFSET) and
- GetNextInstruction(p,hp1) and
- MatchInstruction(hp1, A_STR, [taicpu(p).condition, C_None], [PF_None]) and
- not(odd(getsupreg(taicpu(p).oper[0]^.reg))) and
- (getsupreg(taicpu(p).oper[0]^.reg)+1=getsupreg(taicpu(hp1).oper[0]^.reg)) and
- { str ensures that either base or index contain no register, else ldr wouldn't
- use an offset either
- }
- (taicpu(p).oper[1]^.ref^.base=taicpu(hp1).oper[1]^.ref^.base) and
- (taicpu(p).oper[1]^.ref^.index=taicpu(hp1).oper[1]^.ref^.index) and
- (taicpu(p).oper[1]^.ref^.offset+4=taicpu(hp1).oper[1]^.ref^.offset) and
- (abs(taicpu(p).oper[1]^.ref^.offset)<256) and
- AlignedToQWord(taicpu(p).oper[1]^.ref^) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole StrStr2Strd done')), p);
- taicpu(p).oppostfix:=PF_D;
- asml.remove(hp1);
- hp1.free;
- end;
- end;
- A_LDR:
- begin
- { change
- ldr reg1,ref
- ldr reg2,ref
- into ...
- }
- if (taicpu(p).oper[1]^.ref^.addressmode=AM_OFFSET) and
- GetNextInstruction(p,hp1) and
- { ldrd is not allowed here }
- MatchInstruction(hp1, A_LDR, [taicpu(p).condition, C_None], [taicpu(p).oppostfix,PF_None]-[PF_D]) then
- begin
- {
- ...
- ldr reg1,ref
- mov reg2,reg1
- }
- if RefsEqual(taicpu(p).oper[1]^.ref^,taicpu(hp1).oper[1]^.ref^) and
- (taicpu(p).oper[0]^.reg<>taicpu(hp1).oper[1]^.ref^.index) and
- (taicpu(p).oper[0]^.reg<>taicpu(hp1).oper[1]^.ref^.base) and
- (taicpu(hp1).oper[1]^.ref^.addressmode=AM_OFFSET) then
- begin
- if taicpu(hp1).oper[0]^.reg=taicpu(p).oper[0]^.reg then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole LdrLdr2Ldr done')), hp1);
- asml.remove(hp1);
- hp1.free;
- end
- else
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole LdrLdr2LdrMov done')), hp1);
- taicpu(hp1).opcode:=A_MOV;
- taicpu(hp1).oppostfix:=PF_None;
- taicpu(hp1).loadreg(1,taicpu(p).oper[0]^.reg);
- end;
- result := true;
- end
- {
- ...
- ldrd reg1,ref
- }
- else if (CPUARM_HAS_EDSP in cpu_capabilities[current_settings.cputype]) and
- { ldrd does not allow any postfixes ... }
- (taicpu(p).oppostfix=PF_None) and
- not(odd(getsupreg(taicpu(p).oper[0]^.reg))) and
- (getsupreg(taicpu(p).oper[0]^.reg)+1=getsupreg(taicpu(hp1).oper[0]^.reg)) and
- { ldr ensures that either base or index contain no register, else ldr wouldn't
- use an offset either
- }
- (taicpu(p).oper[1]^.ref^.base=taicpu(hp1).oper[1]^.ref^.base) and
- (taicpu(p).oper[1]^.ref^.index=taicpu(hp1).oper[1]^.ref^.index) and
- (taicpu(p).oper[1]^.ref^.offset+4=taicpu(hp1).oper[1]^.ref^.offset) and
- (abs(taicpu(p).oper[1]^.ref^.offset)<256) and
- AlignedToQWord(taicpu(p).oper[1]^.ref^) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole LdrLdr2Ldrd done')), p);
- taicpu(p).oppostfix:=PF_D;
- asml.remove(hp1);
- hp1.free;
- end;
- end;
- { Remove superfluous mov after ldr
- changes
- ldr reg1, ref
- mov reg2, reg1
- to
- ldr reg2, ref
- conditions are:
- * no ldrd usage
- * reg1 must be released after mov
- * mov can not contain shifterops
- * ldr+mov have the same conditions
- * mov does not set flags
- }
- if (taicpu(p).oppostfix<>PF_D) and GetNextInstruction(p, hp1) then
- RemoveSuperfluousMove(p, hp1, 'LdrMov2Ldr');
- end;
- A_MOV:
- begin
- { fold
- mov reg1,reg0, shift imm1
- mov reg1,reg1, shift imm2
- }
- if (taicpu(p).ops=3) and
- (taicpu(p).oper[2]^.typ = top_shifterop) and
- (taicpu(p).oper[2]^.shifterop^.rs = NR_NO) and
- getnextinstruction(p,hp1) and
- MatchInstruction(hp1, A_MOV, [taicpu(p).condition], [PF_None]) and
- (taicpu(hp1).ops=3) and
- MatchOperand(taicpu(hp1).oper[0]^, taicpu(p).oper[0]^.reg) and
- MatchOperand(taicpu(hp1).oper[1]^, taicpu(p).oper[0]^.reg) and
- (taicpu(hp1).oper[2]^.typ = top_shifterop) and
- (taicpu(hp1).oper[2]^.shifterop^.rs = NR_NO) then
- begin
- { fold
- mov reg1,reg0, lsl 16
- mov reg1,reg1, lsr 16
- strh reg1, ...
- dealloc reg1
- to
- strh reg1, ...
- dealloc reg1
- }
- if (taicpu(p).oper[2]^.shifterop^.shiftmode=SM_LSL) and
- (taicpu(p).oper[2]^.shifterop^.shiftimm=16) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftmode in [SM_LSR,SM_ASR]) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftimm=16) and
- getnextinstruction(hp1,hp2) and
- MatchInstruction(hp2, A_STR, [taicpu(p).condition], [PF_H]) and
- MatchOperand(taicpu(hp2).oper[0]^, taicpu(p).oper[0]^.reg) then
- begin
- CopyUsedRegs(TmpUsedRegs);
- UpdateUsedRegs(TmpUsedRegs, tai(p.next));
- UpdateUsedRegs(TmpUsedRegs, tai(hp1.next));
- if not(RegUsedAfterInstruction(taicpu(p).oper[0]^.reg,hp2,TmpUsedRegs)) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole optimizer removed superfluous 16 Bit zero extension')), hp1);
- taicpu(hp2).loadreg(0,taicpu(p).oper[1]^.reg);
- asml.remove(p);
- asml.remove(hp1);
- p.free;
- hp1.free;
- p:=hp2;
- end;
- ReleaseUsedRegs(TmpUsedRegs);
- end
- { fold
- mov reg1,reg0, shift imm1
- mov reg1,reg1, shift imm2
- to
- mov reg1,reg0, shift imm1+imm2
- }
- else if (taicpu(p).oper[2]^.shifterop^.shiftmode=taicpu(hp1).oper[2]^.shifterop^.shiftmode) or
- { asr makes no use after a lsr, the asr can be foled into the lsr }
- ((taicpu(p).oper[2]^.shifterop^.shiftmode=SM_LSR) and (taicpu(hp1).oper[2]^.shifterop^.shiftmode=SM_ASR) ) then
- begin
- inc(taicpu(p).oper[2]^.shifterop^.shiftimm,taicpu(hp1).oper[2]^.shifterop^.shiftimm);
- { avoid overflows }
- if taicpu(p).oper[2]^.shifterop^.shiftimm>31 then
- case taicpu(p).oper[2]^.shifterop^.shiftmode of
- SM_ROR:
- taicpu(p).oper[2]^.shifterop^.shiftimm:=taicpu(p).oper[2]^.shifterop^.shiftimm and 31;
- SM_ASR:
- taicpu(p).oper[2]^.shifterop^.shiftimm:=31;
- SM_LSR,
- SM_LSL:
- begin
- hp1:=taicpu.op_reg_const(A_MOV,taicpu(p).oper[0]^.reg,0);
- InsertLLItem(p.previous, p.next, hp1);
- p.free;
- p:=hp1;
- end;
- else
- internalerror(2008072803);
- end;
- asml.insertbefore(tai_comment.Create(strpnew('Peephole ShiftShift2Shift 1 done')), p);
- asml.remove(hp1);
- hp1.free;
- result := true;
- end
- { fold
- mov reg1,reg0, shift imm1
- mov reg1,reg1, shift imm2
- mov reg1,reg1, shift imm3 ...
- }
- else if getnextinstruction(hp1,hp2) and
- MatchInstruction(hp2, A_MOV, [taicpu(p).condition], [PF_None]) and
- (taicpu(hp2).ops=3) and
- MatchOperand(taicpu(hp2).oper[0]^, taicpu(hp1).oper[0]^.reg) and
- MatchOperand(taicpu(hp2).oper[1]^, taicpu(hp1).oper[0]^.reg) and
- (taicpu(hp2).oper[2]^.typ = top_shifterop) and
- (taicpu(hp2).oper[2]^.shifterop^.rs = NR_NO) then
- begin
- { mov reg1,reg0, lsl imm1
- mov reg1,reg1, lsr/asr imm2
- mov reg1,reg1, lsl imm3 ...
- if imm3<=imm1 and imm2>=imm3
- to
- mov reg1,reg0, lsl imm1
- mov reg1,reg1, lsr/asr imm2-imm3
- }
- if (taicpu(p).oper[2]^.shifterop^.shiftmode=SM_LSL) and (taicpu(hp2).oper[2]^.shifterop^.shiftmode=SM_LSL) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftmode in [SM_ASR,SM_LSR]) and
- (taicpu(hp2).oper[2]^.shifterop^.shiftimm<=taicpu(p).oper[2]^.shifterop^.shiftimm) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftimm>=taicpu(hp2).oper[2]^.shifterop^.shiftimm) then
- begin
- dec(taicpu(hp1).oper[2]^.shifterop^.shiftimm,taicpu(hp2).oper[2]^.shifterop^.shiftimm);
- asml.insertbefore(tai_comment.Create(strpnew('Peephole ShiftShiftShift2ShiftShift 1 done')), p);
- asml.remove(hp2);
- hp2.free;
- result := true;
- if taicpu(hp1).oper[2]^.shifterop^.shiftimm=0 then
- begin
- asml.remove(hp1);
- hp1.free;
- end;
- end
- { mov reg1,reg0, lsr/asr imm1
- mov reg1,reg1, lsl imm2
- mov reg1,reg1, lsr/asr imm3 ...
- if imm3>=imm1 and imm2>=imm1
- to
- mov reg1,reg0, lsl imm2-imm1
- mov reg1,reg1, lsr/asr imm3 ...
- }
- else if (taicpu(p).oper[2]^.shifterop^.shiftmode in [SM_ASR,SM_LSR]) and (taicpu(hp2).oper[2]^.shifterop^.shiftmode in [SM_ASR,SM_LSR]) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftmode=SM_LSL) and
- (taicpu(hp2).oper[2]^.shifterop^.shiftimm>=taicpu(p).oper[2]^.shifterop^.shiftimm) and
- (taicpu(hp1).oper[2]^.shifterop^.shiftimm>=taicpu(p).oper[2]^.shifterop^.shiftimm) then
- begin
- dec(taicpu(hp1).oper[2]^.shifterop^.shiftimm,taicpu(p).oper[2]^.shifterop^.shiftimm);
- taicpu(hp1).oper[1]^.reg:=taicpu(p).oper[1]^.reg;
- asml.insertbefore(tai_comment.Create(strpnew('Peephole ShiftShiftShift2ShiftShift 2 done')), p);
- asml.remove(p);
- p.free;
- p:=hp2;
- if taicpu(hp1).oper[2]^.shifterop^.shiftimm=0 then
- begin
- taicpu(hp2).oper[1]^.reg:=taicpu(hp1).oper[1]^.reg;
- asml.remove(hp1);
- hp1.free;
- p:=hp2;
- end;
- result := true;
- end;
- end;
- end;
- { Change the common
- mov r0, r0, lsr #24
- and r0, r0, #255
- and remove the superfluous and
- This could be extended to handle more cases.
- }
- if (taicpu(p).ops=3) and
- (taicpu(p).oper[2]^.typ = top_shifterop) and
- (taicpu(p).oper[2]^.shifterop^.rs = NR_NO) and
- (taicpu(p).oper[2]^.shifterop^.shiftmode = SM_LSR) and
- (taicpu(p).oper[2]^.shifterop^.shiftimm >= 24 ) and
- getnextinstruction(p,hp1) and
- MatchInstruction(hp1, A_AND, [taicpu(p).condition], [taicpu(p).oppostfix]) and
- (taicpu(hp1).ops=3) and
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[0]^) and
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[1]^) and
- (taicpu(hp1).oper[2]^.typ = top_const) and
- { Check if the AND actually would only mask out bits beeing already zero because of the shift
- For LSR #25 and an AndConst of 255 that whould go like this:
- 255 and ((2 shl (32-25))-1)
- which results in 127, which is one less a power-of-2, meaning all lower bits are set.
- LSR #25 and AndConst of 254:
- 254 and ((2 shl (32-25))-1) = 126 -> lowest bit is clear, so we can't remove it.
- }
- ispowerof2((taicpu(hp1).oper[2]^.val and ((2 shl (32-taicpu(p).oper[2]^.shifterop^.shiftimm))-1))+1) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole LsrAnd2Lsr done')), hp1);
- asml.remove(hp1);
- hp1.free;
- end;
- {
- optimize
- mov rX, yyyy
- ....
- }
- if (taicpu(p).ops = 2) and
- GetNextInstruction(p,hp1) and
- (tai(hp1).typ = ait_instruction) then
- begin
- {
- This changes the very common
- mov r0, #0
- str r0, [...]
- mov r0, #0
- str r0, [...]
- and removes all superfluous mov instructions
- }
- if (taicpu(p).oper[1]^.typ = top_const) and
- (taicpu(hp1).opcode=A_STR) then
- while MatchInstruction(hp1, A_STR, [taicpu(p).condition], [PF_None]) and
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[0]^) and
- GetNextInstruction(hp1, hp2) and
- MatchInstruction(hp2, A_MOV, [taicpu(p).condition], [PF_None]) and
- (taicpu(hp2).ops = 2) and
- MatchOperand(taicpu(hp2).oper[0]^, taicpu(p).oper[0]^) and
- MatchOperand(taicpu(hp2).oper[1]^, taicpu(p).oper[1]^) do
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole MovStrMov done')), hp2);
- GetNextInstruction(hp2,hp1);
- asml.remove(hp2);
- hp2.free;
- if not assigned(hp1) then break;
- end
- {
- This removes the first mov from
- mov rX,...
- mov rX,...
- }
- else if taicpu(hp1).opcode=A_MOV then
- while MatchInstruction(hp1, A_MOV, [taicpu(p).condition], [taicpu(p).oppostfix]) and
- (taicpu(hp1).ops = 2) and
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[0]^) and
- { don't remove the first mov if the second is a mov rX,rX }
- not(MatchOperand(taicpu(hp1).oper[0]^, taicpu(hp1).oper[1]^)) do
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole MovMov done')), p);
- asml.remove(p);
- p.free;
- p:=hp1;
- GetNextInstruction(hp1,hp1);
- if not assigned(hp1) then
- break;
- end;
- end;
- {
- change
- mov r1, r0
- add r1, r1, #1
- to
- add r1, r0, #1
- Todo: Make it work for mov+cmp too
- CAUTION! If this one is successful p might not be a mov instruction anymore!
- }
- if (taicpu(p).ops = 2) and
- (taicpu(p).oper[1]^.typ = top_reg) and
- (taicpu(p).oppostfix = PF_NONE) and
- GetNextInstruction(p, hp1) and
- (tai(hp1).typ = ait_instruction) and
- (taicpu(hp1).opcode in [A_ADD, A_ADC, A_RSB, A_RSC, A_SUB, A_SBC,
- A_AND, A_BIC, A_EOR, A_ORR, A_MOV, A_MVN]) and
- {MOV and MVN might only have 2 ops}
- (taicpu(hp1).ops = 3) and
- (taicpu(hp1).condition in [C_NONE, taicpu(hp1).condition]) and
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[0]^.reg) and
- (taicpu(hp1).oper[1]^.typ = top_reg) and
- (taicpu(hp1).oper[2]^.typ in [top_reg, top_const, top_shifterop]) then
- begin
- { When we get here we still don't know if the registers match}
- for I:=1 to 2 do
- {
- If the first loop was successful p will be replaced with hp1.
- The checks will still be ok, because all required information
- will also be in hp1 then.
- }
- if MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[I]^.reg) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole RedundantMovProcess done')), hp1);
- taicpu(hp1).oper[I]^.reg := taicpu(p).oper[1]^.reg;
- if p<>hp1 then
- begin
- asml.remove(p);
- p.free;
- p:=hp1;
- end;
- end;
- end;
- { This folds shifterops into following instructions
- mov r0, r1, lsl #8
- add r2, r3, r0
- to
- add r2, r3, r1, lsl #8
- CAUTION! If this one is successful p might not be a mov instruction anymore!
- }
- if (taicpu(p).opcode = A_MOV) and
- (taicpu(p).ops = 3) and
- (taicpu(p).oper[1]^.typ = top_reg) and
- (taicpu(p).oper[2]^.typ = top_shifterop) and
- (taicpu(p).oppostfix = PF_NONE) and
- GetNextInstruction(p, hp1) and
- (tai(hp1).typ = ait_instruction) and
- (taicpu(hp1).ops >= 2) and {Currently we can't fold into another shifterop}
- (taicpu(hp1).oper[taicpu(hp1).ops-1]^.typ = top_reg) and
- (taicpu(hp1).oppostfix = PF_NONE) and
- (taicpu(hp1).condition = taicpu(p).condition) and
- (taicpu(hp1).opcode in [A_ADD, A_ADC, A_RSB, A_RSC, A_SUB, A_SBC,
- A_AND, A_BIC, A_EOR, A_ORR, A_TEQ, A_TST,
- A_CMP, A_CMN]) and
- (
- {Only ONE of the two src operands is allowed to match}
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[taicpu(hp1).ops-2]^) xor
- MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[taicpu(hp1).ops-1]^)
- ) then
- begin
- CopyUsedRegs(TmpUsedRegs);
- UpdateUsedRegs(TmpUsedRegs, tai(p.next));
- if taicpu(hp1).opcode in [A_TST, A_TEQ, A_CMN] then
- I2:=0
- else
- I2:=1;
- if not(RegUsedAfterInstruction(taicpu(p).oper[0]^.reg,hp1,TmpUsedRegs)) then
- for I:=I2 to taicpu(hp1).ops-1 do
- if MatchOperand(taicpu(p).oper[0]^, taicpu(hp1).oper[I]^.reg) then
- begin
- { If the parameter matched on the second op from the RIGHT
- we have to switch the parameters, this will not happen for CMP
- were we're only evaluating the most right parameter
- }
- if I <> taicpu(hp1).ops-1 then
- begin
- {The SUB operators need to be changed when we swap parameters}
- case taicpu(hp1).opcode of
- A_SUB: tempop:=A_RSB;
- A_SBC: tempop:=A_RSC;
- A_RSB: tempop:=A_SUB;
- A_RSC: tempop:=A_SBC;
- else tempop:=taicpu(hp1).opcode;
- end;
- if taicpu(hp1).ops = 3 then
- hp2:=taicpu.op_reg_reg_reg_shifterop(tempop,
- taicpu(hp1).oper[0]^.reg, taicpu(hp1).oper[2]^.reg,
- taicpu(p).oper[1]^.reg, taicpu(p).oper[2]^.shifterop^)
- else
- hp2:=taicpu.op_reg_reg_shifterop(tempop,
- taicpu(hp1).oper[0]^.reg, taicpu(p).oper[1]^.reg,
- taicpu(p).oper[2]^.shifterop^);
- end
- else
- if taicpu(hp1).ops = 3 then
- hp2:=taicpu.op_reg_reg_reg_shifterop(taicpu(hp1).opcode,
- taicpu(hp1).oper[0]^.reg, taicpu(hp1).oper[1]^.reg,
- taicpu(p).oper[1]^.reg, taicpu(p).oper[2]^.shifterop^)
- else
- hp2:=taicpu.op_reg_reg_shifterop(taicpu(hp1).opcode,
- taicpu(hp1).oper[0]^.reg, taicpu(p).oper[1]^.reg,
- taicpu(p).oper[2]^.shifterop^);
- asml.insertbefore(hp2, p);
- asml.remove(p);
- asml.remove(hp1);
- p.free;
- hp1.free;
- p:=hp2;
- GetNextInstruction(p,hp1);
- asml.insertbefore(tai_comment.Create(strpnew('Peephole FoldShiftProcess done')), p);
- break;
- end;
- ReleaseUsedRegs(TmpUsedRegs);
- end;
- {
- Often we see shifts and then a superfluous mov to another register
- In the future this might be handled in RedundantMovProcess when it uses RegisterTracking
- }
- if (taicpu(p).opcode = A_MOV) and
- GetNextInstruction(p, hp1) then
- RemoveSuperfluousMove(p, hp1, 'MovMov2Mov');
- end;
- A_ADD,
- A_ADC,
- A_RSB,
- A_RSC,
- A_SUB,
- A_SBC,
- A_AND,
- A_BIC,
- A_EOR,
- A_ORR,
- A_MLA,
- A_MUL:
- begin
- {
- change
- and reg2,reg1,const1
- and reg2,reg2,const2
- to
- and reg2,reg1,(const1 and const2)
- }
- if (taicpu(p).opcode = A_AND) and
- (taicpu(p).oper[1]^.typ = top_reg) and
- (taicpu(p).oper[2]^.typ = top_const) and
- GetNextInstruction(p, hp1) and
- MatchInstruction(hp1, A_AND, [taicpu(p).condition], [PF_None]) and
- MatchOperand(taicpu(hp1).oper[0]^, taicpu(p).oper[0]^.reg) and
- MatchOperand(taicpu(hp1).oper[1]^, taicpu(p).oper[0]^.reg) and
- (taicpu(hp1).oper[2]^.typ = top_const) then
- begin
- asml.insertbefore(tai_comment.Create(strpnew('Peephole AndAnd2And done')), p);
- taicpu(p).loadConst(2,taicpu(p).oper[2]^.val and taicpu(hp1).oper[2]^.val);
- taicpu(p).oppostfix:=taicpu(hp1).oppostfix;
- asml.remove(hp1);
- hp1.free;
- end;
- {
- change
- add reg1, ...
- mov reg2, reg1
- to
- add reg2, ...
- }
- if GetNextInstruction(p, hp1) then
- RemoveSuperfluousMove(p, hp1, 'DataMov2Data');
- end;
- A_CMP:
- begin
- {
- change
- cmp reg,const1
- moveq reg,const1
- movne reg,const2
- to
- cmp reg,const1
- movne reg,const2
- }
- if (taicpu(p).oper[1]^.typ = top_const) and
- GetNextInstruction(p, hp1) and
- MatchInstruction(hp1, A_MOV, [C_EQ, C_NE], [PF_NONE]) and
- (taicpu(hp1).oper[1]^.typ = top_const) and
- GetNextInstruction(hp1, hp2) and
- MatchInstruction(hp2, A_MOV, [C_EQ, C_NE], [PF_NONE]) and
- (taicpu(hp1).oper[1]^.typ = top_const) then
- begin
- RemoveRedundantMove(p, hp1, asml);
- RemoveRedundantMove(p, hp2, asml);
- end;
- end;
- end;
- end;
- end;
- end;
- { instructions modifying the CPSR can be only the last instruction }
- function MustBeLast(p : tai) : boolean;
- begin
- Result:=(p.typ=ait_instruction) and
- ((taicpu(p).opcode in [A_BL,A_BLX,A_CMP,A_CMN,A_SWI,A_TEQ,A_TST,A_CMF,A_CMFE {,A_MSR}]) or
- ((taicpu(p).ops>=1) and (taicpu(p).oper[0]^.typ=top_reg) and (taicpu(p).oper[0]^.reg=NR_PC)) or
- (taicpu(p).oppostfix=PF_S));
- end;
- procedure TCpuAsmOptimizer.PeepHoleOptPass2;
- var
- p,hp1,hp2: tai;
- l : longint;
- condition : tasmcond;
- hp3: tai;
- WasLast: boolean;
- { UsedRegs, TmpUsedRegs: TRegSet; }
- begin
- p := BlockStart;
- { UsedRegs := []; }
- while (p <> BlockEnd) Do
- begin
- { UpdateUsedRegs(UsedRegs, tai(p.next)); }
- case p.Typ Of
- Ait_Instruction:
- begin
- case taicpu(p).opcode Of
- A_B:
- if taicpu(p).condition<>C_None then
- begin
- { check for
- Bxx xxx
- <several instructions>
- xxx:
- }
- l:=0;
- WasLast:=False;
- GetNextInstruction(p, hp1);
- while assigned(hp1) and
- (l<=4) and
- CanBeCond(hp1) and
- { stop on labels }
- not(hp1.typ=ait_label) do
- begin
- inc(l);
- if MustBeLast(hp1) then
- begin
- WasLast:=True;
- GetNextInstruction(hp1,hp1);
- break;
- end
- else
- GetNextInstruction(hp1,hp1);
- end;
- if assigned(hp1) then
- begin
- if FindLabel(tasmlabel(taicpu(p).oper[0]^.ref^.symbol),hp1) then
- begin
- if (l<=4) and (l>0) then
- begin
- condition:=inverse_cond(taicpu(p).condition);
- hp2:=p;
- GetNextInstruction(p,hp1);
- p:=hp1;
- repeat
- if hp1.typ=ait_instruction then
- taicpu(hp1).condition:=condition;
- if MustBeLast(hp1) then
- begin
- GetNextInstruction(hp1,hp1);
- break;
- end
- else
- GetNextInstruction(hp1,hp1);
- until not(assigned(hp1)) or
- not(CanBeCond(hp1)) or
- (hp1.typ=ait_label);
- { wait with removing else GetNextInstruction could
- ignore the label if it was the only usage in the
- jump moved away }
- tasmlabel(taicpu(hp2).oper[0]^.ref^.symbol).decrefs;
- asml.remove(hp2);
- hp2.free;
- continue;
- end;
- end
- else
- { do not perform further optimizations if there is inctructon
- in block #1 which can not be optimized.
- }
- if not WasLast then
- begin
- { check further for
- Bcc xxx
- <several instructions 1>
- B yyy
- xxx:
- <several instructions 2>
- yyy:
- }
- { hp2 points to jmp yyy }
- hp2:=hp1;
- { skip hp1 to xxx }
- GetNextInstruction(hp1, hp1);
- if assigned(hp2) and
- assigned(hp1) and
- (l<=3) and
- (hp2.typ=ait_instruction) and
- (taicpu(hp2).is_jmp) and
- (taicpu(hp2).condition=C_None) and
- { real label and jump, no further references to the
- label are allowed }
- (tasmlabel(taicpu(p).oper[0]^.ref^.symbol).getrefs=2) and
- FindLabel(tasmlabel(taicpu(p).oper[0]^.ref^.symbol),hp1) then
- begin
- l:=0;
- { skip hp1 to <several moves 2> }
- GetNextInstruction(hp1, hp1);
- while assigned(hp1) and
- CanBeCond(hp1) do
- begin
- inc(l);
- GetNextInstruction(hp1, hp1);
- end;
- { hp1 points to yyy: }
- if assigned(hp1) and
- FindLabel(tasmlabel(taicpu(hp2).oper[0]^.ref^.symbol),hp1) then
- begin
- condition:=inverse_cond(taicpu(p).condition);
- GetNextInstruction(p,hp1);
- hp3:=p;
- p:=hp1;
- repeat
- if hp1.typ=ait_instruction then
- taicpu(hp1).condition:=condition;
- GetNextInstruction(hp1,hp1);
- until not(assigned(hp1)) or
- not(CanBeCond(hp1));
- { hp2 is still at jmp yyy }
- GetNextInstruction(hp2,hp1);
- { hp2 is now at xxx: }
- condition:=inverse_cond(condition);
- GetNextInstruction(hp1,hp1);
- { hp1 is now at <several movs 2> }
- repeat
- taicpu(hp1).condition:=condition;
- GetNextInstruction(hp1,hp1);
- until not(assigned(hp1)) or
- not(CanBeCond(hp1)) or
- (hp1.typ=ait_label);
- {
- asml.remove(hp1.next)
- hp1.next.free;
- asml.remove(hp1);
- hp1.free;
- }
- { remove Bcc }
- tasmlabel(taicpu(hp3).oper[0]^.ref^.symbol).decrefs;
- asml.remove(hp3);
- hp3.free;
- { remove jmp }
- tasmlabel(taicpu(hp2).oper[0]^.ref^.symbol).decrefs;
- asml.remove(hp2);
- hp2.free;
- continue;
- end;
- end;
- end;
- end;
- end;
- end;
- end;
- end;
- p := tai(p.next)
- end;
- end;
- function TCpuAsmOptimizer.RegInInstruction(Reg: TRegister; p1: tai): Boolean;
- begin
- If (p1.typ = ait_instruction) and (taicpu(p1).opcode=A_BL) then
- Result:=true
- else
- Result:=inherited RegInInstruction(Reg, p1);
- end;
- const
- { set of opcode which might or do write to memory }
- { TODO : extend armins.dat to contain r/w info }
- opcode_could_mem_write = [A_B,A_BL,A_BLX,A_BKPT,A_BX,A_STR,A_STRB,A_STRBT,
- A_STRH,A_STRT,A_STF,A_SFM,A_STM,A_FSTS,A_FSTD];
- { adjust the register live information when swapping the two instructions p and hp1,
- they must follow one after the other }
- procedure TCpuPreRegallocScheduler.SwapRegLive(p,hp1 : taicpu);
- procedure CheckLiveEnd(reg : tregister);
- var
- supreg : TSuperRegister;
- regtype : TRegisterType;
- begin
- if reg=NR_NO then
- exit;
- regtype:=getregtype(reg);
- supreg:=getsupreg(reg);
- if (cg.rg[regtype].live_end[supreg]=hp1) and
- RegInInstruction(reg,p) then
- cg.rg[regtype].live_end[supreg]:=p;
- end;
- procedure CheckLiveStart(reg : TRegister);
- var
- supreg : TSuperRegister;
- regtype : TRegisterType;
- begin
- if reg=NR_NO then
- exit;
- regtype:=getregtype(reg);
- supreg:=getsupreg(reg);
- if (cg.rg[regtype].live_start[supreg]=p) and
- RegInInstruction(reg,hp1) then
- cg.rg[regtype].live_start[supreg]:=hp1;
- end;
- var
- i : longint;
- r : TSuperRegister;
- begin
- { assumption: p is directly followed by hp1 }
- { if live of any reg used by p starts at p and hp1 uses this register then
- set live start to hp1 }
- for i:=0 to p.ops-1 do
- case p.oper[i]^.typ of
- Top_Reg:
- CheckLiveStart(p.oper[i]^.reg);
- Top_Ref:
- begin
- CheckLiveStart(p.oper[i]^.ref^.base);
- CheckLiveStart(p.oper[i]^.ref^.index);
- end;
- Top_Shifterop:
- CheckLiveStart(p.oper[i]^.shifterop^.rs);
- Top_RegSet:
- for r:=RS_R0 to RS_R15 do
- if r in p.oper[i]^.regset^ then
- CheckLiveStart(newreg(R_INTREGISTER,r,R_SUBWHOLE));
- end;
- { if live of any reg used by hp1 ends at hp1 and p uses this register then
- set live end to p }
- for i:=0 to hp1.ops-1 do
- case hp1.oper[i]^.typ of
- Top_Reg:
- CheckLiveEnd(hp1.oper[i]^.reg);
- Top_Ref:
- begin
- CheckLiveEnd(hp1.oper[i]^.ref^.base);
- CheckLiveEnd(hp1.oper[i]^.ref^.index);
- end;
- Top_Shifterop:
- CheckLiveStart(hp1.oper[i]^.shifterop^.rs);
- Top_RegSet:
- for r:=RS_R0 to RS_R15 do
- if r in hp1.oper[i]^.regset^ then
- CheckLiveEnd(newreg(R_INTREGISTER,r,R_SUBWHOLE));
- end;
- end;
- function TCpuPreRegallocScheduler.PeepHoleOptPass1Cpu(var p: tai): boolean;
- { TODO : schedule also forward }
- { TODO : schedule distance > 1 }
- var
- hp1,hp2,hp3,hp4,hp5 : tai;
- list : TAsmList;
- begin
- result:=true;
- list:=TAsmList.Create;
- p := BlockStart;
- while (p <> BlockEnd) Do
- begin
- if (p.typ=ait_instruction) and
- GetNextInstruction(p,hp1) and
- (hp1.typ=ait_instruction) and
- (taicpu(hp1).opcode in [A_LDR,A_LDRB,A_LDRH,A_LDRSB,A_LDRSH]) and
- { for now we don't reschedule if the previous instruction changes potentially a memory location }
- ( (not(taicpu(p).opcode in opcode_could_mem_write) and
- not(RegModifiedByInstruction(NR_PC,p))
- ) or
- ((taicpu(p).opcode in [A_STM,A_STRB,A_STRH,A_STR]) and
- ((taicpu(hp1).oper[1]^.ref^.base=NR_PC) or
- (assigned(taicpu(hp1).oper[1]^.ref^.symboldata) and
- (taicpu(hp1).oper[1]^.ref^.offset=0)
- )
- ) or
- { try to prove that the memory accesses don't overlapp }
- ((taicpu(p).opcode in [A_STRB,A_STRH,A_STR]) and
- (taicpu(p).oper[1]^.ref^.base=taicpu(hp1).oper[1]^.ref^.base) and
- (taicpu(p).oppostfix=PF_None) and
- (taicpu(hp1).oppostfix=PF_None) and
- (taicpu(p).oper[1]^.ref^.index=NR_NO) and
- (taicpu(hp1).oper[1]^.ref^.index=NR_NO) and
- { get operand sizes and check if the offset distance is large enough to ensure no overlapp }
- (abs(taicpu(p).oper[1]^.ref^.offset-taicpu(hp1).oper[1]^.ref^.offset)>=max(tcgsize2size[reg_cgsize(taicpu(p).oper[0]^.reg)],tcgsize2size[reg_cgsize(taicpu(hp1).oper[0]^.reg)]))
- )
- )
- ) and
- GetNextInstruction(hp1,hp2) and
- (hp2.typ=ait_instruction) and
- { loaded register used by next instruction? }
- (RegInInstruction(taicpu(hp1).oper[0]^.reg,hp2)) and
- { loaded register not used by previous instruction? }
- not(RegInInstruction(taicpu(hp1).oper[0]^.reg,p)) and
- { same condition? }
- (taicpu(p).condition=taicpu(hp1).condition) and
- { first instruction might not change the register used as base }
- ((taicpu(hp1).oper[1]^.ref^.base=NR_NO) or
- not(RegModifiedByInstruction(taicpu(hp1).oper[1]^.ref^.base,p))
- ) and
- { first instruction might not change the register used as index }
- ((taicpu(hp1).oper[1]^.ref^.index=NR_NO) or
- not(RegModifiedByInstruction(taicpu(hp1).oper[1]^.ref^.index,p))
- ) then
- begin
- hp3:=tai(p.Previous);
- hp5:=tai(p.next);
- asml.Remove(p);
- { if there is a reg. dealloc instruction associated with p, move it together with p }
- { before the instruction? }
- while assigned(hp3) and (hp3.typ<>ait_instruction) do
- begin
- if (hp3.typ=ait_regalloc) and (tai_regalloc(hp3).ratype in [ra_dealloc]) and
- RegInInstruction(tai_regalloc(hp3).reg,p) then
- begin
- hp4:=hp3;
- hp3:=tai(hp3.Previous);
- asml.Remove(hp4);
- list.Concat(hp4);
- end
- else
- hp3:=tai(hp3.Previous);
- end;
- list.Concat(p);
- SwapRegLive(taicpu(p),taicpu(hp1));
- { after the instruction? }
- while assigned(hp5) and (hp5.typ<>ait_instruction) do
- begin
- if (hp5.typ=ait_regalloc) and (tai_regalloc(hp5).ratype in [ra_dealloc]) and
- RegInInstruction(tai_regalloc(hp5).reg,p) then
- begin
- hp4:=hp5;
- hp5:=tai(hp5.next);
- asml.Remove(hp4);
- list.Concat(hp4);
- end
- else
- hp5:=tai(hp5.Next);
- end;
- asml.Remove(hp1);
- {$ifdef DEBUG_PREREGSCHEDULER}
- asml.InsertBefore(tai_comment.Create(strpnew('Rescheduled')),hp2);
- {$endif DEBUG_PREREGSCHEDULER}
- asml.InsertBefore(hp1,hp2);
- asml.InsertListBefore(hp2,list);
- p := tai(p.next)
- end
- else if p.typ=ait_instruction then
- p:=hp1
- else
- p := tai(p.next);
- end;
- list.Free;
- end;
- procedure TCpuThumb2AsmOptimizer.PeepHoleOptPass2;
- begin
- { TODO: Add optimizer code }
- end;
- begin
- casmoptimizer:=TCpuAsmOptimizer;
- cpreregallocscheduler:=TCpuPreRegallocScheduler;
- End.
|