Lines Matching refs:opcodes

640                                        const DataExtractor &opcodes,  in Evaluate_DW_OP_entry_value()  argument
792 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
793 const void *subexpr_data = opcodes.GetData(&opcode_offset, subexpr_len); in Evaluate_DW_OP_entry_value()
953 lldb::ModuleSP module_sp, const DataExtractor &opcodes, in Evaluate() argument
958 if (opcodes.GetByteSize() == 0) { in Evaluate()
995 llvm::APInt(8 * opcodes.GetAddressByteSize(), v, is_signed), in Evaluate()
1004 while (opcodes.ValidOffset(offset)) { in Evaluate()
1006 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
1026 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1183 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1335 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1338 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1341 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1344 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1347 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1350 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1353 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1356 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1361 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1364 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1410 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
1665 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1761 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1763 if (opcodes.ValidOffset(new_offset)) in Evaluate()
1788 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1792 if (opcodes.ValidOffset(new_offset)) in Evaluate()
2018 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2066 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2081 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2085 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2099 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2145 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2293 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2294 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
2335 const uint32_t len = opcodes.GetULEB128(&offset); in Evaluate()
2336 const void *data = opcodes.GetData(&offset, len); in Evaluate()
2451 const uint64_t die_offset = opcodes.GetULEB128(&offset); in Evaluate()
2599 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2619 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2626 if (!Evaluate_DW_OP_entry_value(stack, exe_ctx, reg_ctx, opcodes, offset, in Evaluate()
2731 DataExtractor opcodes; in MatchesOperand() local
2746 opcodes = std::move(*expr); in MatchesOperand()
2750 opcodes = m_data; in MatchesOperand()
2754 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
2757 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2787 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2790 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2793 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2794 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()