diff options
| author | 2012-10-22 18:16:22 -0700 | |
|---|---|---|
| committer | 2012-10-22 18:16:22 -0700 | |
| commit | 30a3317577d84feafa859b3e39d1545a995f0b7c (patch) | |
| tree | b102c00c0e2fa5601b0a7021522121d087569964 /src/compiler/codegen/mips/MipsLIR.h | |
| parent | 63af6361337cc9b5c75ae55405b45d770c5a3b08 (diff) | |
More MIPS fixes. Many run-test tests pass.
Run-test tests 001-043 work, including 003-omnibus-opcodes. 044 is
proxy, which is still broken.
Changes made:
- Fixed argument marshalling of FP values for calls to helper functions
in the compiler.
- Fixed CheckCast compilation's mistaken use of rARG0 instead of rRET0.
- Fixed conversion calls to marshall FP arguments properly.
- Created named values for FP args, though they differ in MIPS only.
- Fixed assembly to always use T9 to hold code pointer to jump to.
- Fixed proxy offset values.
Change-Id: If121db322683a307e5a1016210f4f73283aa817c
Diffstat (limited to 'src/compiler/codegen/mips/MipsLIR.h')
| -rw-r--r-- | src/compiler/codegen/mips/MipsLIR.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/codegen/mips/MipsLIR.h b/src/compiler/codegen/mips/MipsLIR.h index 5077c9fa40..4b7da557b3 100644 --- a/src/compiler/codegen/mips/MipsLIR.h +++ b/src/compiler/codegen/mips/MipsLIR.h @@ -301,6 +301,10 @@ enum NativeRegisterPool { #define rARG1 r_ARG1 #define rARG2 r_ARG2 #define rARG3 r_ARG3 +#define rFARG0 r_FARG0 +#define rFARG1 r_FARG1 +#define rFARG2 r_FARG2 +#define rFARG3 r_FARG3 #define rRET0 r_RESULT0 #define rRET1 r_RESULT1 #define rINVOKE_TGT r_T9 |