Lines Matching refs:opcodes

1315     lldb::ModuleSP module_sp, const DataExtractor &opcodes,  in Evaluate()  argument
1352 if (!opcodes.ValidOffsetForDataOfSize(opcodes_offset, opcodes_length)) { in Evaluate()
1360 while (opcodes.ValidOffset(offset) && offset < end_offset) { in Evaluate()
1362 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
1383 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate()
1541 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1694 stack.push_back(Scalar((uint8_t)opcodes.GetU8(&offset))); in Evaluate()
1697 stack.push_back(Scalar((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1700 stack.push_back(Scalar((uint16_t)opcodes.GetU16(&offset))); in Evaluate()
1703 stack.push_back(Scalar((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1706 stack.push_back(Scalar((uint32_t)opcodes.GetU32(&offset))); in Evaluate()
1709 stack.push_back(Scalar((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1712 stack.push_back(Scalar((uint64_t)opcodes.GetU64(&offset))); in Evaluate()
1715 stack.push_back(Scalar((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1718 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1721 stack.push_back(Scalar(opcodes.GetSLEB128(&offset))); in Evaluate()
1775 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
2056 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
2162 int16_t skip_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
2191 int16_t bra_offset = (int16_t)opcodes.GetU16(&offset); in Evaluate()
2437 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2487 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2504 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2508 int64_t breg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2522 int64_t fbreg_offset = opcodes.GetSLEB128(&offset); in Evaluate()
2568 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2704 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2705 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
2920 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
2947 uint64_t index = opcodes.GetULEB128(&offset); in Evaluate()
3350 DataExtractor opcodes = m_data; in MatchesOperand() local
3351 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
3354 int64_t offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
3384 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()
3387 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
3390 uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset)); in MatchesOperand()
3391 offset = opcodes.GetSLEB128(&op_offset); in MatchesOperand()