Lines Matching refs:opcodes

514                                        const DataExtractor &opcodes,  in Evaluate_DW_OP_entry_value()  argument
666 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
667 const void *subexpr_data = opcodes.GetData(&opcode_offset, subexpr_len); in Evaluate_DW_OP_entry_value()
835 lldb::ModuleSP module_sp, const DataExtractor &opcodes, in Evaluate() argument
840 if (opcodes.GetByteSize() == 0) { in Evaluate()
877 llvm::APInt(8 * opcodes.GetAddressByteSize(), v, is_signed), in Evaluate()
886 while (opcodes.ValidOffset(offset)) { in Evaluate()
888 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
908 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1054 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1230 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1233 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1236 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1239 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1242 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1245 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1248 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1251 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1256 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1259 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1305 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
1560 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1656 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1661 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1667 skip_offset, opcodes.GetByteSize()); in Evaluate()
1688 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1695 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1701 bra_offset, opcodes.GetByteSize()); in Evaluate()
1923 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
1971 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
1986 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
1990 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2004 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2050 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2198 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2199 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
2240 const uint32_t len = opcodes.GetULEB128(&offset); in Evaluate()
2241 const void *data = opcodes.GetData(&offset, len); in Evaluate()
2356 const uint64_t die_offset = opcodes.GetULEB128(&offset); in Evaluate()
2504 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2524 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2531 if (!Evaluate_DW_OP_entry_value(stack, exe_ctx, reg_ctx, opcodes, offset, in Evaluate()
2624 DataExtractor opcodes(m_data); in MatchesOperand() local
2627 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
2630 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2660 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2663 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2666 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2667 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()