| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 154 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/ |
| H A D | DWARFExpression.cpp | 537 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/ |
| H A D | fnchange.lst | 262 @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/ |
| H A D | Opcode.t | 25 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/bfd/ |
| H A D | dep-in.sed | 10 s!@SRCDIR@/../opcodes!$(srcdir)/../opcodes!g 11 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | dep-in.sed | 11 s!@SRCDIR@/../opcodes!$(srcdir)/../opcodes!g 12 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
|
| H A D | xtensa-isa.c | 247 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/llvm/lld/MachO/ |
| H A D | SyntheticSections.cpp | 438 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/ |
| H A D | dep-in.sed | 12 s!@SRCDIR@/\.\./opcodes!$(srcdir)/../opcodes!g 13 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | dep-in.sed | 11 s!@SRCDIR@/\.\./opcodes!$(srcdir)/../opcodes!g 12 s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | UnwindPlan.cpp | 46 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/ |
| H A D | gfx11_delay.rst | 51 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-2.17/binutils/ |
| H A D | makefile.vms-in | 34 OPCODES_DEP = [-.opcodes]libopcodes.olb 35 OPCODES = [-.opcodes]libopcodes.olb/lib 86 [-.opcodes]libopcodes.olb: 87 $(CD) [-.opcodes]
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | makefile.vms-in | 34 OPCODES_DEP = [-.opcodes]libopcodes.olb 35 OPCODES = [-.opcodes]libopcodes.olb/lib 86 [-.opcodes]libopcodes.olb: 87 $(CD) [-.opcodes]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-m68hc11.c | 596 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-2.17/gas/config/ |
| H A D | tc-m68hc11.c | 597 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/include/opcode/ |
| H A D | arm.h | 219 static struct opcode opcodes[] = { variable 294 #define N_OPCODES (sizeof opcodes / sizeof opcodes[0])
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/ |
| H A D | Makefile.def | 300 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 …]
|
| H A D | makefile.vms | 27 $(CD) [-.opcodes] 62 $(CD) [-.opcodes]
|
| H A D | Makefile.in | 396 @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/ |
| H A D | makefile.vms | 27 $(CD) [-.opcodes] 62 $(CD) [-.opcodes]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/doc/ |
| H A D | c-m68hc11.texi | 22 * 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/ |
| H A D | c-m68hc11.texi | 22 * 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/opcodes/ |
| H A D | mmix-dis.c | 150 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()
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | mmix-dis.c | 156 static const struct mmix_opcode **opcodes = NULL; local 159 if (opcodes == NULL) 160 opcodes = xcalloc (256, sizeof (struct mmix_opcode *)); 162 opcodep = opcodes[opcode_part]; 173 opcodes[opcode_part] = opcodep;
|