diff options
author | woepaul <woepaul@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-26 08:20:55 +0000 |
---|---|---|
committer | woepaul <woepaul@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-26 08:20:55 +0000 |
commit | bd27ce8d03e923fd18cd037bca31e7dbd80da38e (patch) | |
tree | de36a3fcf8b3c9b0c48ef8571fa90048c8649816 /gcc/config/crx/crx.c | |
parent | 495a87f45d50288c58caeae15898764a7149a220 (diff) | |
download | gcc-bd27ce8d03e923fd18cd037bca31e7dbd80da38e.tar.gz |
* config/crx/crx.md: Make doloop_end pattern usage controllable
via mloop-nesting=<max-nesting> command line switch. Make sure
the combiner cannot use doloop_end_<mode> in an illegal way.
* config/crx/crx.c: Use regs up to r6 for argument passing.
Refine crx_address_cost (non cst4 displacements are expensive).
* config/crx/crx.opt: Add switch for mloop-nesting=.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/crx/crx.c')
-rw-r--r-- | gcc/config/crx/crx.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/config/crx/crx.c b/gcc/config/crx/crx.c index 6008f8dbd4a..b73cde84ec0 100644 --- a/gcc/config/crx/crx.c +++ b/gcc/config/crx/crx.c @@ -54,7 +54,7 @@ /*****************************************************************************/ /* Maximum number of register used for passing parameters. */ -#define MAX_REG_FOR_PASSING_ARGS 5 +#define MAX_REG_FOR_PASSING_ARGS 6 /* Minimum number register used for passing parameters. */ #define MIN_REG_FOR_PASSING_ARGS 2 @@ -827,6 +827,15 @@ crx_address_cost (rtx addr) if (address.index && address.scale == 1) cost+=5; + if (address.disp && !INT_CST4 (INTVAL (address.disp))) + cost+=2; + + if (TARGET_DEBUG_ADDR) + { + fprintf (stderr, "\n======\nTARGET_ADDRESS_COST = %d\n", cost); + debug_rtx (addr); + } + return cost; } |