123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- Member of the Free Pascal development team
- This unit implements the code generation for 64 bit int
- arithmethics on 32 bit processors
- 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.
- ****************************************************************************
- }
- {# This unit implements the code generation for 64 bit int arithmethics on
- 32 bit processors. All 32-bit processors should use this class as
- the base code generator class instead of tcg.
- }
- unit cg64f32;
- {$i defines.inc}
- interface
- uses
- aasm,
- cpuinfo, cpubase,
- cginfo, cgobj,
- node,symtype;
- type
- {# Defines all the methods required on 32-bit processors
- to handle 64-bit integers. All 32-bit processors should
- create derive a class of this type instead of @var(tcg).
- }
- tcg64f32 = class(tcg)
- procedure a_load64_const_ref(list : taasmoutput;valuelo, valuehi : AWord;const ref : treference);
- procedure a_load64_reg_ref(list : taasmoutput;reglo, reghi : tregister;const ref : treference);
- procedure a_load64_ref_reg(list : taasmoutput;const ref : treference;reglo,reghi : tregister);
- procedure a_load64_reg_reg(list : taasmoutput;reglosrc,reghisrc,reglodst,reghidst : tregister);
- procedure a_load64_const_reg(list : taasmoutput;valuelosrc,valuehisrc:AWord;reglodst,reghidst : tregister);
- procedure a_load64_loc_reg(list : taasmoutput;const l : tlocation;reglo,reghi : tregister);
- procedure a_load64_loc_ref(list : taasmoutput;const l : tlocation;const ref : treference);
- procedure a_load64_const_loc(list : taasmoutput;valuelo, valuehi : AWord;const l : tlocation);
- procedure a_load64_reg_loc(list : taasmoutput;reglo, reghi : tregister;const l : tlocation);
- procedure a_load64high_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
- procedure a_load64low_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
- procedure a_load64high_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
- procedure a_load64low_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
- procedure a_load64high_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
- procedure a_load64low_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
- procedure a_op64_ref_reg(list : taasmoutput;op:TOpCG;const ref : treference;reglo,reghi : tregister);virtual;abstract;
- procedure a_op64_reg_reg(list : taasmoutput;op:TOpCG;reglosrc,reghisrc,reglodst,reghidst : tregister);virtual;abstract;
- procedure a_op64_reg_ref(list : taasmoutput;op:TOpCG;reglosrc,reghisrc : tregister;const ref : treference);virtual;abstract;
- procedure a_op64_const_reg(list : taasmoutput;op:TOpCG;valuelosrc,valuehisrc:AWord;reglodst,reghidst : tregister);virtual;abstract;
- procedure a_op64_const_ref(list : taasmoutput;op:TOpCG;valuelosrc,valuehisrc:AWord;const ref : treference);virtual;abstract;
- procedure a_op64_const_loc(list : taasmoutput;op:TOpCG;valuelosrc,valuehisrc:aword;const l: tlocation);
- procedure a_op64_reg_loc(list : taasmoutput;op:TOpCG;reglo,reghi : tregister;const l : tlocation);
- procedure a_op64_loc_reg(list : taasmoutput;op:TOpCG;const l : tlocation;reglo,reghi : tregister);
- procedure a_param64_reg(list : taasmoutput;reglo,reghi : tregister;nr : longint);
- procedure a_param64_const(list : taasmoutput;valuelo,valuehi : aword;nr : longint);
- procedure a_param64_ref(list : taasmoutput;const r : treference;nr : longint);
- procedure a_param64_loc(list : taasmoutput;const l : tlocation;nr : longint);
- { override to catch 64bit rangechecks }
- procedure g_rangecheck(list: taasmoutput; const p: tnode;
- const todef: tdef); override;
- private
- { produces range check code for 32bit processors when one of the }
- { operands is 64 bit }
- procedure g_rangecheck64(list : taasmoutput; p : tnode;todef : tdef);
- end;
- implementation
- uses
- globtype,globals,systems,
- cgbase,
- verbose,
- symbase,symconst,symdef,types;
- procedure tcg64f32.a_load64_reg_ref(list : taasmoutput;reglo, reghi : tregister;const ref : treference);
- var
- tmpreg: tregister;
- tmpref: treference;
- begin
- if target_info.endian = endian_big then
- begin
- tmpreg := reglo;
- reglo := reghi;
- reghi := tmpreg;
- end;
- a_load_reg_ref(list,OS_32,reglo,ref);
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_reg_ref(list,OS_32,reghi,tmpref);
- end;
- procedure tcg64f32.a_load64_const_ref(list : taasmoutput;valuelo, valuehi : AWord;const ref : treference);
- var
- tmpvalue: AWord;
- tmpref: treference;
- begin
- if target_info.endian = endian_big then
- begin
- tmpvalue := valuelo;
- valuelo := valuehi;
- valuehi := tmpvalue;
- end;
- a_load_const_ref(list,OS_32,valuelo,ref);
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_const_ref(list,OS_32,valuehi,tmpref);
- end;
- procedure tcg64f32.a_load64_ref_reg(list : taasmoutput;const ref : treference;reglo,reghi : tregister);
- var
- tmpreg: tregister;
- tmpref: treference;
- got_scratch: boolean;
- begin
- if target_info.endian = endian_big then
- begin
- tmpreg := reglo;
- reglo := reghi;
- reghi := tmpreg;
- end;
- got_scratch:=false;
- tmpref := ref;
- if (tmpref.base=reglo) then
- begin
- tmpreg := get_scratch_reg(list);
- got_scratch:=true;
- a_load_reg_reg(list,OS_ADDR,tmpref.base,tmpreg);
- tmpref.base:=tmpreg;
- end
- else
- if (tmpref.index=reglo) then
- begin
- tmpreg := get_scratch_reg(list);
- got_scratch:=true;
- a_load_reg_reg(list,OS_ADDR,tmpref.index,tmpreg);
- tmpref.index:=tmpreg;
- end;
- a_load_ref_reg(list,OS_32,tmpref,reglo);
- inc(tmpref.offset,4);
- a_load_ref_reg(list,OS_32,tmpref,reghi);
- if got_scratch then
- free_scratch_reg(list,tmpreg);
- end;
- procedure tcg64f32.a_load64_reg_reg(list : taasmoutput;reglosrc,reghisrc,reglodst,reghidst : tregister);
- begin
- a_load_reg_reg(list,OS_32,reglosrc,reglodst);
- a_load_reg_reg(list,OS_32,reghisrc,reghidst);
- end;
- procedure tcg64f32.a_load64_const_reg(list : taasmoutput;valuelosrc,valuehisrc:AWord;reglodst,reghidst : tregister);
- begin
- a_load_const_reg(list,OS_32,valuelosrc,reglodst);
- a_load_const_reg(list,OS_32,valuehisrc,reghidst);
- end;
- procedure tcg64f32.a_load64_loc_reg(list : taasmoutput;const l : tlocation;reglo,reghi : tregister);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_load64_ref_reg(list,l.reference,reglo,reghi);
- LOC_REGISTER,LOC_CREGISTER:
- a_load64_reg_reg(list,l.registerlow,l.registerhigh,reglo,reghi);
- LOC_CONSTANT :
- a_load64_const_reg(list,l.valuelow,l.valuehigh,reglo,reghi);
- else
- internalerror(200112292);
- end;
- end;
- procedure tcg64f32.a_load64_loc_ref(list : taasmoutput;const l : tlocation;const ref : treference);
- begin
- case l.loc of
- LOC_REGISTER,LOC_CREGISTER:
- a_load64_reg_ref(list,l.registerlow,l.registerhigh,ref);
- LOC_CONSTANT :
- a_load64_const_ref(list,l.valuelow,l.valuehigh,ref);
- else
- internalerror(200203288);
- end;
- end;
- procedure tcg64f32.a_load64_const_loc(list : taasmoutput;valuelo, valuehi : AWord;const l : tlocation);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_load64_const_ref(list,valuelo,valuehi,l.reference);
- LOC_REGISTER,LOC_CREGISTER:
- a_load64_const_reg(list,valuelo,valuehi,l.registerlow,l.registerhigh);
- else
- internalerror(200112293);
- end;
- end;
- procedure tcg64f32.a_load64_reg_loc(list : taasmoutput;reglo,reghi : tregister;const l : tlocation);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_load64_reg_ref(list,reglo,reghi,l.reference);
- LOC_REGISTER,LOC_CREGISTER:
- a_load64_reg_reg(list,reglo,reghi,l.registerlow,l.registerhigh);
- else
- internalerror(200112293);
- end;
- end;
- procedure tcg64f32.a_load64high_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
- var
- tmpref: treference;
- begin
- if target_info.endian = endian_big then
- a_load_reg_ref(list,OS_32,reg,ref)
- else
- begin
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_reg_ref(list,OS_32,reg,tmpref)
- end;
- end;
- procedure tcg64f32.a_load64low_reg_ref(list : taasmoutput;reg : tregister;const ref : treference);
- var
- tmpref: treference;
- begin
- if target_info.endian = endian_little then
- a_load_reg_ref(list,OS_32,reg,ref)
- else
- begin
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_reg_ref(list,OS_32,reg,tmpref)
- end;
- end;
- procedure tcg64f32.a_load64high_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
- var
- tmpref: treference;
- begin
- if target_info.endian = endian_big then
- a_load_ref_reg(list,OS_32,ref,reg)
- else
- begin
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_ref_reg(list,OS_32,tmpref,reg)
- end;
- end;
- procedure tcg64f32.a_load64low_ref_reg(list : taasmoutput;const ref : treference;reg : tregister);
- var
- tmpref: treference;
- begin
- if target_info.endian = endian_little then
- a_load_ref_reg(list,OS_32,ref,reg)
- else
- begin
- tmpref := ref;
- inc(tmpref.offset,4);
- a_load_ref_reg(list,OS_32,tmpref,reg)
- end;
- end;
- procedure tcg64f32.a_load64low_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
- begin
- case l.loc of
- LOC_REFERENCE,
- LOC_CREFERENCE :
- a_load64low_ref_reg(list,l.reference,reg);
- LOC_REGISTER :
- a_load_reg_reg(list,OS_32,l.registerlow,reg);
- LOC_CONSTANT :
- a_load_const_reg(list,OS_32,l.valuelow,reg);
- else
- internalerror(200203244);
- end;
- end;
- procedure tcg64f32.a_load64high_loc_reg(list : taasmoutput;const l : tlocation;reg : tregister);
- begin
- case l.loc of
- LOC_REFERENCE,
- LOC_CREFERENCE :
- a_load64high_ref_reg(list,l.reference,reg);
- LOC_REGISTER :
- a_load_reg_reg(list,OS_32,l.registerhigh,reg);
- LOC_CONSTANT :
- a_load_const_reg(list,OS_32,l.valuehigh,reg);
- else
- internalerror(200203244);
- end;
- end;
- procedure tcg64f32.a_op64_const_loc(list : taasmoutput;op:TOpCG;valuelosrc,valuehisrc:aword;const l: tlocation);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_op64_const_reg(list,op,valuelosrc,valuehisrc,l.registerlow,l.registerhigh);
- LOC_REGISTER,LOC_CREGISTER:
- a_op64_const_ref(list,op,valuelosrc,valuehisrc,l.reference);
- else
- internalerror(200203292);
- end;
- end;
- procedure tcg64f32.a_op64_reg_loc(list : taasmoutput;op:TOpCG;reglo,reghi : tregister;const l : tlocation);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_op64_reg_ref(list,op,reglo,reghi,l.reference);
- LOC_REGISTER,LOC_CREGISTER:
- a_op64_reg_reg(list,op,reglo,reghi,l.registerlow,l.registerhigh);
- else
- internalerror(2002032422);
- end;
- end;
- procedure tcg64f32.a_op64_loc_reg(list : taasmoutput;op:TOpCG;const l : tlocation;reglo,reghi : tregister);
- begin
- case l.loc of
- LOC_REFERENCE, LOC_CREFERENCE:
- a_op64_ref_reg(list,op,l.reference,reglo,reghi);
- LOC_REGISTER,LOC_CREGISTER:
- a_op64_reg_reg(list,op,l.registerlow,l.registerhigh,reglo,reghi);
- LOC_CONSTANT :
- a_op64_const_reg(list,op,l.valuelow,l.valuehigh,reglo,reghi);
- else
- internalerror(200203242);
- end;
- end;
- procedure tcg64f32.a_param64_reg(list : taasmoutput;reglo,reghi : tregister;nr : longint);
- begin
- a_param_reg(list,OS_32,reghi,nr);
- a_param_reg(list,OS_32,reglo,nr+1);
- end;
- procedure tcg64f32.a_param64_const(list : taasmoutput;valuelo,valuehi : aword;nr : longint);
- begin
- a_param_const(list,OS_32,valuehi,nr);
- a_param_const(list,OS_32,valuelo,nr+1);
- end;
- procedure tcg64f32.a_param64_ref(list : taasmoutput;const r : treference;nr : longint);
- var
- tmpref: treference;
- begin
- a_param_ref(list,OS_32,r,nr);
- tmpref := r;
- inc(tmpref.offset,4);
- a_param_ref(list,OS_32,tmpref,nr+1);
- end;
- procedure tcg64f32.a_param64_loc(list : taasmoutput;const l:tlocation;nr : longint);
- begin
- case l.loc of
- LOC_REGISTER,
- LOC_CREGISTER :
- a_param64_reg(list,l.registerlow,l.registerhigh,nr);
- LOC_CONSTANT :
- a_param64_const(list,l.valuelow,l.valuehigh,nr);
- LOC_CREFERENCE,
- LOC_REFERENCE :
- a_param64_ref(list,l.reference,nr);
- else
- internalerror(200203287);
- end;
- end;
- procedure tcg64f32.g_rangecheck(list: taasmoutput; const p: tnode;
- const todef: tdef);
- begin
- { range checking on and range checkable value? }
- if not(cs_check_range in aktlocalswitches) or
- not(todef.deftype in [orddef,enumdef,arraydef]) then
- exit;
- { special case for 64bit rangechecks }
- if is_64bitint(p.resulttype.def) or is_64bitint(todef) then
- g_rangecheck64(list,p,todef)
- else
- inherited g_rangecheck(list,p,todef);
- end;
- procedure tcg64f32.g_rangecheck64(list : taasmoutput; p : tnode;todef : tdef);
- var
- neglabel,
- poslabel,
- endlabel: tasmlabel;
- hreg : tregister;
- hdef : torddef;
- fromdef : tdef;
- opsize : tcgsize;
- oldregisterdef: boolean;
- from_signed,to_signed: boolean;
- got_scratch: boolean;
- begin
- fromdef:=p.resulttype.def;
- from_signed := is_signed(fromdef);
- to_signed := is_signed(todef);
- if not is_64bitint(todef) then
- begin
- oldregisterdef := registerdef;
- registerdef := false;
- { get the high dword in a register }
- if p.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
- begin
- hreg := p.location.registerhigh;
- got_scratch := false
- end
- else
- begin
- hreg := get_scratch_reg(list);
- got_scratch := true;
- a_load64high_ref_reg(list,p.location.reference,hreg);
- end;
- getlabel(poslabel);
- { check high dword, must be 0 (for positive numbers) }
- a_cmp_const_reg_label(list,OS_32,OC_EQ,0,hreg,poslabel);
- { It can also be $ffffffff, but only for negative numbers }
- if from_signed and to_signed then
- begin
- getlabel(neglabel);
- a_cmp_const_reg_label(list,OS_32,OC_EQ,aword(-1),hreg,neglabel);
- end;
- { !!! freeing of register should happen directly after compare! (JM) }
- if got_scratch then
- free_scratch_reg(list,hreg);
- { For all other values we have a range check error }
- a_call_name(list,'FPC_RANGEERROR',0);
- { if the high dword = 0, the low dword can be considered a }
- { simple cardinal }
- a_label(list,poslabel);
- hdef:=torddef.create(u32bit,0,cardinal($ffffffff));
- { the real p.resulttype.def is already saved in fromdef }
- p.resulttype.def := hdef;
- { no use in calling just "g_rangecheck" since that one will }
- { simply call the inherited method too (JM) }
- inherited g_rangecheck(list,p,todef);
- hdef.free;
- { restore original resulttype.def }
- p.resulttype.def := todef;
- if from_signed and to_signed then
- begin
- getlabel(endlabel);
- a_jmp_always(list,endlabel);
- { if the high dword = $ffffffff, then the low dword (when }
- { considered as a longint) must be < 0 }
- a_label(list,neglabel);
- if p.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
- begin
- hreg := p.location.registerlow;
- got_scratch := false
- end
- else
- begin
- hreg := get_scratch_reg(list);
- got_scratch := true;
- a_load64low_ref_reg(list,p.location.reference,hreg);
- end;
- { get a new neglabel (JM) }
- getlabel(neglabel);
- a_cmp_const_reg_label(list,OS_32,OC_LT,0,hreg,neglabel);
- { !!! freeing of register should happen directly after compare! (JM) }
- if got_scratch then
- free_scratch_reg(list,hreg);
- a_call_name(list,'FPC_RANGEERROR',0);
- { if we get here, the 64bit value lies between }
- { longint($80000000) and -1 (JM) }
- a_label(list,neglabel);
- hdef:=torddef.create(s32bit,longint($80000000),-1);
- p.resulttype.def := hdef;
- inherited g_rangecheck(list,p,todef);
- hdef.free;
- a_label(list,endlabel);
- end;
- registerdef := oldregisterdef;
- p.resulttype.def := fromdef;
- { restore p's resulttype.def }
- end
- else
- { todef = 64bit int }
- { no 64bit subranges supported, so only a small check is necessary }
- { if both are signed or both are unsigned, no problem! }
- if (from_signed xor to_signed) and
- { also not if the fromdef is unsigned and < 64bit, since that will }
- { always fit in a 64bit int (todef is 64bit) }
- (from_signed or
- (torddef(fromdef).typ = u64bit)) then
- begin
- { in all cases, there is only a problem if the higest bit is set }
- if p.location.loc in [LOC_REGISTER,LOC_CREGISTER] then
- begin
- if is_64bitint(fromdef) then
- begin
- hreg := p.location.registerhigh;
- opsize := OS_32;
- end
- else
- begin
- hreg := p.location.register;
- opsize := def_cgsize(p.resulttype.def);
- end;
- got_scratch := false;
- end
- else
- begin
- hreg := get_scratch_reg(list);
- got_scratch := true;
- opsize := def_cgsize(p.resulttype.def);
- if opsize in [OS_64,OS_S64] then
- a_load64high_ref_reg(list,p.location.reference,hreg)
- else
- a_load_ref_reg(list,opsize,p.location.reference,hreg);
- end;
- getlabel(poslabel);
- a_cmp_const_reg_label(list,opsize,OC_GTE,0,hreg,poslabel);
- { !!! freeing of register should happen directly after compare! (JM) }
- if got_scratch then
- free_scratch_reg(list,hreg);
- a_call_name(list,'FPC_RANGEERROR',0);
- a_label(list,poslabel);
- end;
- end;
- (*
- procedure int64f32_assignment_int64_reg(p : passignmentnode);
- begin
- end;
- begin
- p2_assignment:=@int64f32_assignement_int64;
- *)
- end.
- {
- $Log$
- Revision 1.8 2002-04-21 15:28:51 carl
- * a_jmp_cond -> a_jmp_always
- Revision 1.7 2002/04/07 13:21:18 carl
- + more documentation
- Revision 1.6 2002/04/03 10:41:35 jonas
- + a_load64_const_loc method
- Revision 1.5 2002/04/02 17:11:27 peter
- * tlocation,treference update
- * LOC_CONSTANT added for better constant handling
- * secondadd splitted in multiple routines
- * location_force_reg added for loading a location to a register
- of a specified size
- * secondassignment parses now first the right and then the left node
- (this is compatible with Kylix). This saves a lot of push/pop especially
- with string operations
- * adapted some routines to use the new cg methods
- Revision 1.4 2002/03/04 19:10:11 peter
- * removed compiler warnings
- Revision 1.3 2002/01/24 12:33:52 jonas
- * adapted ranges of native types to int64 (e.g. high cardinal is no
- longer longint($ffffffff), but just $fffffff in psystem)
- * small additional fix in 64bit rangecheck code generation for 32 bit
- processors
- * adaption of ranges required the matching talgorithm used for selecting
- which overloaded procedure to call to be adapted. It should now always
- select the closest match for ordinal parameters.
- + inttostr(qword) in sysstr.inc/sysstrh.inc
- + abs(int64), sqr(int64), sqr(qword) in systemh.inc/generic.inc (previous
- fixes were required to be able to add them)
- * is_in_limit() moved from ncal to types unit, should always be used
- instead of direct comparisons of low/high values of orddefs because
- qword is a special case
- Revision 1.2 2001/12/30 17:24:48 jonas
- * range checking is now processor independent (part in cgobj,
- part in cg64f32) and should work correctly again (it needed
- some changes after the changes of the low and high of
- tordef's to int64)
- * maketojumpbool() is now processor independent (in ncgutil)
- * getregister32 is now called getregisterint
- Revision 1.1 2001/12/29 15:29:58 jonas
- * powerpc/cgcpu.pas compiles :)
- * several powerpc-related fixes
- * cpuasm unit is now based on common tainst unit
- + nppcmat unit for powerpc (almost complete)
- Revision 1.1 2000/07/13 06:30:07 michael
- + Initial import
- Revision 1.1 2000/03/01 15:36:13 florian
- * some new stuff for the new cg
- }
|