rs6000.c (rs6000_xcoff_asm_named_section): Add TLS section.

* config/rs6000/rs6000.c (rs6000_xcoff_asm_named_section): Add TLS
        section.
        * config/rs6000/rs6000.c (rs6000_debug_address_cost): Add new
        arguments to TARGET_ADDRESS_COST call.

From-SVN: r191027
This commit is contained in:
David Edelsohn 2012-09-06 14:07:23 +00:00 committed by David Edelsohn
parent 342f75af29
commit 81a14f1e73
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2012-09-06 David Edelsohn <dje.gcc@gmail.com>
* config/rs6000/rs6000.c (rs6000_xcoff_asm_named_section): Add TLS
section.
* config/rs6000/rs6000.c (rs6000_debug_address_cost): Add new
arguments to TARGET_ADDRESS_COST call.
2012-09-06 Richard Guenther <rguenther@suse.de>
* tree.h (MOVE_NONTEMPORAL): Remove.

View File

@ -25547,10 +25547,12 @@ rs6000_xcoff_asm_named_section (const char *name, unsigned int flags,
tree decl ATTRIBUTE_UNUSED)
{
int smclass;
static const char * const suffix[3] = { "PR", "RO", "RW" };
static const char * const suffix[4] = { "PR", "RO", "RW", "TL" };
if (flags & SECTION_CODE)
smclass = 0;
else if (flags & SECTION_TLS)
smclass = 3;
else if (flags & SECTION_WRITE)
smclass = 2;
else
@ -26071,10 +26073,10 @@ rs6000_debug_rtx_costs (rtx x, int code, int outer_code, int opno, int *total,
/* Debug form of ADDRESS_COST that is selected if -mdebug=cost. */
static int
rs6000_debug_address_cost (rtx x, enum machine_mode mode ATTRIBUTE_UNUSED,
addr_space_t as ATTRIBUTE_UNUSED, bool speed)
rs6000_debug_address_cost (rtx x, enum machine_mode mode,
addr_space_t as, bool speed)
{
int ret = TARGET_ADDRESS_COST (x, speed);
int ret = TARGET_ADDRESS_COST (x, mode, as, speed);
fprintf (stderr, "\nrs6000_address_cost, return = %d, speed = %s, x:\n",
ret, speed ? "true" : "false");