Home
last modified time | relevance | path

Searched refs:Commutative (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsMips.td29 [Commutative, IntrNoMem]>;
32 [Commutative, IntrNoMem]>;
40 [Commutative, IntrNoMem]>;
43 [Commutative, IntrNoMem]>;
51 [IntrNoMem, Commutative]>;
54 [IntrNoMem, Commutative]>;
64 Intrinsic<[mips_q31_ty], [mips_q31_ty, mips_q31_ty], [Commutative]>;
69 Intrinsic<[llvm_i32_ty], [llvm_i32_ty, llvm_i32_ty], [Commutative]>;
71 Intrinsic<[llvm_i32_ty], [llvm_i32_ty, llvm_i32_ty], [Commutative]>;
149 Intrinsic<[mips_v2q15_ty], [mips_v2q15_ty, mips_v2q15_ty], [Commutative]>;
[all …]
H A DIntrinsicsDirectX.td31 [IntrNoMem, IntrWillReturn, Commutative] >;
35 [IntrNoMem, IntrWillReturn, Commutative] >;
39 [IntrNoMem, IntrWillReturn, Commutative] >;
43 [IntrNoMem, IntrWillReturn, Commutative] >;
47 [IntrNoMem, IntrWillReturn, Commutative] >;
H A DIntrinsicsX86.td334 llvm_v8i16_ty], [IntrNoMem, Commutative]>;
337 llvm_v8i16_ty], [IntrNoMem, Commutative]>;
340 llvm_v8i16_ty], [IntrNoMem, Commutative]>;
343 llvm_v16i8_ty], [IntrNoMem, Commutative]>;
346 llvm_v8i16_ty], [IntrNoMem, Commutative]>;
349 llvm_v16i8_ty], [IntrNoMem, Commutative]>;
569 llvm_x86mmx_ty], [IntrNoMem, Commutative]>;
572 llvm_v8i16_ty], [IntrNoMem, Commutative]>;
756 [IntrNoMem, Commutative, ImmArg<ArgIndex<2>>]>;
760 [IntrNoMem, Commutative, ImmArg<ArgIndex<2>>]>;
[all …]
H A DIntrinsicsNVVM.td572 [IntrNoMem, IntrSpeculatable, Commutative]>;
580 [IntrNoMem, IntrSpeculatable, Commutative]>;
588 [IntrNoMem, IntrSpeculatable, Commutative]>;
596 [IntrNoMem, IntrSpeculatable, Commutative]>;
605 [IntrNoMem, IntrSpeculatable, Commutative]>;
614 [IntrNoMem, IntrSpeculatable, Commutative]>;
624 [IntrNoMem, IntrSpeculatable, Commutative]>;
627 [IntrNoMem, IntrSpeculatable, Commutative]>;
631 [IntrNoMem, IntrSpeculatable, Commutative]>;
634 [IntrNoMem, IntrSpeculatable, Commutative]>;
[all …]
H A DIntrinsics.td57 // Commutative - This intrinsic is commutative: X op Y == Y op X.
58 def Commutative : IntrinsicProperty;
1074 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]
1078 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]
1082 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]
1086 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]
1497 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]>;
1500 [IntrNoMem, IntrSpeculatable, IntrWillReturn, Commutative]>;
1519 Commutative, ImmArg<ArgIndex<2>>]>;
1524 Commutative, ImmArg<ArgIndex<2>>]>;
[all …]
H A DIntrinsicsARM.td49 [Commutative, IntrNoMem]>;
499 let IntrProperties = [IntrNoMem, Commutative] in {
H A DIntrinsicsAMDGPU.td394 [IntrNoMem, IntrSpeculatable, Commutative]
404 [IntrNoMem, IntrSpeculatable, Commutative]
H A DIntrinsicsAArch64.td314 let IntrProperties = [IntrNoMem, Commutative];
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanPatternMatch.h160 template <typename Op0_t, typename Op1_t, unsigned Opcode, bool Commutative,
184 return Commutative && Op0.match(R->getOperand(1)) &&
195 bool Commutative = false>
197 BinaryRecipe_match<Op0_t, Op1_t, Opcode, Commutative, VPWidenRecipe,
265 bool Commutative = false>
266 inline AllBinaryRecipe_match<Op0_t, Op1_t, Opcode, Commutative>
268 return AllBinaryRecipe_match<Op0_t, Op1_t, Opcode, Commutative>(Op0, Op1);
288 template <typename Op0_t, typename Op1_t, bool Commutative = false>
289 inline AllBinaryRecipe_match<Op0_t, Op1_t, Instruction::Or, Commutative>
291 return m_Binary<Instruction::Or, Op0_t, Op1_t, Commutative>(Op0, Op1);
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2909 TEST_F(FloatTest, Commutative) { in TEST_F() argument
3061 TEST_F(DoubleTest, Commutative) { in TEST_F() argument
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFragmentsSIMD.td43 // Commutative and Associative FMIN and FMAX.
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp15871 bool Commutative = true; in tryFoldSelectIntoOp()
15880 Commutative = false; in tryFoldSelectIntoOp()
15894 else if (Commutative && FalseVal == TrueVal.getOperand(1)) in tryFoldSelectIntoOp()
15905 if (!Commutative) in tryFoldSelectIntoOp()
15868 bool Commutative = true; tryFoldSelectIntoOp() local