HomeSort by: relevance | last modified time | path
    Searched defs:op_end (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
OperandTraits.h 37 static Use *op_end(SubClass* U) { function in struct:llvm::FixedNumOperandTraits
75 static Use *op_end(SubClass* U) { function in struct:llvm::VariadicOperandTraits
99 static Use *op_end(User* U) { function in struct:llvm::HungoffOperandTraits
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)); \
Metadata.h 1096 op_iterator op_end() const { function in class:llvm::MDNode
1100 op_range operands() const { return op_range(op_begin(), op_end()); }
1319 iterator end() const { return N ? iterator(N->op_end()) : iterator(); }
1475 op_iterator op_end() { return op_iterator(this, getNumOperands()); } function in class:llvm::NamedMDNode
1480 const_op_iterator op_end() const { return const_op_iterator(this, getNumOperands()); } function in class:llvm::NamedMDNode
1483 return make_range(op_begin(), op_end());
1486 return make_range(op_begin(), op_end());
  /src/external/gpl3/binutils/dist/gas/config/
tc-moxie.c 155 char *op_end; local
171 for (op_end = str;
172 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
173 op_end++)
176 pend = *op_end;
177 *op_end = 0;
182 *op_end = pend;
196 while (is_whitespace (*op_end))
197 op_end++
    [all...]
tc-pj.c 229 char *op_end; local
244 for (op_end = str;
245 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
246 op_end++)
249 pend = *op_end;
250 *op_end = 0;
256 *op_end = pend;
269 (*opcode->u.func) (opcode, op_end);
285 if (*op_end == ',' && an != 0
    [all...]
tc-ft32.c 201 char *op_end; local
220 for (op_end = str;
221 !is_end_of_stmt (*op_end)
222 && !is_whitespace (*op_end)
223 && *op_end != '.';
224 op_end++)
227 pend = *op_end;
228 *op_end = 0;
234 *op_end = pend;
249 if (*op_end == '.'
    [all...]
tc-wasm32.c 250 char *op_end; local
258 for (op_end = from; *op_end != 0 && is_part_of_opcode (*op_end);)
260 to[size++] = *op_end++;
266 return op_end;
tc-d10v.c 1405 unsigned char *op_start, *op_end; local
1416 for (op_start = op_end = (unsigned char *) str;
1417 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
1418 op_end++)
1436 input_line_pointer = (char *) op_end;
tc-h8300.c 891 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand)
893 char *ptr = op_end;
939 get_mova_operands (char *op_end, struct h8_op *operand)
941 char *ptr = op_end;
1896 char *op_end; local
1911 for (op_start = op_end = str;
1912 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
1913 op_end++)
1915 if (*op_end == '.'
    [all...]
tc-mcore.c 853 char * op_end; local
869 for (op_start = op_end = str;
870 nlen < 20 && !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
871 op_end++)
902 op_end = parse_imm (op_end + 1, & reg, 0, 3);
908 op_end = parse_reg (op_end + 1, & reg);
914 op_end = parse_reg (op_end + 1, & reg)
    [all...]
tc-microblaze.c 882 char * op_end; local
901 for (op_start = op_end = str;
902 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
903 op_end++)
932 if (strcmp (op_end, ""))
933 op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */
939 if (strcmp (op_end, ""))
940 op_end = parse_reg (op_end + 1, &reg2); /* Get r1. *
    [all...]
tc-xgate.c 823 char *op_end; local
830 for (op_end = from; *op_end != 0 && is_part_of_name (*op_end);)
832 to[size++] = *op_end++;
837 return op_end;
tc-z8k.c 730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
732 char *ptr = op_end;
1216 char *op_end; local
1225 for (op_start = op_end = str;
1226 ! is_whitespace (*op_end) && ! is_end_of_stmt (*op_end);
1227 op_end++)
1230 if (op_end == op_start)
1234 c = *op_end;
1236 *op_end = 0; /* Zero-terminate op code string for str_hash_find() call. *
    [all...]
tc-avr.c 631 char *op_end; local
639 for (op_end = from; *op_end != 0 && is_part_of_name (*op_end);)
641 to[size++] = *op_end++;
647 return op_end;
tc-d30v.c 1290 char *op_end; local
1303 for (op_start = op_end = str;
1304 *op_end
1306 && *op_end != '/'
1307 && !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
1308 op_end++)
1320 if (*op_end == '/')
1323 while ((i < ECC_MAX) && strncasecmp (d30v_ecc_names[i], op_end + 1, 2))
1329 strncpy (tmp, op_end + 1, 2)
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-moxie.c 155 char *op_end; local
171 for (op_end = str;
172 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
173 op_end++)
176 pend = *op_end;
177 *op_end = 0;
182 *op_end = pend;
196 while (is_whitespace (*op_end))
197 op_end++
    [all...]
tc-pj.c 229 char *op_end; local
244 for (op_end = str;
245 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
246 op_end++)
249 pend = *op_end;
250 *op_end = 0;
256 *op_end = pend;
269 (*opcode->u.func) (opcode, op_end);
285 if (*op_end == ',' && an != 0
    [all...]
tc-ft32.c 201 char *op_end; local
220 for (op_end = str;
221 !is_end_of_stmt (*op_end)
222 && !is_whitespace (*op_end)
223 && *op_end != '.';
224 op_end++)
227 pend = *op_end;
228 *op_end = 0;
234 *op_end = pend;
249 if (*op_end == '.'
    [all...]
tc-wasm32.c 250 char *op_end; local
258 for (op_end = from; *op_end != 0 && is_part_of_opcode (*op_end);)
260 to[size++] = *op_end++;
266 return op_end;
tc-d10v.c 1405 unsigned char *op_start, *op_end; local
1416 for (op_start = op_end = (unsigned char *) str;
1417 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
1418 op_end++)
1436 input_line_pointer = (char *) op_end;
tc-h8300.c 891 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand)
893 char *ptr = op_end;
939 get_mova_operands (char *op_end, struct h8_op *operand)
941 char *ptr = op_end;
1896 char *op_end; local
1911 for (op_start = op_end = str;
1912 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
1913 op_end++)
1915 if (*op_end == '.'
    [all...]
tc-mcore.c 853 char * op_end; local
869 for (op_start = op_end = str;
870 nlen < 20 && !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
871 op_end++)
902 op_end = parse_imm (op_end + 1, & reg, 0, 3);
908 op_end = parse_reg (op_end + 1, & reg);
914 op_end = parse_reg (op_end + 1, & reg)
    [all...]
tc-microblaze.c 879 char * op_end; local
898 for (op_start = op_end = str;
899 !is_end_of_stmt (*op_end) && !is_whitespace (*op_end);
900 op_end++)
929 if (strcmp (op_end, ""))
930 op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */
936 if (strcmp (op_end, ""))
937 op_end = parse_reg (op_end + 1, &reg2); /* Get r1. *
    [all...]
tc-xgate.c 823 char *op_end; local
830 for (op_end = from; *op_end != 0 && is_part_of_name (*op_end);)
832 to[size++] = *op_end++;
837 return op_end;
tc-z8k.c 730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
732 char *ptr = op_end;
1217 char *op_end; local
1226 for (op_start = op_end = str;
1227 ! is_whitespace (*op_end) && ! is_end_of_stmt (*op_end);
1228 op_end++)
1231 if (op_end == op_start)
1235 c = *op_end;
1237 *op_end = 0; /* Zero-terminate op code string for str_hash_find() call. *
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSA.h 439 static Use *op_end(MemoryUseOrDef *MUD) { function in struct:llvm::OperandTraits
441 return OperandTraits<MemoryUse>::op_end(MU);
442 return OperandTraits<MemoryDef>::op_end(cast<MemoryDef>(MUD));

Completed in 81 milliseconds

1 2