Lines Matching refs:opcodes
534 const DataExtractor &opcodes, in Evaluate_DW_OP_entry_value() argument
670 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
671 const void *subexpr_data = opcodes.GetData(&opcode_offset, subexpr_len); in Evaluate_DW_OP_entry_value()
824 lldb::ModuleSP module_sp, const DataExtractor &opcodes, in Evaluate() argument
828 if (opcodes.GetByteSize() == 0) in Evaluate()
864 llvm::APInt(8 * opcodes.GetAddressByteSize(), v, is_signed), in Evaluate()
873 while (opcodes.ValidOffset(offset)) { in Evaluate()
875 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
903 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1040 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1207 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1210 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1213 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1216 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1219 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1222 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1225 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1228 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1233 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1236 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1272 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
1428 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1489 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1494 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1499 skip_offset, opcodes.GetByteSize())); in Evaluate()
1513 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
1520 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1525 bra_offset, opcodes.GetByteSize())); in Evaluate()
1703 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
1753 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
1766 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
1771 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
1784 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
1826 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
1952 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
1953 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
1990 const uint32_t len = opcodes.GetULEB128(&offset); in Evaluate()
1991 const void *data = opcodes.GetData(&offset, len); in Evaluate()
2087 const uint64_t die_offset = opcodes.GetULEB128(&offset); in Evaluate()
2211 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2236 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2244 opcodes, offset, log)) in Evaluate()
2254 op, opcodes, offset, stack)) { in Evaluate()
2335 DataExtractor opcodes(m_data); in MatchesOperand() local
2338 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
2341 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2371 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
2374 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2377 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
2378 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()