Lines Matching refs:opcodes
547 const DataExtractor &opcodes, in Evaluate_DW_OP_entry_value() argument
699 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
700 const void *subexpr_data = opcodes.GetData(&opcode_offset, subexpr_len); in Evaluate_DW_OP_entry_value()
868 lldb::ModuleSP module_sp, const DataExtractor &opcodes, in Evaluate() argument
873 if (opcodes.GetByteSize() == 0) { in Evaluate()
912 llvm::APInt(8 * opcodes.GetAddressByteSize(), v, is_signed), in Evaluate()
921 while (opcodes.ValidOffset(offset)) { in Evaluate()
923 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
943 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1092 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1275 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1278 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1281 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1284 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1287 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1290 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1293 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1296 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1301 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1304 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1350 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
1609 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1705 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1710 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1716 skip_offset, opcodes.GetByteSize()); in Evaluate()
1737 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1744 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1750 bra_offset, opcodes.GetByteSize()); in Evaluate()
1972 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2020 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2035 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2039 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2053 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2099 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2247 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2248 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
2289 const uint32_t len = opcodes.GetULEB128(&offset); in Evaluate()
2290 const void *data = opcodes.GetData(&offset, len); in Evaluate()
2405 const uint64_t die_offset = opcodes.GetULEB128(&offset); in Evaluate()
2555 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2582 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2589 if (!Evaluate_DW_OP_entry_value(stack, exe_ctx, reg_ctx, opcodes, offset, in Evaluate()
2601 op, opcodes, offset, stack)) { in Evaluate()
2688 DataExtractor opcodes(m_data); in MatchesOperand() local
2691 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
2694 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2724 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2727 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2730 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2731 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()