Home
last modified time | relevance | path

Searched refs:BinaryExpr (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp242 dyn_cast<LanaiMCExpr>(BinaryExpr->getLHS())) in isHiImm16()
279 dyn_cast<LanaiMCExpr>(BinaryExpr->getLHS())) in isLoImm16()
303 dyn_cast<LanaiMCExpr>(BinaryExpr->getLHS())) in isLoImm16Signed()
354 dyn_cast<LanaiMCExpr>(BinaryExpr->getLHS())) in isLoImm21()
357 dyn_cast<MCSymbolRefExpr>(BinaryExpr->getLHS())) in isLoImm21()
479 assert(BinaryExpr && isa<LanaiMCExpr>(BinaryExpr->getLHS()) && in addLoImm16Operands()
480 cast<LanaiMCExpr>(BinaryExpr->getLHS())->getKind() == in addLoImm16Operands()
510 assert(BinaryExpr && isa<LanaiMCExpr>(BinaryExpr->getLHS()) && in addHiImm16Operands()
511 cast<LanaiMCExpr>(BinaryExpr->getLHS())->getKind() == in addHiImm16Operands()
549 assert(BinaryExpr && isa<LanaiMCExpr>(BinaryExpr->getLHS()) && in addLoImm21Operands()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiMCCodeEmitter.cpp124 const MCBinaryExpr *BinaryExpr = static_cast<const MCBinaryExpr *>(Expr); in getMachineOpValue() local
125 Expr = BinaryExpr->getLHS(); in getMachineOpValue()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumNodes.def69 NODE(BinaryExpr)
H A DItaniumDemangle.h1835 class BinaryExpr : public Node {
1841 BinaryExpr(const Node *LHS_, std::string_view InfixOperator_, in BinaryExpr() function
4461 return make<BinaryExpr>(LHS, Kind, RHS, Prec); in parseBinaryExpr()
/freebsd-14.2/contrib/bsnmp/tests/
H A Dcatch.hpp2194 class BinaryExpr : public ITransientExpression { class
2205 BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) in BinaryExpr() function in Catch::BinaryExpr
2213 auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator &&()
2220 auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ||()
2227 auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator ==()
2234 auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator !=()
2241 auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >()
2248 auto operator < ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator <()
2255 auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { in operator >=()
2317 auto operator == ( bool rhs ) -> BinaryExpr<LhsT, bool> const { in operator ==()
[all …]