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

1 2

  /src/external/gpl3/gcc/dist/gcc/
gimple-match.h 117 /* The maximum value of NUM_OPS. */
135 unsigned int num_ops; member in class:gimple_match_op
137 /* The operands to CODE. Only the first NUM_OPS entries are meaningful. */
144 num_ops (0)
156 num_ops (num_ops_in)
167 num_ops (1)
177 num_ops (2)
188 num_ops (3)
200 num_ops (4)
214 num_ops (5
    [all...]
gimple-streamer-in.cc 91 unsigned HOST_WIDE_INT num_ops; local
100 num_ops = bp_unpack_var_len_unsigned (&bp);
101 stmt = gimple_alloc (code, num_ops);
154 for (i = 0; i < num_ops; i++)
gimplify-me.cc 155 size_t i, num_ops; local
224 num_ops = gimple_num_ops (stmt);
225 for (i = num_ops; i > 0; i--)
234 && num_ops == 2)
257 && num_ops == 2)
gimple-match-exports.cc 108 switch (num_ops)
160 unsigned int num_ops = orig_op->num_ops; local
168 new_op->set_op (as_combined_fn (ifn), orig_op->type, num_ops + num_cond_ops);
170 for (unsigned int i = 0; i < num_ops; ++i)
175 num_ops, orig_op->ops);
176 new_op->ops[num_ops + 1] = else_value;
179 new_op->ops[num_ops + 2] = orig_op->cond.len;
180 new_op->ops[num_ops + 3] = orig_op->cond.bias;
250 if (res_op->num_ops >=
395 unsigned int num_ops = res_op->num_ops; local
453 unsigned num_ops = res_op->num_ops; local
    [all...]
gimple.h 275 unsigned num_ops; variable
320 tree GTY((length ("%h.num_ops"))) op[1];
351 tree GTY((length ("%h.num_ops"))) op[1];
376 tree GTY((length ("%h.num_ops"))) op[1];
587 tree GTY((length ("%h.num_ops"))) op[1];
1547 size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1548 void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
2563 return gs->num_ops;
2570 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2572 gs->num_ops = num_ops
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-match.h 144 /* The maximum value of NUM_OPS. */
162 unsigned int num_ops; member in class:gimple_match_op
164 /* The operands to CODE. Only the first NUM_OPS entries are meaningful. */
171 num_ops (0)
183 num_ops (num_ops_in)
194 num_ops (1)
204 num_ops (2)
215 num_ops (3)
227 num_ops (4)
241 num_ops (5
    [all...]
gimple-streamer-in.cc 91 unsigned HOST_WIDE_INT num_ops; local
100 num_ops = bp_unpack_var_len_unsigned (&bp);
101 stmt = gimple_alloc (code, num_ops);
154 for (i = 0; i < num_ops; i++)
gimplify-me.cc 155 size_t i, num_ops; local
224 num_ops = gimple_num_ops (stmt);
225 for (i = num_ops; i > 0; i--)
234 && num_ops == 2)
257 && num_ops == 2)
gimple-match-head.cc 108 unsigned int num_ops = orig_op->num_ops; local
109 new_op->set_op (as_combined_fn (ifn), orig_op->type, num_ops + 2); local
111 for (unsigned int i = 0; i < num_ops; ++i)
116 num_ops, orig_op->ops);
117 new_op->ops[num_ops + 1] = else_value;
511 switch (num_ops)
569 return gimple_build_call_internal (fn, res_op->num_ops,
586 unsigned num_ops = res_op->num_ops; local
889 unsigned int num_ops = res_op->num_ops; local
    [all...]
gimple.h 273 unsigned num_ops; variable
318 tree GTY((length ("%h.num_ops"))) op[1];
349 tree GTY((length ("%h.num_ops"))) op[1];
374 tree GTY((length ("%h.num_ops"))) op[1];
585 tree GTY((length ("%h.num_ops"))) op[1];
1515 size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1516 void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
2504 return gs->num_ops;
2511 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2513 gs->num_ops = num_ops
    [all...]
optabs.cc 7429 int num_ops;
7438 num_ops = 3;
7443 num_ops = 2;
7454 num_ops = 4;
7460 num_ops = 3;
7471 if (maybe_expand_insn (icode, num_ops, ops))
7405 int num_ops; local
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
gen-mul-tables.cc 1091 int num_ops (ExpressionTree *s) function
1106 tilepro_emit (int multiplier, int num_ops)
1141 if (num_ops <= 2)
1157 tilegx_emit (long long multiplier, int num_ops)
1166 if (num_ops > 3)
1205 if (num_ops <= 2)
1293 if (!tilepro_emit (n, num_ops (s)))
1296 if (!tilegx_emit (n, num_ops (s)))
tilepro.cc 1873 int num_ops;
1884 num_ops = tilepro_multiply_get_num_ops (seq);
1885 gcc_assert (num_ops > 0
1886 && num_ops <= tilepro_multiply_insn_seq_MAX_OPERATIONS);
1888 for (i = 0; i < num_ops; i++)
1893 const bool is_last_op = (i + 1 == num_ops);
1868 int num_ops; local
  /src/external/gpl3/gdb.old/dist/gdb/
ax-gdb.c 1168 static int num_ops = (sizeof (ops) / sizeof (ops[0]));
1217 if ((end - start) > ((1 << num_ops) * 8))
1224 for (op = num_ops - 1; op >= 0; op--)
1159 static int num_ops = (sizeof (ops) \/ sizeof (ops[0])); local
  /src/external/gpl3/gdb/dist/gdb/
ax-gdb.c 1167 static int num_ops = (sizeof (ops) / sizeof (ops[0]));
1216 if ((end - start) > ((1 << num_ops) * 8))
1223 for (op = num_ops - 1; op >= 0; op--)
1158 static int num_ops = (sizeof (ops) \/ sizeof (ops[0])); local
  /src/external/gpl3/binutils/dist/gas/
dw2gencfi.c 1483 int num_ops = 0;
1488 num_ops = 0;
1498 num_ops++;
1507 else if (num_ops <= 3 && last_fde->per_encoding == DW_EH_PE_omit)
1513 num_ops = 3;
1515 last_fde->eh_data_size = num_ops;
1516 last_fde->eh_data = XNEWVEC (bfd_byte, num_ops);
1517 num_ops = 0;
1522 last_fde->eh_data[num_ops++] = e->exp.X_add_number;
1526 while (num_ops < 3
1480 int num_ops = 0; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
dw2gencfi.c 1483 int num_ops = 0;
1488 num_ops = 0;
1498 num_ops++;
1507 else if (num_ops <= 3 && last_fde->per_encoding == DW_EH_PE_omit)
1513 num_ops = 3;
1515 last_fde->eh_data_size = num_ops;
1516 last_fde->eh_data = XNEWVEC (bfd_byte, num_ops);
1517 num_ops = 0;
1522 last_fde->eh_data[num_ops++] = e->exp.X_add_number;
1526 while (num_ops < 3
1480 int num_ops = 0; local
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
aarch64-opc.c 6048 int num_ops = aarch64_num_of_operands (opcode);
6049 for (i = 0; i < num_ops; i++)
6044 int num_ops = aarch64_num_of_operands (opcode); local
  /src/external/gpl3/binutils.old/dist/opcodes/
aarch64-opc.c 5784 int num_ops = aarch64_num_of_operands (opcode);
5785 for (i = 0; i < num_ops; i++)
5780 int num_ops = aarch64_num_of_operands (opcode); local
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
riscv.cc 2426 int i, num_ops;
2432 num_ops = riscv_build_integer (codes, value, orig_mode);
2434 if (can_create_pseudo_p () && num_ops > 2 /* not a simple constant */
2435 && num_ops >= riscv_split_integer_cost (value))
2443 for (i = 1; i < num_ops; i++)
2425 int i, num_ops; local
riscv-v.cc 233 int num_ops; local
272 num_ops = 0;
274 num_ops = 1;
276 num_ops = 2;
278 num_ops = 3;
283 for (; num_ops; num_ops--, opno++)
  /src/external/gpl3/gdb.old/dist/opcodes/
aarch64-opc.c 5745 int num_ops = aarch64_num_of_operands (opcode);
5746 for (i = 0; i < num_ops; i++)
5741 int num_ops = aarch64_num_of_operands (opcode); local
  /src/external/gpl3/gdb/dist/opcodes/
aarch64-opc.c 5797 int num_ops = aarch64_num_of_operands (opcode);
5798 for (i = 0; i < num_ops; i++)
5793 int num_ops = aarch64_num_of_operands (opcode); local
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 2123 int num_ops;
2134 num_ops = tilegx_multiply_get_num_ops (seq);
2135 gcc_assert (num_ops > 0
2136 && num_ops <= tilegx_multiply_insn_seq_MAX_OPERATIONS);
2138 for (i = 0; i < num_ops; i++)
2143 const bool is_last_op = (i + 1 == num_ops);
2118 int num_ops; local
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
uds_daemon.c 6902 int num_records = 0, num_ops = 0; local
6909 for (r = req->next; r; r=r->next) if (r->primary == req) num_ops++;
6911 prefix, num_records, num_records != 1 ? "s" : "", num_ops, num_ops != 1 ? "s" : "",
7027 int num_records = 0, num_ops = 0; local
7034 for (r = req->next; r; r=r->next) if (r->primary == req) num_ops++;
7036 prefix, num_records, num_records != 1 ? "s" : "", num_ops, num_ops != 1 ? "s" : "",
7113 int num_records = 0, num_ops = 0; local
7122 num_ops++
7184 int num_records = 0, num_ops = 0; local
    [all...]

Completed in 75 milliseconds

1 2