Lines Matching refs:BinOp
1244 void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val, in Init()
1264 AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, in AtomicRMWInst()
1275 AtomicRMWInst::AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, in AtomicRMWInst()
1943 Value *BinaryOperator::getNegArgument(Value *BinOp) { in getNegArgument() argument
1944 return cast<BinaryOperator>(BinOp)->getOperand(1); in getNegArgument()
1947 const Value *BinaryOperator::getNegArgument(const Value *BinOp) { in getNegArgument() argument
1948 return getNegArgument(const_cast<Value*>(BinOp)); in getNegArgument()
1951 Value *BinaryOperator::getFNegArgument(Value *BinOp) { in getFNegArgument() argument
1952 return cast<BinaryOperator>(BinOp)->getOperand(1); in getFNegArgument()
1955 const Value *BinaryOperator::getFNegArgument(const Value *BinOp) { in getFNegArgument() argument
1956 return getFNegArgument(const_cast<Value*>(BinOp)); in getFNegArgument()
1959 Value *BinaryOperator::getNotArgument(Value *BinOp) { in getNotArgument() argument
1960 assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!"); in getNotArgument()
1961 BinaryOperator *BO = cast<BinaryOperator>(BinOp); in getNotArgument()
1970 const Value *BinaryOperator::getNotArgument(const Value *BinOp) { in getNotArgument() argument
1971 return getNotArgument(const_cast<Value*>(BinOp)); in getNotArgument()