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

  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 60 Value *DvdXor = Builder.CreateXor(Dividend, DividendSign);
61 Value *DvsXor = Builder.CreateXor(Divisor, DivisorSign);
65 Value *Xored = Builder.CreateXor(URem, DividendSign);
133 Value *Tmp2 = Builder.CreateXor(Tmp, Dividend);
135 Value *Tmp3 = Builder.CreateXor(Tmp1, Divisor);
137 Value *Q_Sgn = Builder.CreateXor(Tmp1, Tmp);
139 Value *Tmp4 = Builder.CreateXor(Q_Mag, Q_Sgn);
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 151 BinOp = Builder->CreateXor(NewLHS, NewRHS);
175 return BinaryOperator::CreateXor(And, Together);
227 return BinaryOperator::CreateXor(NewAnd, AndRHS);
    [all...]
InstCombineCasts.cpp 606 In = Builder->CreateXor(In, One, In->getName()+".not");
653 In = Builder->CreateXor(In, One);
683 Value *Result = Builder->CreateXor(LHS, RHS);
695 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineSelect.cpp 342 V = Builder->CreateXor(V, *C2);
818 V = Builder->CreateXor(V, ValC);
    [all...]
InstCombineCompares.cpp     [all...]
InstCombineSimplifyDemanded.cpp 399 Instruction *NewXor = BinaryOperator::CreateXor(NewAnd, XorC);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 72 Res = Builder.CreateXor(Orig, Val);
  /external/llvm/include/llvm/IR/
NoFolder.h 143 Instruction *CreateXor(Constant *LHS, Constant *RHS) const {
144 return BinaryOperator::CreateXor(LHS, RHS);
ConstantFolder.h 93 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
IRBuilder.h     [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 105 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 302 LSDA = Builder.CreateXor(LSDA, Val);
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 361 return Builder.CreateXor(Loaded, Inc, "new");
  /external/llvm/lib/IR/
AutoUpgrade.cpp 467 Value *NotSel = Builder.CreateXor(Sel, MinusOne);
    [all...]
Core.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 493 llvm::Value *A0 = Builder.CreateMul(Builder.CreateXor(Low, High), KMul);
494 llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
495 llvm::Value *B0 = Builder.CreateMul(Builder.CreateXor(High, A1), KMul);
496 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
    [all...]
CGExprScalar.cpp 491 return Builder.CreateXor(Ops.LHS, Ops.RHS, "xor");
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 531 milliseconds