123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- {
- Copyright (c) 2000-2002 by Florian Klaempfl
- Code generation for add nodes on the x86-64
- 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 nx64add;
- {$i fpcdefs.inc}
- interface
- uses
- node,nadd,cpubase,nx86add;
- type
- tx8664addnode = class(tx86addnode)
- procedure second_addordinal; override;
- procedure second_mul;
- end;
- implementation
- uses
- globtype,globals,verbose,
- aasmbase,aasmdata,
- defutil,
- cgbase,cgutils,cga,cgobj,hlcgobj,cgx86,
- tgobj;
- {*****************************************************************************
- Addordinal
- *****************************************************************************}
- procedure tx8664addnode.second_addordinal;
- begin
- { filter unsigned MUL opcode, which requires special handling.
- Note that when overflow checking is off, we can use IMUL instead. }
- if (nodetype=muln) and
- (cs_check_overflow in current_settings.localswitches) and
- (not(is_signed(left.resultdef)) or
- not(is_signed(right.resultdef))) then
- begin
- second_mul;
- exit;
- end;
- inherited second_addordinal;
- end;
- {*****************************************************************************
- MUL
- *****************************************************************************}
- procedure tx8664addnode.second_mul;
- var
- reg,rega,regd:Tregister;
- ref:Treference;
- use_ref:boolean;
- hl4 : tasmlabel;
- cgsize:TCgSize;
- opsize:topsize;
- begin
- reference_reset(ref,0,[]);
- reg:=NR_NO;
- cgsize:=def_cgsize(resultdef);
- opsize:=TCGSize2OpSize[cgsize];
- case cgsize of
- OS_S64,OS_64:
- begin
- rega:=NR_RAX;
- regd:=NR_RDX;
- end;
- OS_S32,OS_32:
- begin
- rega:=NR_EAX;
- regd:=NR_EDX;
- end;
- else
- internalerror(2013102703);
- end;
- pass_left_right;
- { The location.register will be filled in later (JM) }
- location_reset(location,LOC_REGISTER,def_cgsize(resultdef));
- { Mul supports registers and references, so if not register/reference,
- load the location into a register}
- use_ref:=false;
- if left.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
- reg:=left.location.register
- else if left.location.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
- begin
- ref:=left.location.reference;
- use_ref:=true;
- end
- else
- begin
- {LOC_CONSTANT for example.}
- reg:=cg.getintregister(current_asmdata.CurrAsmList,cgsize);
- hlcg.a_load_loc_reg(current_asmdata.CurrAsmList,left.resultdef,resultdef,left.location,reg);
- end;
- { Allocate RAX. }
- cg.getcpuregister(current_asmdata.CurrAsmList,rega);
- { Load the right value. }
- hlcg.a_load_loc_reg(current_asmdata.CurrAsmList,right.resultdef,resultdef,right.location,rega);
- { Also allocate RDX, since it is also modified by a mul (JM). }
- cg.getcpuregister(current_asmdata.CurrAsmList,regd);
- if use_ref then
- emit_ref(A_MUL,opsize,ref)
- else
- emit_reg(A_MUL,opsize,reg);
- if cs_check_overflow in current_settings.localswitches then
- begin
- current_asmdata.getjumplabel(hl4);
- cg.a_jmp_flags(current_asmdata.CurrAsmList,F_AE,hl4);
- cg.a_call_name(current_asmdata.CurrAsmList,'FPC_OVERFLOW',false);
- cg.a_label(current_asmdata.CurrAsmList,hl4);
- end;
- { Free RDX,RAX }
- cg.ungetcpuregister(current_asmdata.CurrAsmList,regd);
- cg.ungetcpuregister(current_asmdata.CurrAsmList,rega);
- { Allocate a new register and store the result in RAX in it. }
- location.register:=cg.getintregister(current_asmdata.CurrAsmList,cgsize);
- emit_reg_reg(A_MOV,opsize,rega,location.register);
- location_freetemp(current_asmdata.CurrAsmList,left.location);
- location_freetemp(current_asmdata.CurrAsmList,right.location);
- end;
- begin
- caddnode:=tx8664addnode;
- end.
|