+2015-11-21 Nathan Sidwell <nathan@acm.org>
+
+ * config/nvptx/nvptx.c (write_function_decl_and_comment): Print
+ leading blank line.
+ (write_func_decl_from_insn): Likewise.
+ (init_output_initializer, nvptx_assemble_undefined_decl): Likewise.
+ (nvptx_file_end): Likewise.
+ (nvptx_function_end): Undent output.
+ (nvptx_expand_call): Fix formatting.
+ (nvptx_output_call_insn): Indent output.
+ * config/nvptx/nvptx.h (ASM_OUTPUT_ALIGNED_DECL_COMMON,
+ ASM__OUTPUT_ALIGNED_DECL_LOCAL): Print leading blank line.
+
2015-11-21 Jakub Jelinek <jakub@redhat.com>
PR debug/66432
static void
write_function_decl_and_comment (std::stringstream &s, const char *name, const_tree decl)
{
- s << "// BEGIN";
+ s << "\n// BEGIN";
if (TREE_PUBLIC (decl))
s << " GLOBAL";
s << " FUNCTION DECL: ";
{
name = XSTR (callee, 0);
name = nvptx_name_replacement (name);
- s << "// BEGIN GLOBAL FUNCTION DECL: " << name << "\n";
+ s << "\n// BEGIN GLOBAL FUNCTION DECL: " << name << "\n";
}
s << (callprototype ? "\t.callprototype\t" : "\t.extern .func ");
void
nvptx_function_end (FILE *file)
{
- fprintf (file, "\t}\n");
+ fprintf (file, "}\n");
}
\f
/* Decide whether we can make a sibling call to a function. For ptx, we
}
if (varargs)
- XVECEXP (pat, 0, vec_pos++) = gen_rtx_USE (VOIDmode, varargs);
+ XVECEXP (pat, 0, vec_pos++) = gen_rtx_USE (VOIDmode, varargs);
gcc_assert (vec_pos = XVECLEN (pat, 0));
init_output_initializer (FILE *file, const char *name, const_tree type,
bool is_public)
{
- fprintf (file, "// BEGIN%s VAR DEF: ", is_public ? " GLOBAL" : "");
+ fprintf (file, "\n// BEGIN%s VAR DEF: ", is_public ? " GLOBAL" : "");
assemble_name_raw (file, name);
fputc ('\n', file);
if (TREE_CODE (decl) != VAR_DECL)
return;
const char *section = nvptx_section_for_decl (decl);
- fprintf (file, "// BEGIN%s VAR DECL: ", TREE_PUBLIC (decl) ? " GLOBAL" : "");
+ fprintf (file, "\n// BEGIN%s VAR DECL: ",
+ TREE_PUBLIC (decl) ? " GLOBAL" : "");
assemble_name_raw (file, name);
fputs ("\n", file);
HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));
}
fprintf (asm_out_file, ";\n");
if (result != NULL_RTX)
- return "ld.param%t0\t%0, [%%retval_in];\n\t}";
+ return "\tld.param%t0\t%0, [%%retval_in];\n\t}";
return "}";
}
worker_bcast_size = (worker_bcast_size + worker_bcast_align - 1)
& ~(worker_bcast_align - 1);
- fprintf (asm_out_file, "// BEGIN VAR DEF: %s\n", worker_bcast_name);
+ fprintf (asm_out_file, "\n// BEGIN VAR DEF: %s\n", worker_bcast_name);
fprintf (asm_out_file, ".shared .align %d .u8 %s[%d];\n",
worker_bcast_align,
worker_bcast_name, worker_bcast_size);
worker_red_size = ((worker_red_size + worker_red_align - 1)
& ~(worker_red_align - 1));
- fprintf (asm_out_file, "// BEGIN VAR DEF: %s\n", worker_red_name);
+ fprintf (asm_out_file, "\n// BEGIN VAR DEF: %s\n", worker_red_name);
fprintf (asm_out_file, ".shared .align %d .u8 %s[%d];\n",
worker_red_align,
worker_red_name, worker_red_size);
#define ASM_OUTPUT_ALIGNED_DECL_COMMON(FILE, DECL, NAME, SIZE, ALIGN) \
do \
{ \
- fprintf (FILE, "// BEGIN%s VAR DEF: ", \
+ fprintf (FILE, "\n// BEGIN%s VAR DEF: ", \
TREE_PUBLIC (DECL) ? " GLOBAL" : ""); \
assemble_name_raw (FILE, NAME); \
fputc ('\n', FILE); \
#define ASM_OUTPUT_ALIGNED_DECL_LOCAL(FILE, DECL, NAME, SIZE, ALIGN) \
do \
{ \
- fprintf (FILE, "// BEGIN VAR DEF: "); \
+ fprintf (FILE, "\n// BEGIN VAR DEF: "); \
assemble_name_raw (FILE, NAME); \
fputc ('\n', FILE); \
const char *sec = nvptx_section_for_decl (DECL); \