SCM Repository
Log of /sml/trunk/src/MLRISC/ppc/emit/ppcAsm.sml
Sticky Revision: |
Revision 1593 - (view) (download) (annotate) - [select for diffs]
Modified Thu Aug 5 22:19:45 2004 UTC (16 years, 5 months ago) by allenleung
File length: 18416 byte(s)
Diff to previous 1546
Added IBM syntax support for PowerPC.
Revision 1546 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 14 18:38:08 2004 UTC (16 years, 6 months ago) by allenleung
File length: 18416 byte(s)
Diff to previous 1539
More PPC instructions added.
Revision 1539 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jul 13 19:05:30 2004 UTC (16 years, 6 months ago) by allenleung
File length: 17960 byte(s)
Diff to previous 1203
Added LWARX and STWCX to the Power PC instruction set.
Revision 1203 - (view) (download) (annotate) - [select for diffs]
Modified Sat May 18 18:21:53 2002 UTC (18 years, 8 months ago) by leunga
File length: 17595 byte(s)
Diff to previous 1126
Changed mdl gen to make it compile. x86 asssembly fix for fcmpi.
Revision 1126 - (view) (download) (annotate) - [select for diffs]
Modified Thu Mar 7 21:16:28 2002 UTC (18 years, 10 months ago) by blume
File length: 17592 byte(s)
Diff to previous 1116
implemented generic Controls module and used it for all compiler flags/tuneable knobs/...; more command-line options accepted (for setting the above controls); some minor bug fixes
Revision 1116 - (view) (download) (annotate) - [select for diffs]
Modified Tue Mar 5 23:17:18 2002 UTC (18 years, 10 months ago) by george
File length: 17829 byte(s)
Diff to previous 1108
In order to support the block placement optimization, the first cluster that is generated (called the linkage cluster) contains a jump to the entry point for the compilation unit. The linkage cluster contains only one 'function', so block placement will have no effect on the linkage cluster itself, but all the other clusters have full freedom in the manner in which they reorder blocks or functions. On the x86 the typical linkage code that is generated is: ---------------------- .align 2 L0: addl $L1-L0, 72(%esp) jmp L0 .align 2 L1: ---------------------- 72(%esp) is the memory location for the stdlink register. This must contain the address of the CPS function being called. In the above example, it contains the address of L0; before calling L1 (the real entry point for the compilation unit), it must contain the address for L1, and hence addl $L1-L0, 72(%esp) I have tested this on all architectures except the hppa.The increase in code size is of course negligible.
Revision 1108 - (view) (download) (annotate) - [select for diffs]
Modified Fri Mar 1 04:46:54 2002 UTC (18 years, 10 months ago) by george
File length: 17829 byte(s)
Diff to previous 1017
removed extra blank line when printing annotations in assembly code
Revision 1017 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jan 16 14:48:16 2002 UTC (19 years ago) by george
File length: 17833 byte(s)
Diff to previous 1009
fixed various bugs with emitting pseudo-ops
Revision 1009 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jan 9 19:44:22 2002 UTC (19 years ago) by george
File length: 17834 byte(s)
Diff to previous 1003
Removed the native COPY and FCOPY instructions from all the architectures and replaced it with the explicit COPY instruction from the previous commit. It is now possible to simplify many of the optimizations modules that manipulate copies. This has not been done in this change.
Revision 1003 - (view) (download) (annotate) - [select for diffs]
Modified Fri Dec 7 02:45:32 2001 UTC (19 years, 1 month ago) by george
File length: 17791 byte(s)
Diff to previous 984
Changed the representation of instructions from being fully abstract to being partially concrete. That is to say: from type instruction to type instr (* machine instruction *) datatype instruction = LIVE of {regs: C.cellset, spilled: C.cellset} | KILL of {regs: C.cellset, spilled: C.cellset} | COPYXXX of {k: CB.cellkind, dst: CB.cell list, src: CB.cell list} | ANNOTATION of {i: instruction, a: Annotations.annotation} | INSTR of instr This makes the handling of certain special instructions that appear on all architectures easier and uniform. LIVE and KILL say that a list of registers are live or killed at the program point where they appear. No spill code is generated when an element of the 'regs' field is spilled, but the register is moved to the 'spilled' (which is present, more for debugging than anything else). LIVE replaces the (now deprecated) DEFFREG instruction on the alpha. We used to generate: DEFFREG f1 f1 := f2 + f3 trapb but now generate: f1 := f2 + f3 trapb LIVE {regs=[f1,f2,f3], spilled=[]} Furthermore, the DEFFREG (hack) required that all floating point instruction use all registers mentioned in the instruction. Therefore f1 := f2 + f3, defines f1 and uses [f1,f2,f3]! This hack is no longer required resulting in a cleaner alpha implementation. (Hopefully, intel will not get rid of this architecture). COPYXXX is intended to replace the parallel COPY and FCOPY available on all the architectures. This will result in further simplification of the register allocator that must be aware of them for coalescing purposes, and will also simplify certain aspects of the machine description that provides callbacks related to parallel copies. ANNOTATION should be obvious, and now INSTR represents the honest to God machine instruction set! The <arch>/instructions/<arch>Instr.sml files define certain utility functions for making porting easier -- essentially converting upper case to lower case. All machine instructions (of type instr) are in upper case, and the lower case form generates an MLRISC instruction. For example on the alpha we have: datatype instr = LDA of {r:cell, b:cell, d:operand} | ... val lda : {r:cell, b:cell, d:operand} -> instruction ... where lda is just (INSTR o LDA), etc.
Revision 984 - (view) (download) (annotate) - [select for diffs]
Modified Wed Nov 21 19:00:08 2001 UTC (19 years, 1 month ago) by george
File length: 17346 byte(s)
Diff to previous 951
Implemented a complete redesign of MLRISC pseudo-ops. Now there ought to never be any question of incompatabilities with pseudo-op syntax expected by host assemblers. For now, only modules supporting GAS syntax are implemented but more should follow, such as MASM, and vendor assembler syntax, e.g. IBM as, Sun as, etc.
Revision 951 - (view) (download) (annotate) - [select for diffs]
Modified Tue Oct 9 13:54:40 2001 UTC (19 years, 3 months ago) by george
File length: 17168 byte(s)
Diff to previous 909
Updated input to PERL scripts used to generate MLRISC cm files.
Revision 909 - (view) (download) (annotate) - [select for diffs]
Modified Fri Aug 24 17:48:53 2001 UTC (19 years, 4 months ago) by george
File length: 17103 byte(s)
Diff to previous 900
removed clusters from MLRISC
Revision 900 - (view) (download) (annotate) - [select for diffs]
Modified Tue Aug 14 15:10:12 2001 UTC (19 years, 5 months ago) by jhr
File length: 17058 byte(s)
Diff to previous 889
Moved CellSets from Cells to CellsBasis.
Revision 889 - (view) (download) (annotate) - [select for diffs]
Modified Thu Jul 19 20:35:20 2001 UTC (19 years, 6 months ago) by george
File length: 17049 byte(s)
Diff to previous 823
Substantial simplification in the CELLS interface
Revision 823 - (view) (download) (annotate) - [select for diffs]
Modified Tue May 8 21:25:15 2001 UTC (19 years, 8 months ago) by george
File length: 17022 byte(s)
Diff to previous 815
omit frame pointer optimization
Revision 815 - (view) (download) (annotate) - [select for diffs]
Modified Fri May 4 05:09:10 2001 UTC (19 years, 8 months ago) by leunga
File length: 17022 byte(s)
Diff to previous 810
Moby related MLRISC changes
Revision 810 - (view) (download) (annotate) - [select for diffs]
Modified Fri Apr 20 13:26:46 2001 UTC (19 years, 9 months ago) by george
File length: 16994 byte(s)
Diff to previous 796
Port to Mac OS X
Revision 796 - (view) (download) (annotate) - [select for diffs]
Modified Tue Mar 6 00:04:33 2001 UTC (19 years, 10 months ago) by leunga
File length: 16922 byte(s)
Diff to previous 775
Support for alternative control-flow, exception handlers added.
Revision 775 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jan 12 01:17:51 2001 UTC (20 years ago) by leunga
File length: 16710 byte(s)
Diff to previous 744
Merging the types labexp and mltree. tag leunga-20010111-labexp=mltree
Revision 744 - (view) (download) (annotate) - [select for diffs]
Modified Fri Dec 8 04:11:42 2000 UTC (20 years, 1 month ago) by leunga
File length: 16746 byte(s)
Diff to previous 657
A CVS update record! Changed type cell from int to datatype, and numerous other changes. Affect every client of MLRISC. Lal says this can be bootstrapped on all machines. See smlnj/HISTORY for details. Tag: leunga-20001207-cell-monster-hack
Revision 657 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jun 9 05:20:54 2000 UTC (20 years, 7 months ago) by leunga
File length: 16721 byte(s)
Diff to previous 651
None of these changes should affect SML/NJ. See HISTORY file for details. CVS Tag=leunga-20000609-various
Revision 651 - (view) (download) (annotate) - [select for diffs]
Modified Thu Jun 1 18:34:03 2000 UTC (20 years, 7 months ago) by monnier
File length: 16721 byte(s)
Diff to previous 624
bring revisions from the vendor branch to the trunk
Revision 624 - (view) (download) (annotate) - [select for diffs]
Modified Fri Apr 21 03:06:21 2000 UTC (20 years, 9 months ago) by leunga
File length: 16721 byte(s)
Diff to previous 594
This update synchronizes my repository with Yale's. Most of these changes are related to C--, Moby, and my optimizations. It should have little impact on SML/NJ. CVS tag leunga-20000420-ssa-c---stuff
Revision 594 - (view) (download) (annotate) - [select for diffs]
Modified Tue Apr 4 23:41:47 2000 UTC (20 years, 9 months ago) by leunga
File length: 16599 byte(s)
Diff to previous 545
Changes to assembly output and fixes a bug in the x86 assembler CVS tag=leunga-20000404-x86-asm
Revision 545 - (view) (download) (annotate) - [select for diffs]
Modified Thu Feb 24 13:56:44 2000 UTC (20 years, 10 months ago) by george
File length: 16430 byte(s)
Diff to previous 499
Changes to MLTREE
Revision 499 - (view) (download) (annotate) - [select for diffs]
Modified Tue Dec 7 15:44:50 1999 UTC (21 years, 1 month ago) by monnier
File length: 16188 byte(s)
Copied from: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml revision 498
Diff to previous 498
This commit was generated by cvs2svn to compensate for changes in r498, which included commits to RCS files with non-trunk default branches.
Revision 498 - (view) (download) (annotate) - [select for diffs]
Modified Tue Dec 7 15:44:50 1999 UTC (21 years, 1 month ago) by monnier
Original Path: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml
File length: 16188 byte(s)
Diff to previous 469
version 110.25
Revision 469 - (view) (download) (annotate) - [select for diffs]
Modified Wed Nov 10 22:42:52 1999 UTC (21 years, 2 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml
File length: 15790 byte(s)
Diff to previous 429
version 110.23
Revision 429 - (view) (download) (annotate) - [select for diffs]
Modified Wed Sep 8 09:47:00 1999 UTC (21 years, 4 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml
File length: 15884 byte(s)
Diff to previous 411
version 110.21
Revision 411 - (view) (download) (annotate) - [select for diffs]
Modified Fri Sep 3 00:25:03 1999 UTC (21 years, 4 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml
File length: 15234 byte(s)
Diff to previous 247
version 110.19
Revision 247 - (view) (download) (annotate) - [select for diffs]
Added Sat Apr 17 18:47:13 1999 UTC (21 years, 9 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/MLRISC/ppc/emit/ppcAsm.sml
File length: 10665 byte(s)
version 110.16
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |