Home
last modified time | relevance | path

Searched refs:opcodes (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/
DUnwindPlan.h154 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr() argument
156 *opcodes = m_location.expr.opcodes; in GetDWARFExpr()
159 *opcodes = nullptr; in GetDWARFExpr()
164 void SetAtDWARFExpression(const uint8_t *opcodes, uint32_t len);
166 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len);
170 return m_location.expr.opcodes; in GetDWARFExpressionBytes()
192 const uint8_t *opcodes; member
244 void SetIsDWARFExpression(const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression() argument
246 m_value.expr.opcodes = opcodes; in SetIsDWARFExpression()
279 void GetDWARFExpr(const uint8_t **opcodes, uint16_t &len) const { in GetDWARFExpr() argument
[all …]
/openbsd/src/gnu/llvm/lldb/source/Expression/
DDWARFExpression.cpp537 const DataExtractor &opcodes, in Evaluate_DW_OP_entry_value() argument
689 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
690 const void *subexpr_data = opcodes.GetData(&opcode_offset, subexpr_len); in Evaluate_DW_OP_entry_value()
858 lldb::ModuleSP module_sp, const DataExtractor &opcodes, in Evaluate() argument
863 if (opcodes.GetByteSize() == 0) { in Evaluate()
902 llvm::APInt(8 * opcodes.GetAddressByteSize(), v, is_signed), in Evaluate()
911 while (opcodes.ValidOffset(offset)) { in Evaluate()
913 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
933 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1082 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/config/djgpp/
Dfnchange.lst262 @V@/opcodes/ChangeLog-9297 @V@/opcodes/ChangeLog.9297
263 @V@/opcodes/ChangeLog-9899 @V@/opcodes/ChangeLog.9899
264 @V@/opcodes/ChangeLog-0001 @V@/opcodes/ChangeLog.0001
265 @V@/opcodes/ChangeLog-0203 @V@/opcodes/ChangeLog.0203
266 @V@/opcodes/ia64-opc-a.c @V@/opcodes/ia64opca.c
267 @V@/opcodes/ia64-opc-b.c @V@/opcodes/ia64opcb.c
268 @V@/opcodes/ia64-opc-d.c @V@/opcodes/ia64opcd.c
269 @V@/opcodes/ia64-opc-f.c @V@/opcodes/ia64opcf.c
270 @V@/opcodes/ia64-opc-i.c @V@/opcodes/ia64opci.c
271 @V@/opcodes/ia64-opc-m.c @V@/opcodes/ia64opcm.c
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/Opcode/t/
DOpcode.t25 opcodes opdesc opmask verify_opset
40 is (scalar @full_l1, scalar opcodes());
44 my @full_l2 = eval {opcodes()};
74 isnt(opcodes(), 0);
80 is(scalar @o1, opcodes-3);
85 is(length opmask(), int((opcodes()+7)/8));
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Ddep-in.sed11 s!@SRCDIR@/../opcodes!$(srcdir)/../opcodes!g
12 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
Dxtensa-isa.c247 isa->opname_lookup_table[n].key = isa->opcodes[n].name; in xtensa_isa_init()
721 encode_fn = intisa->opcodes[opc].encode_fns[slot_id]; in xtensa_opcode_encode()
727 intisa->opcodes[opc].name, slot, intisa->formats[fmt].name); in xtensa_opcode_encode()
740 return intisa->opcodes[opc].name; in xtensa_opcode_name()
749 if ((intisa->opcodes[opc].flags & XTENSA_OPCODE_IS_BRANCH) != 0) in xtensa_opcode_is_branch()
760 if ((intisa->opcodes[opc].flags & XTENSA_OPCODE_IS_JUMP) != 0) in xtensa_opcode_is_jump()
771 if ((intisa->opcodes[opc].flags & XTENSA_OPCODE_IS_LOOP) != 0) in xtensa_opcode_is_loop()
782 if ((intisa->opcodes[opc].flags & XTENSA_OPCODE_IS_CALL) != 0) in xtensa_opcode_is_call()
795 iclass_id = intisa->opcodes[opc].iclass_id; in xtensa_opcode_num_operands()
807 iclass_id = intisa->opcodes[opc].iclass_id; in xtensa_opcode_num_stateOperands()
[all …]
/openbsd/src/gnu/usr.bin/binutils/bfd/
Ddep-in.sed10 s!@SRCDIR@/../opcodes!$(srcdir)/../opcodes!g
11 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
/openbsd/src/gnu/llvm/lld/MachO/
DSyntheticSections.cpp438 std::vector<BindIR> &opcodes) { in encodeBinding() argument
442 opcodes.push_back( in encodeBinding()
449 opcodes.push_back({BIND_OPCODE_ADD_ADDR_ULEB, offset - lastBinding.offset}); in encodeBinding()
454 opcodes.push_back( in encodeBinding()
459 opcodes.push_back({BIND_OPCODE_DO_BIND, 0}); in encodeBinding()
464 static void optimizeOpcodes(std::vector<BindIR> &opcodes) { in optimizeOpcodes() argument
468 for (i = 1; i < opcodes.size(); ++i, ++pWrite) { in optimizeOpcodes()
469 if ((opcodes[i].opcode == BIND_OPCODE_ADD_ADDR_ULEB) && in optimizeOpcodes()
470 (opcodes[i - 1].opcode == BIND_OPCODE_DO_BIND)) { in optimizeOpcodes()
471 opcodes[pWrite].opcode = BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB; in optimizeOpcodes()
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/
Ddep-in.sed12 s!@SRCDIR@/\.\./opcodes!$(srcdir)/../opcodes!g
13 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
/openbsd/src/gnu/usr.bin/binutils/gas/
Ddep-in.sed11 s!@SRCDIR@/\.\./opcodes!$(srcdir)/../opcodes!g
12 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DUnwindPlan.cpp46 return !memcmp(m_location.expr.opcodes, rhs.m_location.expr.opcodes, in operator ==()
57 const uint8_t *opcodes, uint32_t len) { in SetAtDWARFExpression() argument
59 m_location.expr.opcodes = opcodes; in SetAtDWARFExpression()
66 const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression() argument
68 m_location.expr.opcodes = opcodes; in SetIsDWARFExpression()
151 s, llvm::ArrayRef(m_location.expr.opcodes, m_location.expr.length), in Dump()
184 return !memcmp(m_value.expr.opcodes, rhs.m_value.expr.opcodes, in operator ==()
205 DumpDWARFExpr(s, llvm::ArrayRef(m_value.expr.opcodes, m_value.expr.length), in Dump()
/openbsd/src/gnu/llvm/llvm/docs/AMDGPU/
Dgfx11_delay.rst51 VALU_DEP_2 Dependency on a previous VALU instruction, 2 opcodes back.
52 VALU_DEP_3 Dependency on a previous VALU instruction, 3 opcodes back.
53 VALU_DEP_4 Dependency on a previous VALU instruction, 4 opcodes back.
55 TRANS32_DEP_2 Dependency on a previous TRANS32 instruction, 2 opcodes back.
56 TRANS32_DEP_3 Dependency on a previous TRANS32 instruction, 3 opcodes back.
/openbsd/src/gnu/usr.bin/binutils/binutils/
Dmakefile.vms-in34 OPCODES_DEP = [-.opcodes]libopcodes.olb
35 OPCODES = [-.opcodes]libopcodes.olb/lib
86 [-.opcodes]libopcodes.olb:
87 $(CD) [-.opcodes]
/openbsd/src/gnu/usr.bin/binutils-2.17/binutils/
Dmakefile.vms-in34 OPCODES_DEP = [-.opcodes]libopcodes.olb
35 OPCODES = [-.opcodes]libopcodes.olb/lib
86 [-.opcodes]libopcodes.olb:
87 $(CD) [-.opcodes]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/
Dtc-m68hc11.c597 struct m68hc11_opcode *opcodes; in md_begin() local
606 opcodes = (struct m68hc11_opcode *) xmalloc (m68hc11_num_opcodes * in md_begin()
609 m68hc11_sorted_opcodes = opcodes; in md_begin()
615 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
616 if (opcodes[num_opcodes].name[0] == 'b' in md_begin()
617 && opcodes[num_opcodes].format & M6811_OP_JUMP_REL in md_begin()
618 && !(opcodes[num_opcodes].format & M6811_OP_BITMASK)) in md_begin()
621 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
627 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
628 opcodes[num_opcodes].name = alias_opcodes[j].alias; in md_begin()
[all …]
/openbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-m68hc11.c596 struct m68hc11_opcode *opcodes; in md_begin() local
605 opcodes = (struct m68hc11_opcode *) xmalloc (m68hc11_num_opcodes * in md_begin()
608 m68hc11_sorted_opcodes = opcodes; in md_begin()
614 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
615 if (opcodes[num_opcodes].name[0] == 'b' in md_begin()
616 && opcodes[num_opcodes].format & M6811_OP_JUMP_REL in md_begin()
617 && !(opcodes[num_opcodes].format & M6811_OP_BITMASK)) in md_begin()
620 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
626 opcodes[num_opcodes] = m68hc11_opcodes[i]; in md_begin()
627 opcodes[num_opcodes].name = alias_opcodes[j].alias; in md_begin()
[all …]
/openbsd/src/gnu/usr.bin/binutils/include/opcode/
Darm.h219 static struct opcode opcodes[] = { variable
294 #define N_OPCODES (sizeof opcodes / sizeof opcodes[0])
/openbsd/src/gnu/usr.bin/binutils-2.17/
DMakefile.def300 dependencies = { module=all-gdb; on=all-opcodes; };
319 dependencies = { module=all-binutils; on=all-opcodes; };
326 // We put install-opcodes before install-binutils because the installed
327 // binutils might be on PATH, and they might need the shared opcodes
329 dependencies = { module=install-binutils; on=install-opcodes; };
332 dependencies = { module=install-opcodes; on=install-bfd; };
335 dependencies = { module=all-gas; on=all-opcodes; };
340 dependencies = { module=all-gprof; on=all-opcodes; };
344 dependencies = { module=all-ld; on=all-opcodes; };
350 dependencies = { module=all-opcodes; on=all-bfd; };
[all …]
Dmakefile.vms27 $(CD) [-.opcodes]
62 $(CD) [-.opcodes]
DMakefile.in396 @if opcodes
398 $$r/$(HOST_SUBDIR)/opcodes/.:$$r/$(HOST_SUBDIR)/prev-opcodes/.:
399 @endif opcodes
561 maybe-configure-opcodes \
685 @if opcodes-no-bootstrap
686 all-host: maybe-all-opcodes
687 @endif opcodes-no-bootstrap
814 info-host: maybe-info-opcodes
918 dvi-host: maybe-dvi-opcodes
1022 html-host: maybe-html-opcodes
[all …]
/openbsd/src/gnu/usr.bin/binutils/gas/doc/
Dc-m68hc11.texi22 * M68HC11-opcodes:: Opcodes
100 associated to the @samp{jbra}, @samp{jbsr} and @samp{jbXX} pseudo opcodes.
107 @samp{jbXX} pseudo opcodes.
114 @cindex @samp{--print-opcodes}
115 @item --print-opcodes
116 The @samp{--print-opcodes} option prints the list of all the
125 The @samp{--generate-example} option is similar to @samp{--print-opcodes}
362 @node M68HC11-opcodes
365 @cindex M68HC11 opcodes
366 @cindex opcodes, M68HC11
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/doc/
Dc-m68hc11.texi22 * M68HC11-opcodes:: Opcodes
100 associated to the @samp{jbra}, @samp{jbsr} and @samp{jbXX} pseudo opcodes.
107 @samp{jbXX} pseudo opcodes.
114 @cindex @samp{--print-opcodes}
115 @item --print-opcodes
116 The @samp{--print-opcodes} option prints the list of all the
125 The @samp{--generate-example} option is similar to @samp{--print-opcodes}
362 @node M68HC11-opcodes
365 @cindex M68HC11 opcodes
366 @cindex opcodes, M68HC11
[all …]
/openbsd/src/gnu/usr.bin/binutils/
Dmakefile.vms27 $(CD) [-.opcodes]
62 $(CD) [-.opcodes]
Dmd5.sum3362 3f4860301a631779c7ce027dfe991eea gas/testsuite/gas/tic4x/opcodes.s
3378 247fbf4a897cfe0eb2d298bc4bf8390d gas/testsuite/gas/tic54x/all-opcodes.d
3379 16b138265d758ee38dbf89a41696f4b4 gas/testsuite/gas/tic54x/all-opcodes.s
3403 aa3b0bac4ffdf82c7a4b6121ec3fc560 gas/testsuite/gas/tic54x/opcodes.d
3404 03c7d9751c849b0f4a04ce24d181e494 gas/testsuite/gas/tic54x/opcodes.s
5728 a82559b7e9479f973af234b00d1dd944 opcodes/po/POTFILES.in
5729 d09d0ccd1b7441dcaee9549de0636fd9 opcodes/po/Make-in
5730 baba2506d17c4e2214d6fdd5868e6699 opcodes/po/de.po
5731 1b79e075af1926ef6736fa317f054702 opcodes/po/pt_BR.gmo
5732 6d3b93858658dada9e01f04ea2aa2155 opcodes/po/da.po
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/opcodes/
Dmmix-dis.c150 static const struct mmix_opcode **opcodes = NULL; in get_opcode() local
154 if (opcodes == NULL) in get_opcode()
155 opcodes = xcalloc (256, sizeof (struct mmix_opcode *)); in get_opcode()
157 opcodep = opcodes[opcode_part]; in get_opcode()
168 opcodes[opcode_part] = opcodep; in get_opcode()

12345678910>>...16