Lines Matching refs:Operand

1166 Instruction::Operand Instruction::Operand::BuildRegister(ConstString &r) {  in BuildRegister()
1167 Operand ret; in BuildRegister()
1173 Instruction::Operand Instruction::Operand::BuildImmediate(lldb::addr_t imm, in BuildImmediate()
1175 Operand ret; in BuildImmediate()
1182 Instruction::Operand Instruction::Operand::BuildImmediate(int64_t imm) { in BuildImmediate()
1183 Operand ret; in BuildImmediate()
1195 Instruction::Operand
1196 Instruction::Operand::BuildDereference(const Operand &ref) { in BuildDereference()
1197 Operand ret; in BuildDereference()
1203 Instruction::Operand Instruction::Operand::BuildSum(const Operand &lhs, in BuildSum()
1204 const Operand &rhs) { in BuildSum()
1205 Operand ret; in BuildSum()
1211 Instruction::Operand Instruction::Operand::BuildProduct(const Operand &lhs, in BuildProduct()
1212 const Operand &rhs) { in BuildProduct()
1213 Operand ret; in BuildProduct()
1219 std::function<bool(const Instruction::Operand &)>
1221 std::function<bool(const Instruction::Operand &)> base, in MatchBinaryOp()
1222 std::function<bool(const Instruction::Operand &)> left, in MatchBinaryOp()
1223 std::function<bool(const Instruction::Operand &)> right) { in MatchBinaryOp()
1224 return [base, left, right](const Instruction::Operand &op) -> bool { in MatchBinaryOp()
1231 std::function<bool(const Instruction::Operand &)>
1233 std::function<bool(const Instruction::Operand &)> base, in MatchUnaryOp()
1234 std::function<bool(const Instruction::Operand &)> child) { in MatchUnaryOp()
1235 return [base, child](const Instruction::Operand &op) -> bool { in MatchUnaryOp()
1240 std::function<bool(const Instruction::Operand &)>
1242 return [&info](const Instruction::Operand &op) { in MatchRegOp()
1243 return (op.m_type == Instruction::Operand::Type::Register && in MatchRegOp()
1249 std::function<bool(const Instruction::Operand &)>
1251 return [&reg](const Instruction::Operand &op) { in FetchRegOp()
1252 if (op.m_type != Instruction::Operand::Type::Register) { in FetchRegOp()
1260 std::function<bool(const Instruction::Operand &)>
1262 return [imm](const Instruction::Operand &op) { in MatchImmOp()
1263 return (op.m_type == Instruction::Operand::Type::Immediate && in MatchImmOp()
1269 std::function<bool(const Instruction::Operand &)>
1271 return [&imm](const Instruction::Operand &op) { in FetchImmOp()
1272 if (op.m_type != Instruction::Operand::Type::Immediate) { in FetchImmOp()
1284 std::function<bool(const Instruction::Operand &)>
1285 lldb_private::OperandMatchers::MatchOpType(Instruction::Operand::Type type) { in MatchOpType()
1286 return [type](const Instruction::Operand &op) { return op.m_type == type; }; in MatchOpType()