Lines Matching defs:column
906 /* Set the line number and column offset for the following instructions.
7567 write_location_info_short_form(struct assembler* a, int length, int column, int end_column)
7570 int column_low_bits = column & 7;
7571 int column_group = column >> 3;
7572 assert(column < 80);
7573 assert(end_column >= column);
7574 assert(end_column - column < 16);
7576 write_location_byte(a, (column_low_bits << 4) | (end_column - column));
7580 write_location_info_oneline_form(struct assembler* a, int length, int line_delta, int column, int end_column)
7584 assert(column < 128);
7587 write_location_byte(a, column);
7633 int column = i->i_col_offset;
7635 assert(column >= -1);
7637 if (column < 0 || end_column < 0) {
7645 if (line_delta == 0 && column < 80 && end_column - column < 16 && end_column >= column) {
7646 write_location_info_short_form(a, isize, column, end_column);
7649 if (line_delta >= 0 && line_delta < 3 && column < 128 && end_column < 128) {
7650 write_location_info_oneline_form(a, isize, line_delta, column, end_column);