Home
last modified time | relevance | path

Searched refs:op_end (Results 1 – 25 of 127) sorted by relevance

123456

/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-moxie.c155 char *op_end; in md_assemble() local
171 for (op_end = str; in md_assemble()
172 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' '; in md_assemble()
173 op_end++) in md_assemble()
176 pend = *op_end; in md_assemble()
177 *op_end = 0; in md_assemble()
182 *op_end = pend; in md_assemble()
196 while (ISSPACE (*op_end)) in md_assemble()
197 op_end++; in md_assemble()
201 reg = parse_register_operand (&op_end); in md_assemble()
[all …]
H A Dtc-mcore.c853 char * op_end; in md_assemble() local
869 for (op_start = op_end = str; in md_assemble()
870 nlen < 20 && !is_end_of_line [(unsigned char) *op_end] && *op_end != ' '; in md_assemble()
871 op_end++) in md_assemble()
902 op_end = parse_imm (op_end + 1, & reg, 0, 3); in md_assemble()
908 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
914 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
928 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
961 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
965 while (ISSPACE (* op_end)) in md_assemble()
[all …]
H A Dtc-ft32.c201 char *op_end; in md_assemble() local
220 for (op_end = str; in md_assemble()
221 *op_end in md_assemble()
222 && !is_end_of_line[*op_end & 0xff] in md_assemble()
223 && *op_end != ' ' in md_assemble()
224 && *op_end != '.'; in md_assemble()
225 op_end++) in md_assemble()
228 pend = *op_end; in md_assemble()
229 *op_end = 0; in md_assemble()
235 *op_end = pend; in md_assemble()
[all …]
H A Dtc-microblaze.c880 char * op_end; in md_assemble() local
899 for (op_start = op_end = str; in md_assemble()
900 *op_end && !is_end_of_line[(unsigned char) *op_end] && *op_end != ' '; in md_assemble()
901 op_end++) in md_assemble()
930 if (strcmp (op_end, "")) in md_assemble()
931 op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */ in md_assemble()
937 if (strcmp (op_end, "")) in md_assemble()
938 op_end = parse_reg (op_end + 1, &reg2); /* Get r1. */ in md_assemble()
944 if (strcmp (op_end, "")) in md_assemble()
945 op_end = parse_reg (op_end + 1, &reg3); /* Get r2. */ in md_assemble()
[all …]
H A Dtc-pj.c229 char *op_end; in md_assemble() local
244 for (op_end = str; in md_assemble()
245 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' '; in md_assemble()
246 op_end++) in md_assemble()
249 pend = *op_end; in md_assemble()
250 *op_end = 0; in md_assemble()
256 *op_end = pend; in md_assemble()
269 (*opcode->u.func) (opcode, op_end); in md_assemble()
285 if (*op_end == ',' && an != 0) in md_assemble()
286 op_end++; in md_assemble()
[all …]
H A Dtc-z8k.c730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand) in get_operands() argument
732 char *ptr = op_end; in get_operands()
1217 char *op_end; in md_assemble() local
1226 for (op_start = op_end = str; in md_assemble()
1227 *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end]; in md_assemble()
1228 op_end++) in md_assemble()
1231 if (op_end == op_start) in md_assemble()
1235 c = *op_end; in md_assemble()
1237 *op_end = 0; /* Zero-terminate op code string for str_hash_find() call. */ in md_assemble()
1247 *op_end = c; /* Restore original string. */ in md_assemble()
[all …]
H A Dtc-h8300.c889 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand) in get_operands() argument
891 char *ptr = op_end; in get_operands()
937 get_mova_operands (char *op_end, struct h8_op *operand) in get_mova_operands() argument
939 char *ptr = op_end; in get_mova_operands()
1894 char *op_end; in md_assemble() local
1909 for (op_start = op_end = str; in md_assemble()
1910 *op_end != 0 && *op_end != ' '; in md_assemble()
1911 op_end++) in md_assemble()
1913 if (*op_end == '.') in md_assemble()
1915 dot = op_end + 1; in md_assemble()
[all …]
H A Dtc-m68hc11.c2816 unsigned char *op_start, *op_end; in md_assemble() local
2831 for (op_start = op_end = (unsigned char *) str; in md_assemble()
2832 *op_end && !is_end_of_line[*op_end] && *op_end != ' '; in md_assemble()
2833 op_end++) in md_assemble()
2865 input_line_pointer = (char *) op_end; in md_assemble()
3433 opc->opcode->name, (char *)op_end); in md_assemble()
3494 if (*op_end == ' ' || *op_end == '\t') in md_assemble()
3496 while (*op_end == ' ' || *op_end == '\t') in md_assemble()
3497 op_end++; in md_assemble()
3500 && (*op_end && in md_assemble()
[all …]
H A Dtc-wasm32.c250 char *op_end; in extract_opcode() local
258 for (op_end = from; *op_end != 0 && is_part_of_opcode (*op_end);) in extract_opcode()
260 to[size++] = *op_end++; in extract_opcode()
266 return op_end; in extract_opcode()
H A Dtc-sh.c2148 unsigned char *op_end; in find_cooked_opcode() local
2160 for (op_start = op_end = (unsigned char *) str; in find_cooked_opcode()
2161 *op_end in find_cooked_opcode()
2163 && !is_end_of_line[*op_end] && *op_end != ' ' && *op_end != '@'; in find_cooked_opcode()
2164 op_end++) in find_cooked_opcode()
2179 *str_p = (char *) op_end; in find_cooked_opcode()
2191 assemble_ppi (char *op_end, sh_opcode_info *opcode) in assemble_ppi() argument
2212 op_end = get_operands (opcode, op_end, operand); in assemble_ppi()
2362 if (*op_end) in assemble_ppi()
2436 if (! *op_end) in assemble_ppi()
[all …]
H A Dtc-d30v.c1288 char *op_end; in do_assemble() local
1301 for (op_start = op_end = str; in do_assemble()
1302 *op_end in do_assemble()
1304 && *op_end != '/' in do_assemble()
1305 && !is_end_of_line[(unsigned char) *op_end] && *op_end != ' '; in do_assemble()
1306 op_end++) in do_assemble()
1318 if (*op_end == '/') in do_assemble()
1321 while ((i < ECC_MAX) && strncasecmp (d30v_ecc_names[i], op_end + 1, 2)) in do_assemble()
1327 strncpy (tmp, op_end + 1, 2); in do_assemble()
1333 op_end += 3; in do_assemble()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-moxie.c155 char *op_end; in md_assemble() local
171 for (op_end = str; in md_assemble()
172 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' '; in md_assemble()
173 op_end++) in md_assemble()
176 pend = *op_end; in md_assemble()
177 *op_end = 0; in md_assemble()
182 *op_end = pend; in md_assemble()
196 while (ISSPACE (*op_end)) in md_assemble()
197 op_end++; in md_assemble()
201 reg = parse_register_operand (&op_end); in md_assemble()
[all …]
H A Dtc-mcore.c853 char * op_end; in md_assemble() local
869 for (op_start = op_end = str; in md_assemble()
870 nlen < 20 && !is_end_of_line [(unsigned char) *op_end] && *op_end != ' '; in md_assemble()
871 op_end++) in md_assemble()
902 op_end = parse_imm (op_end + 1, & reg, 0, 3); in md_assemble()
908 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
914 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
928 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
961 op_end = parse_reg (op_end + 1, & reg); in md_assemble()
965 while (ISSPACE (* op_end)) in md_assemble()
[all …]
H A Dtc-ft32.c201 char *op_end; in md_assemble() local
220 for (op_end = str; in md_assemble()
221 *op_end in md_assemble()
222 && !is_end_of_line[*op_end & 0xff] in md_assemble()
223 && *op_end != ' ' in md_assemble()
224 && *op_end != '.'; in md_assemble()
225 op_end++) in md_assemble()
228 pend = *op_end; in md_assemble()
229 *op_end = 0; in md_assemble()
235 *op_end = pend; in md_assemble()
[all …]
H A Dtc-microblaze.c908 char * op_end; in md_assemble() local
927 for (op_start = op_end = str; in md_assemble()
928 *op_end && !is_end_of_line[(unsigned char) *op_end] && *op_end != ' '; in md_assemble()
929 op_end++) in md_assemble()
958 if (strcmp (op_end, "")) in md_assemble()
959 op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */ in md_assemble()
965 if (strcmp (op_end, "")) in md_assemble()
966 op_end = parse_reg (op_end + 1, &reg2); /* Get r1. */ in md_assemble()
972 if (strcmp (op_end, "")) in md_assemble()
973 op_end = parse_reg (op_end + 1, &reg3); /* Get r2. */ in md_assemble()
[all …]
H A Dtc-pj.c229 char *op_end; in md_assemble() local
244 for (op_end = str; in md_assemble()
245 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' '; in md_assemble()
246 op_end++) in md_assemble()
249 pend = *op_end; in md_assemble()
250 *op_end = 0; in md_assemble()
256 *op_end = pend; in md_assemble()
269 (*opcode->u.func) (opcode, op_end); in md_assemble()
285 if (*op_end == ',' && an != 0) in md_assemble()
286 op_end++; in md_assemble()
[all …]
H A Dtc-z8k.c730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand) in get_operands() argument
732 char *ptr = op_end; in get_operands()
1217 char *op_end; in md_assemble() local
1226 for (op_start = op_end = str; in md_assemble()
1227 *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end]; in md_assemble()
1228 op_end++) in md_assemble()
1231 if (op_end == op_start) in md_assemble()
1235 c = *op_end; in md_assemble()
1237 *op_end = 0; /* Zero-terminate op code string for str_hash_find() call. */ in md_assemble()
1247 *op_end = c; /* Restore original string. */ in md_assemble()
[all …]
H A Dtc-h8300.c892 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand) in get_operands() argument
894 char *ptr = op_end; in get_operands()
940 get_mova_operands (char *op_end, struct h8_op *operand) in get_mova_operands() argument
942 char *ptr = op_end; in get_mova_operands()
1897 char *op_end; in md_assemble() local
1912 for (op_start = op_end = str; in md_assemble()
1913 *op_end != 0 && *op_end != ' '; in md_assemble()
1914 op_end++) in md_assemble()
1916 if (*op_end == '.') in md_assemble()
1918 dot = op_end + 1; in md_assemble()
[all …]
H A Dtc-m68hc11.c2816 unsigned char *op_start, *op_end; in md_assemble() local
2831 for (op_start = op_end = (unsigned char *) str; in md_assemble()
2832 *op_end && !is_end_of_line[*op_end] && *op_end != ' '; in md_assemble()
2833 op_end++) in md_assemble()
2865 input_line_pointer = (char *) op_end; in md_assemble()
3433 opc->opcode->name, (char *)op_end); in md_assemble()
3494 if (*op_end == ' ' || *op_end == '\t') in md_assemble()
3496 while (*op_end == ' ' || *op_end == '\t') in md_assemble()
3497 op_end++; in md_assemble()
3500 && (*op_end && in md_assemble()
[all …]
H A Dtc-wasm32.c250 char *op_end; in extract_opcode() local
258 for (op_end = from; *op_end != 0 && is_part_of_opcode (*op_end);) in extract_opcode()
260 to[size++] = *op_end++; in extract_opcode()
266 return op_end; in extract_opcode()
H A Dtc-sh.c2163 unsigned char *op_end; in find_cooked_opcode() local
2175 for (op_start = op_end = (unsigned char *) str; in find_cooked_opcode()
2176 *op_end in find_cooked_opcode()
2178 && !is_end_of_line[*op_end] && *op_end != ' ' && *op_end != '@'; in find_cooked_opcode()
2179 op_end++) in find_cooked_opcode()
2194 *str_p = (char *) op_end; in find_cooked_opcode()
2206 assemble_ppi (char *op_end, sh_opcode_info *opcode) in assemble_ppi() argument
2227 op_end = get_operands (opcode, op_end, operand); in assemble_ppi()
2377 if (*op_end) in assemble_ppi()
2451 if (! *op_end) in assemble_ppi()
[all …]
H A Dtc-d30v.c1288 char *op_end; in do_assemble() local
1301 for (op_start = op_end = str; in do_assemble()
1302 *op_end in do_assemble()
1304 && *op_end != '/' in do_assemble()
1305 && !is_end_of_line[(unsigned char) *op_end] && *op_end != ' '; in do_assemble()
1306 op_end++) in do_assemble()
1318 if (*op_end == '/') in do_assemble()
1321 while ((i < ECC_MAX) && strncasecmp (d30v_ecc_names[i], op_end + 1, 2)) in do_assemble()
1327 strncpy (tmp, op_end + 1, 2); in do_assemble()
1333 op_end += 3; in do_assemble()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DOperandTraits.h37 static Use *op_end(SubClass* U) { in op_end() function
75 static Use *op_end(SubClass* U) { in op_end() function
99 static Use *op_end(User* U) { in op_end() function
116 inline op_iterator op_end(); \
117 inline const_op_iterator op_end() const; \
132 CLASS::op_iterator CLASS::op_end() { \
133 return OperandTraits<CLASS>::op_end(this); \
135 CLASS::const_op_iterator CLASS::op_end() const { \
136 return OperandTraits<CLASS>::op_end(const_cast<CLASS*>(this)); \
H A DUser.h129 ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx] in OpFrom()
236 op_iterator op_end() { in op_end() function
239 const_op_iterator op_end() const { in op_end() function
243 return op_range(op_begin(), op_end()); in operands()
246 return const_op_range(op_begin(), op_end()); in operands()
264 return value_op_iterator(op_end()); in value_op_end()
285 return const_value_op_iterator(op_end()); in value_op_end()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h268 operand_iterator op_end() { return Operands.end(); } in op_end() function
269 const_operand_iterator op_end() const { return Operands.end(); } in op_end() function
270 operand_range operands() { return operand_range(op_begin(), op_end()); } in operands()
272 return const_operand_range(op_begin(), op_end()); in operands()

123456