| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 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 246 m_value.expr.opcodes = opcodes; in SetIsDWARFExpression() 281 *opcodes = m_value.expr.opcodes; in GetDWARFExpr() 284 *opcodes = nullptr; in GetDWARFExpr() 291 return m_value.expr.opcodes; in GetDWARFExpressionBytes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lld/MachO/ |
| H A D | SyntheticSections.cpp | 300 opcodes.push_back( in encodeBinding() 312 opcodes.push_back( in encodeBinding() 330 opcodes[pWrite].data = opcodes[i].data; in optimizeOpcodes() 333 opcodes[pWrite] = opcodes[i - 1]; in optimizeOpcodes() 336 if (i == opcodes.size()) in optimizeOpcodes() 337 opcodes[pWrite] = opcodes[i - 1]; in optimizeOpcodes() 345 (opcodes[i].data == opcodes[i - 1].data)) { in optimizeOpcodes() 348 opcodes[pWrite].data = opcodes[i].data; in optimizeOpcodes() 352 (opcodes[i].data == opcodes[i - 1].data)) { in optimizeOpcodes() 357 opcodes[pWrite] = opcodes[i - 1]; in optimizeOpcodes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | DWARFExpression.cpp | 958 if (opcodes.GetByteSize() == 0) { in Evaluate() 1004 while (opcodes.ValidOffset(offset)) { in Evaluate() 1183 uint8_t size = opcodes.GetU8(&offset); in Evaluate() 1763 if (opcodes.ValidOffset(new_offset)) in Evaluate() 2018 reg_num = opcodes.GetULEB128(&offset); in Evaluate() 2081 reg_num = opcodes.GetULEB128(&offset); in Evaluate() 2731 DataExtractor opcodes; in MatchesOperand() local 2746 opcodes = std::move(*expr); in MatchesOperand() 2750 opcodes = m_data; in MatchesOperand() 2787 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | UnwindPlan.cpp | 44 return !memcmp(m_location.expr.opcodes, rhs.m_location.expr.opcodes, in operator ==() 55 const uint8_t *opcodes, uint32_t len) { in SetAtDWARFExpression() argument 57 m_location.expr.opcodes = opcodes; in SetAtDWARFExpression() 64 const uint8_t *opcodes, uint32_t len) { in SetIsDWARFExpression() argument 66 m_location.expr.opcodes = opcodes; in SetIsDWARFExpression() 149 s, llvm::makeArrayRef(m_location.expr.opcodes, m_location.expr.length), in Dump() 182 return !memcmp(m_value.expr.opcodes, rhs.m_value.expr.opcodes, in operator ==() 204 llvm::makeArrayRef(m_value.expr.opcodes, m_value.expr.length), in Dump()
|
| /freebsd-13.1/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_data_sprom_subr.c | 303 size_t opcodes; in bhnd_sprom_opcode_init_entry() local 326 opcodes = (state->input - state->layout->bindings); in bhnd_sprom_opcode_init_entry() 327 if (opcodes > UINT16_MAX) { in bhnd_sprom_opcode_init_entry() 329 "%zu\n", opcodes); in bhnd_sprom_opcode_init_entry() 332 entry->opcodes = opcodes; in bhnd_sprom_opcode_init_entry() 349 BHND_NV_ASSERT(entry->opcodes < state->layout->bindings_size, in bhnd_sprom_opcode_seek() 357 state->input = state->layout->bindings + entry->opcodes; in bhnd_sprom_opcode_seek()
|
| H A D | bhnd_nvram_data_spromvar.h | 151 uint16_t opcodes; /**< SPROM opcode offset */ member
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 84 // set of opcodes. 165 // Check that the instruction opcode is one of the opcodes in set `Opcodes`. 213 // `opcodes` list, and each case is associated with MCStatement `caseStmt`. 214 class MCOpcodeSwitchCase<list<Instruction> opcodes, MCStatement caseStmt> { 215 list<Instruction> Opcodes = opcodes; 282 // a) MI's opcode is in the `opcodes` set, and 294 class InstructionEquivalenceClass<list<Instruction> opcodes, 297 list<Instruction> Opcodes = opcodes; 308 class DepBreakingClass<list<Instruction> opcodes, MCInstPredicate pred, 310 : InstructionEquivalenceClass<opcodes, pred, BrokenDeps>;
|
| H A D | TargetSchedule.td | 18 // class. Target hooks allow subtargets to associate opcodes with 36 // opcodes. This overrides any SchedReadWrite types or 73 // HighLatency with groups of opcodes. 424 // Map a set of opcodes to a list of SchedReadWrite types. This allows 552 // the maximum number of opcodes that can be retired every cycle.
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Opcodes.td | 9 // Helper file used to generate opcodes, the interpreter and the disassembler. 89 // Record describing all opcodes. 109 // Jump opcodes 387 // Comparison opcodes.
|
| /freebsd-13.1/sys/contrib/libsodium/ |
| H A D | configure.ac | 438 # error NativeClient detected - Avoiding AVX opcodes 454 # error NativeClient detected - Avoiding AVX2 opcodes 469 # error NativeClient detected - Avoiding AVX2 opcodes 487 # error NativeClient detected - Avoiding AVX512F opcodes 507 # error NativeClient detected - Avoiding AESNI opcodes 527 # error NativeClient detected - Avoiding RDRAND opcodes 632 AC_MSG_CHECKING(whether we can assemble AVX opcodes) 646 AC_DEFINE([HAVE_AVX_ASM], [1], [AVX opcodes are supported])
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyOps.def | 9 // This file defines the list of core opcodes for the Thread Safety
|
| /freebsd-13.1/sys/netpfil/ipfw/nat64/ |
| H A D | nat64clat_control.c | 554 static struct opcode_obj_rewrite opcodes[] = { variable 589 IPFW_ADD_OBJ_REWRITER(first, opcodes); in nat64clat_init() 597 IPFW_DEL_OBJ_REWRITER(last, opcodes); in nat64clat_uninit()
|
| H A D | nat64stl_control.c | 559 static struct opcode_obj_rewrite opcodes[] = { variable 594 IPFW_ADD_OBJ_REWRITER(first, opcodes); in nat64stl_init() 602 IPFW_DEL_OBJ_REWRITER(last, opcodes); in nat64stl_uninit()
|
| H A D | nat64lsn_control.c | 881 static struct opcode_obj_rewrite opcodes[] = { variable 918 IPFW_ADD_OBJ_REWRITER(first, opcodes); in nat64lsn_init() 926 IPFW_DEL_OBJ_REWRITER(last, opcodes); in nat64lsn_uninit()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | DWARFExpression.h | 204 lldb::ModuleSP opcode_ctx, const DataExtractor &opcodes,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiSchedule.td | 34 // Allow scheduler to assign default model to any unrecognized opcodes.
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86SchedPredicates.td | 17 // the expected instruction opcodes, because different processors may implement
|
| H A D | X86InstrFMA.td | 17 // For all FMA opcodes declared in fma3p_rm_* and fma3s_rm_* multiclasses 168 // All source register operands of FMA opcodes defined in fma3s_rm multiclass 176 // defining FMA3 opcodes above. 259 // All of the FMA*_Int opcodes are defined as commutable here.
|
| H A D | X86InstrCMovSetCC.td | 123 // here http://www.rcollins.org/secrets/opcodes/SALC.html
|
| /freebsd-13.1/contrib/diff/ |
| H A D | ABOUT-NLS | 285 opcodes | [] | 422 opcodes | [] | 559 opcodes | [] [] | 696 opcodes | [] [] | 6
|
| /freebsd-13.1/sys/netpfil/ipfw/nptv6/ |
| H A D | nptv6.c | 978 static struct opcode_obj_rewrite opcodes[] = { variable 1016 IPFW_ADD_OBJ_REWRITER(first, opcodes); in nptv6_init() 1026 IPFW_DEL_OBJ_REWRITER(last, opcodes); in nptv6_uninit()
|
| /freebsd-13.1/contrib/llvm-project/lldb/docs/design/ |
| H A D | overview.rst | 109 promotion, new opcodes needed for evaluating expressions with symbolic variable 122 a DWARF expression that contains simple opcodes that can be quickly
|
| /freebsd-13.1/sys/netpfil/ipfw/ |
| H A D | ip_fw_table.c | 2928 static struct opcode_obj_rewrite opcodes[] = { variable 3051 for (kidx = 0, rw = opcodes; in ipfw_switch_tables_namespace() 3052 rw < opcodes + nitems(opcodes); rw++) { in ipfw_switch_tables_namespace() 3315 IPFW_DEL_OBJ_REWRITER(last, opcodes); in ipfw_destroy_tables() 3353 IPFW_ADD_OBJ_REWRITER(first, opcodes); in ipfw_init_tables()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | TargetOpcodes.def | 9 // This file defines the target independent instruction opcodes. 223 /// The following generic opcodes are not supposed to appear after ISel. 774 /// generic opcodes.
|
| /freebsd-13.1/sys/powerpc/powerpc/ |
| H A D | db_disasm.c | 118 const struct opcode opcodes[] = { variable 987 dis_ppc(opcodes, instr, loc); in op_base()
|