Lines Matching refs:opcodes

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()
1258 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1261 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1264 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1267 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1270 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1273 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1276 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1279 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1284 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1287 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1333 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
1588 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1684 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1689 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1695 skip_offset, opcodes.GetByteSize()); in Evaluate()
1716 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1723 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1729 bra_offset, opcodes.GetByteSize()); in Evaluate()
1951 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
1999 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2014 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2018 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2032 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2078 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2226 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2227 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
2268 const uint32_t len = opcodes.GetULEB128(&offset); in Evaluate()
2269 const void *data = opcodes.GetData(&offset, len); in Evaluate()
2384 const uint64_t die_offset = opcodes.GetULEB128(&offset); in Evaluate()
2534 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2561 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2568 if (!Evaluate_DW_OP_entry_value(stack, exe_ctx, reg_ctx, opcodes, offset, in Evaluate()
2580 op, opcodes, offset, stack)) { in Evaluate()
2667 DataExtractor opcodes(m_data); in MatchesOperand() local
2670 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
2673 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2703 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2706 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2709 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2710 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()