HomeSort by relevance Sort by last modified time
    Searched refs:CreateXor (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 68 Res = Builder.CreateXor(Orig, Val);
  /external/llvm/include/llvm/Support/
NoFolder.h 143 Instruction *CreateXor(Constant *LHS, Constant *RHS) const {
144 return BinaryOperator::CreateXor(LHS, RHS);
IRBuilder.h 696 Value *CreateXor(Value *LHS, Value *RHS, const Twine &Name = "") {
699 return Insert(Folder.CreateXor(LC, RC), Name);
700 return Insert(BinaryOperator::CreateXor(LHS, RHS), Name);
702 Value *CreateXor(Value *LHS, const APInt &RHS, const Twine &Name = "") {
703 return CreateXor(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
705 Value *CreateXor(Value *LHS, uint64_t RHS, const Twine &Name = "") {
706 return CreateXor(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
    [all...]
ConstantFolder.h 93 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
TargetFolder.h 105 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 209 return BinaryOperator::CreateXor(And, Together);
261 return BinaryOperator::CreateXor(NewAnd, AndRHS);
    [all...]
InstCombineCasts.cpp 526 In = Builder->CreateXor(In, One, In->getName()+".not");
576 In = Builder->CreateXor(In, One);
607 Value *Result = Builder->CreateXor(LHS, RHS);
619 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
    [all...]
InstCombineAddSub.cpp 102 return BinaryOperator::CreateXor(LHS, RHS);
147 return BinaryOperator::CreateXor(LHS, RHS);
549 return BinaryOperator::CreateXor(Op0, Op1);
InstCombineCompares.cpp     [all...]
InstCombineSelect.cpp 641 V = Builder->CreateXor(V, ValC);
    [all...]
InstCombineSimplifyDemanded.cpp 358 Instruction *NewXor = BinaryOperator::CreateXor(NewAnd, XorC);
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 390 static const MCBinaryExpr *CreateXor(const MCExpr *LHS, const MCExpr *RHS,
  /external/mesa3d/src/pixelflinger2/
llvm_scanline.cpp 586 z = builder.CreateXor(z, builder.getInt32(0x7fffffff));
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 449 return Builder.CreateXor(Ops.LHS, Ops.RHS, "xor");
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]

Completed in 335 milliseconds