Lines Matching refs:Operand

1211 Instruction::Operand Instruction::Operand::BuildRegister(ConstString &r) {  in BuildRegister()
1212 Operand ret; in BuildRegister()
1218 Instruction::Operand Instruction::Operand::BuildImmediate(lldb::addr_t imm, in BuildImmediate()
1220 Operand ret; in BuildImmediate()
1227 Instruction::Operand Instruction::Operand::BuildImmediate(int64_t imm) { in BuildImmediate()
1228 Operand ret; in BuildImmediate()
1240 Instruction::Operand
1241 Instruction::Operand::BuildDereference(const Operand &ref) { in BuildDereference()
1242 Operand ret; in BuildDereference()
1248 Instruction::Operand Instruction::Operand::BuildSum(const Operand &lhs, in BuildSum()
1249 const Operand &rhs) { in BuildSum()
1250 Operand ret; in BuildSum()
1256 Instruction::Operand Instruction::Operand::BuildProduct(const Operand &lhs, in BuildProduct()
1257 const Operand &rhs) { in BuildProduct()
1258 Operand ret; in BuildProduct()
1264 std::function<bool(const Instruction::Operand &)>
1266 std::function<bool(const Instruction::Operand &)> base, in MatchBinaryOp()
1267 std::function<bool(const Instruction::Operand &)> left, in MatchBinaryOp()
1268 std::function<bool(const Instruction::Operand &)> right) { in MatchBinaryOp()
1269 return [base, left, right](const Instruction::Operand &op) -> bool { in MatchBinaryOp()
1276 std::function<bool(const Instruction::Operand &)>
1278 std::function<bool(const Instruction::Operand &)> base, in MatchUnaryOp()
1279 std::function<bool(const Instruction::Operand &)> child) { in MatchUnaryOp()
1280 return [base, child](const Instruction::Operand &op) -> bool { in MatchUnaryOp()
1285 std::function<bool(const Instruction::Operand &)>
1287 return [&info](const Instruction::Operand &op) { in MatchRegOp()
1288 return (op.m_type == Instruction::Operand::Type::Register && in MatchRegOp()
1294 std::function<bool(const Instruction::Operand &)>
1296 return [&reg](const Instruction::Operand &op) { in FetchRegOp()
1297 if (op.m_type != Instruction::Operand::Type::Register) { in FetchRegOp()
1305 std::function<bool(const Instruction::Operand &)>
1307 return [imm](const Instruction::Operand &op) { in MatchImmOp()
1308 return (op.m_type == Instruction::Operand::Type::Immediate && in MatchImmOp()
1314 std::function<bool(const Instruction::Operand &)>
1316 return [&imm](const Instruction::Operand &op) { in FetchImmOp()
1317 if (op.m_type != Instruction::Operand::Type::Immediate) { in FetchImmOp()
1329 std::function<bool(const Instruction::Operand &)>
1330 lldb_private::OperandMatchers::MatchOpType(Instruction::Operand::Type type) { in MatchOpType()
1331 return [type](const Instruction::Operand &op) { return op.m_type == type; }; in MatchOpType()