Home | History | Annotate | Download | only in visium

Lines Matching refs:STREAM

1289    `ASM_OUTPUT_LABEL (STREAM, NAME)'
1291 A C statement (sans semicolon) to output to the stdio stream STREAM
1293 `assemble_name (STREAM, NAME)' to output the name itself; before
1296 #define ASM_OUTPUT_LABEL(STREAM,NAME) \
1297 do { assemble_name (STREAM, NAME); fputs (":\n", STREAM); } while (0)
1302 /* `ASM_OUTPUT_LABELREF (STREAM, NAME)'
1304 A C statement (sans semicolon) to output to the stdio stream STREAM
1309 #define ASM_OUTPUT_LABELREF(STREAM,NAME) \
1310 asm_fprintf (STREAM, "%U%s", NAME)
1355 /* `ASM_OUTPUT_REG_PUSH (STREAM, REGNO)'
1357 A C expression to output to STREAM some assembler code which will
1360 #define ASM_OUTPUT_REG_PUSH(STREAM,REGNO) \
1361 asm_fprintf (STREAM, "\tsubi sp,4\n\twrite.l (sp),%s\n", \
1364 /* `ASM_OUTPUT_REG_POP (STREAM, REGNO)'
1366 A C expression to output to STREAM some assembler code which will
1369 #define ASM_OUTPUT_REG_POP(STREAM,REGNO) \
1370 asm_fprintf (STREAM, "\tread.l %s,(sp)\n\taddi sp,4\n", \
1378 `ASM_OUTPUT_ADDR_DIFF_ELT (STREAM, VALUE, REL)'
1380 A C statement to output to the stdio stream STREAM an assembler
1391 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM,BODY,VALUE,REL) \
1395 asm_fprintf ((STREAM), "\t.long\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1398 asm_fprintf ((STREAM), "\t.word\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1401 asm_fprintf ((STREAM), "\t.byte\t%LL%d-%LL%d\n", (VALUE),(REL)); \
1407 /* `ASM_OUTPUT_ADDR_VEC_ELT (STREAM, VALUE)'
1413 stream STREAM an assembler pseudo-instruction to generate a
1416 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
1417 asm_fprintf (STREAM, "\t.long %LL%d\n", VALUE)
1419 /* `ASM_OUTPUT_CASE_END (STREAM, NUM, TABLE)'
1424 the appropriate code to stdio stream STREAM. The argument TABLE is
1433 #define ASM_OUTPUT_CASE_END(STREAM, NUM, TABLE) \
1434 asm_fprintf (STREAM, "\t.long 0\n")
1444 `ASM_OUTPUT_ALIGN_CODE (STREAM)'
1455 /* `ASM_OUTPUT_LOOP_ALIGN (STREAM)'
1465 /* `ASM_OUTPUT_ALIGN (STREAM, POWER)'
1467 A C statement to output to the stdio stream STREAM an assembler
1470 #define ASM_OUTPUT_ALIGN(STREAM,LOG) \
1472 fprintf (STREAM, "\t.align %d\n", (1 << (LOG)))
1474 /* `ASM_OUTPUT_MAX_SKIP_ALIGN (STREAM, POWER, MAX_SKIP)`
1476 A C statement to output to the stdio stream STREAM an assembler
1481 #define ASM_OUTPUT_MAX_SKIP_ALIGN(STREAM,LOG,MAX_SKIP) \
1484 fprintf ((STREAM), "\t.p2align %d\n", (LOG)); \
1486 fprintf ((STREAM), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
1522 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
1523 ( fputs ("\n\t.comm ", (STREAM)), \
1524 assemble_name ((STREAM), (NAME)), \
1525 fprintf ((STREAM), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", ROUNDED))
1529 #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \
1530 ( fputs ("\n\t.lcomm ", (STREAM)), \
1531 assemble_name ((STREAM), (NAME)), \
1532 fprintf ((STREAM), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", ROUNDED))