Home
last modified time | relevance | path

Searched refs:Xor (Results 1 – 25 of 191) sorted by relevance

12345678

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DXor.java13 public class Xor extends LogicalBinop { class
15 public Xor(NumericType type, Value dest, Value left, Value right) { in Xor() method in Xor
25 public Xor asXor() { in asXor()
/external/llvm/test/Transforms/Reassociate/
Dxor_reassoc.ll5 ; Xor reassociation general cases
65 ; Xor reassociation special cases
118 ; Xor reassociation curtail code size
156 ; Xor reassociation bugs
Dotherops.ll1 ; Reassociation should apply to Add, Mul, And, Or, & Xor
/external/libtextclassifier/util/hash/
Dfarmhash.cc666 STATIC_INLINE __m128i Xor(__m128i x, __m128i y) { return _mm_xor_si128(x, y); }
721 Xor( \
749 k = Xor(k, _mm_shuffle_epi8(g, f));
750 g = Add(Xor(c, g), a);
751 f = Add(Xor(be, f), d);
781 k = Xor(k, _mm_shuffle_epi8(g, f)); \
782 g = Add(Xor(c, g), a); \
783 f = Add(Xor(be, f), d); \
807 k = Xor(k, g);
808 k = Xor(k, q);
[all …]
/external/llvm/lib/IR/
DInstruction.cpp290 case Xor: return "xor"; in getOpcodeName()
555 return Opcode == And || Opcode == Or || Opcode == Xor || in isAssociative()
588 case Xor: in isCommutative()
615 return Opcode == Xor; in isNilpotent()
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Darith.ll71 define internal i32 @Xor(i32 %a, i32 %b) {
76 ; CHECK-LABEL: Xor
78 ; ARM32-LABEL: Xor
80 ; MIPS32-LABEL: Xor
Darith-opt.ll41 define internal i32 @Xor(i32 %a, i32 %b) {
42 ; CHECK: define internal i32 @Xor
/external/swiftshader/third_party/LLVM/test/Transforms/Reassociate/
Dotherops.ll1 ; Reassociation should apply to Add, Mul, And, Or, & Xor
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInstruction.cpp125 case Xor: return "xor"; in getOpcodeName()
368 return Opcode == And || Opcode == Or || Opcode == Xor || in isAssociative()
387 case Xor: in isCommutative()
/external/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp105 LI->getOpcode() == Instruction::Xor)) { in converted()
303 case Instruction::Xor: in convertLogicOp()
DSystemZTargetTransformInfo.cpp128 case Instruction::Xor: in getIntImmCost()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp106 Op != Instruction::Xor) in SimplifyBSwap()
160 case Instruction::Xor: in OptAndOp()
390 case Instruction::Xor: in FoldLogicalPlusAnd()
1199 LogicOpc == Instruction::Xor) && in foldCastedBitwiseLogic()
1252 if (LogicOpc == Instruction::Xor) in foldCastedBitwiseLogic()
1339 case Instruction::Xor: in visitAnd()
1898 APInt Xor = LHSCst->getValue() ^ RHSCst->getValue(); in FoldOrOfICmps() local
1899 if (Xor.isPowerOf2()) { in FoldOrOfICmps()
1900 Value *Cst = Builder->getInt(Xor); in FoldOrOfICmps()
2079 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldOrWithConstants() local
[all …]
DInstCombineShifts.cpp157 case Instruction::Xor: in CanEvaluateShifted()
209 case Instruction::Xor: in GetShiftedValue()
424 case Instruction::Xor: { in FoldShiftByConstant()
511 case Instruction::Xor: in FoldShiftByConstant()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineShifts.cpp110 case Instruction::Xor: in CanEvaluateShifted()
204 case Instruction::Xor: in GetShiftedValue()
412 case Instruction::Xor: { in FoldShiftByConstant()
494 case Instruction::Xor: in FoldShiftByConstant()
DInstCombineCasts.cpp175 case Instruction::Xor: in EvaluateInDifferentType()
355 case Instruction::Xor: in CanEvaluateTruncated()
675 case Instruction::Xor: in CanEvaluateZExtd()
691 Opc == Instruction::Xor)) { in CanEvaluateZExtd()
862 if (SrcI && SrcI->getOpcode() == Instruction::Xor && SrcI->hasOneUse()) in visitZExt()
1020 case Instruction::Xor: in CanEvaluateSExtd()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCExpr.h306 Xor ///< Bitwise exclusive or. enumerator
392 return Create(Xor, LHS, RHS, Ctx); in CreateXor()
/external/skia/src/opts/
DSkXfermode_opts.h37 XFERMODE(Xor) { return (s * d.alphas().inv() + d * s.alphas().inv()).div255(); } in XFERMODE() argument
285 CASE(Xor); in create_xfermode()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DLowerAtomic.cpp67 case AtomicRMWInst::Xor: in LowerAtomicRMWInst()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPatternMatch.h375 inline BinaryOp_match<LHS, RHS, Instruction::Xor>
377 return BinaryOp_match<LHS, RHS, Instruction::Xor>(L, R); in m_Xor()
589 if (I->getOpcode() == Instruction::Xor) in match()
592 if (CE->getOpcode() == Instruction::Xor) in match()
/external/v8/src/wasm/
Dwasm-opcodes.cc73 CASE_INT_OP(Xor, "xor") in OpcodeName()
206 CASE_S128_OP(Xor, "xor") in OpcodeName()
/external/llvm/include/llvm/MC/
DMCExpr.h408 Xor ///< Bitwise exclusive or. enumerator
498 return create(Xor, LHS, RHS, Ctx); in createXor()
/external/swiftshader/third_party/subzero/crosstest/
Dtest_arith.def31 X(Xor, ^, 0, 0) \
/external/llvm/lib/Transforms/Scalar/
DSpeculativeExecution.cpp220 case Instruction::Xor: in ComputeSpeculationCost()
DLowerAtomic.cpp72 case AtomicRMWInst::Xor: in LowerAtomicRMWInst()
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp113 LLVMOpcode = Instruction::Xor; in DecodeBinaryOpcode()

12345678