From: Doug Evans Date: Tue, 24 Feb 1998 00:00:18 +0000 (+0000) Subject: * config/tc-dvp.c (assemble_dma): Do alignment before parsing insn. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e9cb12e459e329389a6996959894259c96f5d283;p=binutils-gdb.git * config/tc-dvp.c (assemble_dma): Do alignment before parsing insn. (setup_dma_autocount): Renamed from setup_autocount. New argument inline_p. All callers changed. Fix word address of count. (parse_dma_addr_autocount): Fix word address of address. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 63d055894a0..a8637e750b7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,4 +1,13 @@ start-sanitize-sky +Mon Feb 23 15:55:12 1998 Doug Evans + + * config/tc-dvp.c (assemble_dma): Do alignment before parsing insn. + (setup_dma_autocount): Renamed from setup_autocount. New argument + inline_p. All callers changed. Fix word address of count. + (parse_dma_addr_autocount): Fix word address of address. + +end-sanitize-sky +start-sanitize-sky Mon Feb 23 17:24:06 1998 Jim Lemke * config/obj-elf.c: Take Ian's suggestion, leave .bss etc diff --git a/gas/config/tc-dvp.c b/gas/config/tc-dvp.c index 06fa6fa8ad5..2d06b652f8d 100644 --- a/gas/config/tc-dvp.c +++ b/gas/config/tc-dvp.c @@ -50,7 +50,7 @@ static char * unique_name PARAMS ((const char *)); static long eval_expr PARAMS ((int, int, const char *, ...)); static long parse_dma_addr_autocount (); static void inline_dma_data PARAMS ((int, DVP_INSN *)); -static void setup_autocount PARAMS ((const char *, DVP_INSN *)); +static void setup_dma_autocount PARAMS ((const char *, DVP_INSN *, int)); static void insert_operand PARAMS ((dvp_cpu, const dvp_opcode *, const dvp_operand *, int, @@ -337,11 +337,20 @@ assemble_dma (str) int i; const dvp_opcode *opcode; - /* Fill the first two words with VIF NOPs. - They may be over-written later if DmaPackPke is on. - initialize the remainder with zeros. */ + if (output_dma) + { + /* Do an implicit alignment to a 16 byte boundary. + Do it now so that inline dma data labels are at the right place. */ + frag_align (4, 0, 0); + record_alignment (now_seg, 4); + } + + /* This is the DMA tag. */ insn_buf[0] = 0; insn_buf[1] = 0; + /* These are VIF NOPs. + They may be over-written later if DmaPackPke is on. + initialize the remainder with zeros. */ insn_buf[2] = 0; insn_buf[3] = 0; @@ -353,10 +362,6 @@ assemble_dma (str) if (!output_dma) return; - /* Do an implicit alignment to a 16 byte boundary. */ - frag_align (4, 0, 0); - record_alignment (now_seg, 4); - record_mach (DVP_DMA); len = 4; @@ -1509,23 +1514,35 @@ unique_name (prefix) return result; } -/* Compute the auto-count value for a DMA tag. */ +/* Compute the auto-count value for a DMA tag. + INLINE_P is non-zero if the dma data is inline. */ static void -setup_autocount (name, insn_buf) +setup_dma_autocount (name, insn_buf, inline_p) const char *name; DVP_INSN *insn_buf; + int inline_p; { long count; - count = eval_expr (dma_operand_count, 12, - "(%s%s - %s) >> 4", END_LABEL_PREFIX, name, name); - /* count is in quadwords */ - count /= 16; + if (inline_p) + { + /* -1: The count is the number of following quadwords, so skip the one + containing the dma tag. */ + count = eval_expr (dma_operand_count, 0, + "((%s%s - %s) >> 4) - 1", END_LABEL_PREFIX, name, name); + } + else + { + /* We don't want to subtract 1 here as the begin and end labels + properly surround the data we want to compute the length of. */ + count = eval_expr (dma_operand_count, 0, + "(%s%s - %s) >> 4", END_LABEL_PREFIX, name, name); + } /* Store the count field. */ - insn_buf[3] &= 0xffff0000; - insn_buf[3] |= count & 0x0000ffff; + insn_buf[0] &= 0xffff0000; + insn_buf[0] |= count & 0x0000ffff; } /* Record that inline data follows. */ @@ -1546,7 +1563,7 @@ inline_dma_data (autocount_p, insn_buf) if (autocount_p) { dma_data_name = S_GET_NAME (create_colon_label ("", unique_name (NULL))); - setup_autocount (dma_data_name, insn_buf); + setup_dma_autocount (dma_data_name, insn_buf, 1); } else dma_data_name = 0; @@ -1588,9 +1605,9 @@ parse_dma_addr_autocount (opcode, operand, mods, insn_buf, pstr, errmsg) label2 = create_label ("_$", name); endlabel = create_label (END_LABEL_PREFIX, name); - retval = eval_expr (dma_operand_addr, 8, name); + retval = eval_expr (dma_operand_addr, 4, name); - setup_autocount (name, insn_buf); + setup_dma_autocount (name, insn_buf, 0); *pstr = end; return retval; @@ -1882,12 +1899,15 @@ s_enddmadata (ignore) dma_data_state = 0; demand_empty_rest_of_line (); + /* If count provided, verify it is correct. */ + /* ... */ + /* "label" points to beginning of block. Create a name for the final label like _$. */ if (dma_data_name) { /* Fill the data out to a multiple of 16 bytes. */ - /* FIXME: Does the fill contents matter? */ + /* FIXME: Are the fill contents right? */ frag_align (4, 0, 0); create_colon_label (END_LABEL_PREFIX, dma_data_name); }