mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Implement two constructor functions for "unary" instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
589fda514c
commit
a9261ff5b7
@ -6,6 +6,7 @@
|
||||
|
||||
#include "llvm/iOperators.h"
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/Constants.h"
|
||||
using std::cerr;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -40,6 +41,18 @@ BinaryOperator *BinaryOperator::create(BinaryOps Op, Value *S1, Value *S2,
|
||||
}
|
||||
}
|
||||
|
||||
BinaryOperator *BinaryOperator::createNeg(Value *Op, const std::string &Name) {
|
||||
return new GenericBinaryInst(Instruction::Sub,
|
||||
Constant::getNullValue(Op->getType()), Op, Name);
|
||||
}
|
||||
|
||||
BinaryOperator *BinaryOperator::createNot(Value *Op, const std::string &Name) {
|
||||
return new GenericBinaryInst(Instruction::Xor, Op,
|
||||
ConstantIntegral::getAllOnesValue(Op->getType()),
|
||||
Name);
|
||||
}
|
||||
|
||||
|
||||
// swapOperands - Exchange the two operands to this instruction. This
|
||||
// instruction is safe to use on any binary instruction and does not
|
||||
// modify the semantics of the instruction. If the instruction is
|
||||
|
Loading…
x
Reference in New Issue
Block a user