Home
last modified time | relevance | path

Searched refs:self (Results 1 – 25 of 70) sorted by relevance

123

/toolchain/binutils/binutils-2.25/bfd/
Dcpu-ia64-opc.c35 ins_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED, in ins_rsvd()
42 ext_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED, in ext_rsvd()
49 ins_const (const struct ia64_operand *self ATTRIBUTE_UNUSED, in ins_const()
56 ext_const (const struct ia64_operand *self ATTRIBUTE_UNUSED, in ext_const()
63 ins_reg (const struct ia64_operand *self, ia64_insn value, ia64_insn *code) in ins_reg() argument
65 if (value >= 1u << self->field[0].bits) in ins_reg()
68 *code |= value << self->field[0].shift; in ins_reg()
73 ext_reg (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep) in ext_reg() argument
75 *valuep = ((code >> self->field[0].shift) in ext_reg()
76 & ((1u << self->field[0].bits) - 1)); in ext_reg()
[all …]
/toolchain/binutils/binutils-2.25/opcodes/
Daarch64-asm-2.c348 aarch64_insert_operand (const aarch64_operand *self, in aarch64_insert_operand() argument
353 int key = self - aarch64_operands; in aarch64_insert_operand()
381 return aarch64_ins_regno (self, info, code, inst); in aarch64_insert_operand()
383 return aarch64_ins_reg_extended (self, info, code, inst); in aarch64_insert_operand()
385 return aarch64_ins_reg_shifted (self, info, code, inst); in aarch64_insert_operand()
387 return aarch64_ins_ft (self, info, code, inst); in aarch64_insert_operand()
391 return aarch64_ins_reglane (self, info, code, inst); in aarch64_insert_operand()
393 return aarch64_ins_reglist (self, info, code, inst); in aarch64_insert_operand()
395 return aarch64_ins_ldst_reglist (self, info, code, inst); in aarch64_insert_operand()
397 return aarch64_ins_ldst_reglist_r (self, info, code, inst); in aarch64_insert_operand()
[all …]
Daarch64-asm.c62 aarch64_ins_regno (const aarch64_operand *self, const aarch64_opnd_info *info, in aarch64_ins_regno() argument
66 insert_field (self->fields[0], code, info->reg.regno, 0); in aarch64_ins_regno()
74 aarch64_ins_reglane (const aarch64_operand *self, const aarch64_opnd_info *info, in aarch64_ins_reglane() argument
78 insert_field (self->fields[0], code, info->reglane.regno, inst->opcode->mask); in aarch64_ins_reglane()
131 aarch64_ins_reglist (const aarch64_operand *self, const aarch64_opnd_info *info, in aarch64_ins_reglist() argument
136 insert_field (self->fields[0], code, info->reglist.first_regno, 0); in aarch64_ins_reglist()
145 aarch64_ins_ldst_reglist (const aarch64_operand *self ATTRIBUTE_UNUSED, in aarch64_ins_ldst_reglist()
188 aarch64_ins_ldst_reglist_r (const aarch64_operand *self ATTRIBUTE_UNUSED, in aarch64_ins_ldst_reglist_r()
213 aarch64_ins_ldst_elemlist (const aarch64_operand *self ATTRIBUTE_UNUSED, in aarch64_ins_ldst_elemlist()
262 aarch64_ins_advsimd_imm_shift (const aarch64_operand *self ATTRIBUTE_UNUSED, in aarch64_ins_advsimd_imm_shift()
[all …]
Daarch64-dis-2.c8948 aarch64_extract_operand (const aarch64_operand *self, in aarch64_extract_operand() argument
8953 int key = self - aarch64_operands; in aarch64_extract_operand()
8980 return aarch64_ext_regno (self, info, code, inst); in aarch64_extract_operand()
8982 return aarch64_ext_regrt_sysins (self, info, code, inst); in aarch64_extract_operand()
8984 return aarch64_ext_regno_pair (self, info, code, inst); in aarch64_extract_operand()
8986 return aarch64_ext_reg_extended (self, info, code, inst); in aarch64_extract_operand()
8988 return aarch64_ext_reg_shifted (self, info, code, inst); in aarch64_extract_operand()
8990 return aarch64_ext_ft (self, info, code, inst); in aarch64_extract_operand()
8994 return aarch64_ext_reglane (self, info, code, inst); in aarch64_extract_operand()
8996 return aarch64_ext_reglist (self, info, code, inst); in aarch64_extract_operand()
[all …]
Daarch64-dis.c219 aarch64_ext_regno (const aarch64_operand *self, aarch64_opnd_info *info, in aarch64_ext_regno() argument
223 info->reg.regno = extract_field (self->fields[0], code, 0); in aarch64_ext_regno()
228 aarch64_ext_regno_pair (const aarch64_operand *self ATTRIBUTE_UNUSED, aarch64_opnd_info *info, in aarch64_ext_regno_pair()
240 aarch64_ext_regrt_sysins (const aarch64_operand *self, aarch64_opnd_info *info, in aarch64_ext_regrt_sysins() argument
244 info->reg.regno = extract_field (self->fields[0], code, 0); in aarch64_ext_regrt_sysins()
258 aarch64_ext_reglane (const aarch64_operand *self, aarch64_opnd_info *info, in aarch64_ext_reglane() argument
263 info->reglane.regno = extract_field (self->fields[0], code, in aarch64_ext_reglane()
333 aarch64_ext_reglist (const aarch64_operand *self, aarch64_opnd_info *info, in aarch64_ext_reglist() argument
338 info->reglist.first_regno = extract_field (self->fields[0], code, 0); in aarch64_ext_reglist()
346 aarch64_ext_ldst_reglist (const aarch64_operand *self ATTRIBUTE_UNUSED, in aarch64_ext_ldst_reglist()
[all …]
/toolchain/binutils/binutils-2.25/gprof/
Dutils.c43 print_name_only (Sym *self) in print_name_only() argument
45 const char *name = self->name; in print_name_only()
61 if ((line_granularity || inline_file_names) && self->file) in print_name_only()
63 filename = self->file->name; in print_name_only()
73 filename = self->file->name; in print_name_only()
78 sprintf (buf, " (%s:%d @ %lx)", filename, self->line_num, in print_name_only()
79 (unsigned long) self->addr); in print_name_only()
83 sprintf (buf, " (%s:%d)", filename, self->line_num); in print_name_only()
92 DBG (DFNDEBUG, printf ("{%d} ", self->cg.top_order)); in print_name_only()
93 DBG (PROPDEBUG, printf ("%4.0f%% ", 100.0 * self->cg.prop.fract)); in print_name_only()
[all …]
Dbsd_callg_bl.m5 The sum of self and descendents is the major sort
17 self the number of seconds spent in this function
27 self the number of times this function calls itself
40 self* the number of seconds of this function's self time
67 self* the number of seconds of this child's self time
95 represent the self time and descendent time of the
Dutils.h23 extern int print_name_only (Sym * self);
24 extern void print_name (Sym * self);
Dcg_arcs.c266 cyc->cg.prop.self = cyc->cg.prop.fract * cyc->hist.time; in cycle_time()
518 child->cg.prop.self = child->hist.time * child->cg.prop.fract; in propagate_flags()
519 print_time += child->cg.prop.self; in propagate_flags()
526 child->hist.time, child->cg.prop.self, print_time)); in propagate_flags()
544 diff = (left->cg.prop.self + left->cg.prop.child) in cmp_total()
545 - (right->cg.prop.self + right->cg.prop.child); in cmp_total()
618 parent->cg.prop.self = 0.0; in cg_assemble()
Dflat_bl.m8 self the number of seconds accounted for by this
15 self the average number of milliseconds spent in this
Dcg_print.c124 100 * (cyc->cg.prop.self + cyc->cg.prop.child) / print_time, in print_cycle()
125 cyc->cg.prop.self / hz, cyc->cg.prop.child / hz, cyc->ncalls); in print_cycle()
141 double left_time = left->cg.prop.self + left->cg.prop.child; in cmp_member()
142 double right_time = right->cg.prop.self + right->cg.prop.child; in cmp_member()
202 "", "", member->cg.prop.self / hz, member->cg.prop.child / hz, in print_members()
478 100 * (np->cg.prop.self + np->cg.prop.child) / print_time, in print_line()
479 np->cg.prop.self / hz, np->cg.prop.child / hz); in print_line()
518 && parent->cg.self_calls == 0 && parent->cg.prop.self == 0 in cg_print()
Dfsf_callg_bl.m20 self This is the total amount of time spent in this function.
38 self This is the amount of time that was propagated directly
60 self This is the amount of time that was propagated directly
Dsymtab.h85 double self; /* How much self time propagates. */ member
Dgprof.texi306 % cumulative self self total
936 % cumulative self self total
974 @samp{self seconds} field. Each of the other four samples
980 the @samp{self seconds} field for
986 @samp{self seconds} field is @samp{0.00}) didn't appear
1006 @item self seconds
1016 @item self ms/call
1029 field alphabetically after the @dfn{self seconds} and @dfn{calls}
1050 index % time self children called name
1114 index % time self children called name
[all …]
Dsymtab.c46 sym->cg.prop.self = 0.0; in sym_init()
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
Dmicromips@branch-self.d2 #name: MIPS branches to self
4 #source: branch-self.s
6 # Test various ways to request a branch to self (microMIPS).
/toolchain/binutils/binutils-2.25/include/opcode/
Dia64.h360 const char *(*insert) (const struct ia64_operand *self, ia64_insn value,
367 const char *(*extract) (const struct ia64_operand *self, ia64_insn code,
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
Drel-2.s1 ! Like rel-1.s, but using "$", not "datalabel $" as self expression. It's
Drel-4.s2 ! as self expression.
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
Dselftest.d5 # Test the assembler self-test mode on some instructions that
Dselftest.s1 # Use self-test mode to verify that all the expected control register
/toolchain/binutils/binutils-2.25/gprof/po/
Dfi.po187 # _("index"), _("%time"), _("self"), _("descendants"),
188 # _("called"), _("self"), _("name"), _("index"));
195 msgid "self"
212 msgid "index %% time self children called name\n"
542 msgid "self "
Dgprof.pot167 msgid "self"
184 msgid "index %% time self children called name\n"
489 msgid "self "
Dja.po174 msgid "self"
191 msgid "index %% time self children called name\n"
498 msgid "self "
Dhu.po189 msgid "self"
206 msgid "index %% time self children called name\n"
207 msgstr "index %% time self gyermekek meghívott név\n"
534 msgid "self "

123