Home
last modified time | relevance | path

Searched refs:CI1 (Results 1 – 14 of 14) sorted by relevance

/external/clang/test/CodeGenCXX/
Dbuiltins-systemz-zvector.cpp14 constexpr vector int CI1 = (vector int)0LL; in testInts() local
16 gb = (VI == CI1)[0]; in testInts()
34 constexpr vector double CI1 = (vector double)0LL; in testFloats() local
36 gb = (VD == CI1)[0]; in testFloats()
/external/llvm/lib/IR/
DConstantFold.cpp1119 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) { in ConstantFoldBinaryInstruction() local
1121 const APInt &C1V = CI1->getValue(); in ConstantFoldBinaryInstruction()
1127 return ConstantInt::get(CI1->getContext(), C1V + C2V); in ConstantFoldBinaryInstruction()
1129 return ConstantInt::get(CI1->getContext(), C1V - C2V); in ConstantFoldBinaryInstruction()
1131 return ConstantInt::get(CI1->getContext(), C1V * C2V); in ConstantFoldBinaryInstruction()
1134 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V)); in ConstantFoldBinaryInstruction()
1138 return UndefValue::get(CI1->getType()); // MIN_INT / -1 -> undef in ConstantFoldBinaryInstruction()
1139 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V)); in ConstantFoldBinaryInstruction()
1142 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V)); in ConstantFoldBinaryInstruction()
1146 return UndefValue::get(CI1->getType()); // MIN_INT % -1 -> undef in ConstantFoldBinaryInstruction()
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstantFold.cpp1173 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) { in ConstantFoldBinaryInstruction() local
1176 const APInt &C1V = CI1->getValue(); in ConstantFoldBinaryInstruction()
1182 return ConstantInt::get(CI1->getContext(), C1V + C2V); in ConstantFoldBinaryInstruction()
1184 return ConstantInt::get(CI1->getContext(), C1V - C2V); in ConstantFoldBinaryInstruction()
1186 return ConstantInt::get(CI1->getContext(), C1V * C2V); in ConstantFoldBinaryInstruction()
1189 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V)); in ConstantFoldBinaryInstruction()
1193 return UndefValue::get(CI1->getType()); // MIN_INT / -1 -> undef in ConstantFoldBinaryInstruction()
1194 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V)); in ConstantFoldBinaryInstruction()
1197 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V)); in ConstantFoldBinaryInstruction()
1201 return UndefValue::get(CI1->getType()); // MIN_INT % -1 -> undef in ConstantFoldBinaryInstruction()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerSwitch.cpp76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()() local
78 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()() local
94 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator() local
190 return CI1->getValue().slt(CI2->getValue()); in operator()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineInternal.h280 ConstantInt *CI1, ConstantInt *CI2);
282 ConstantInt *CI1, ConstantInt *CI2);
DInstCombineAndOrXor.cpp2072 ConstantInt *CI1 = dyn_cast<ConstantInt>(C); in FoldOrWithConstants() local
2073 if (!CI1) return nullptr; in FoldOrWithConstants()
2079 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldOrWithConstants()
2083 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1); in FoldOrWithConstants()
2101 ConstantInt *CI1 = dyn_cast<ConstantInt>(C); in FoldXorWithConstants() local
2102 if (!CI1) in FoldXorWithConstants()
2110 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldXorWithConstants()
2115 Value *NewOp = Builder->CreateAnd(V1 == A ? B : A, CI1); in FoldXorWithConstants()
DInstCombineCompares.cpp1431 ConstantInt *CI1, in FoldICmpCstShrCst() argument
1447 const APInt &AP1 = CI1->getValue(); in FoldICmpCstShrCst()
1495 ConstantInt *CI1, in FoldICmpCstShlCst() argument
1511 const APInt &AP1 = CI1->getValue(); in FoldICmpCstShlCst()
2496 ConstantInt *CI2, ConstantInt *CI1, in ProcessUGT_ADDCST_ADD() argument
2517 if (CI1->getBitWidth() == NewWidth || in ProcessUGT_ADDCST_ADD()
2518 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth)) in ProcessUGT_ADDCST_ADD()
2524 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1; in ProcessUGT_ADDCST_ADD()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1503 ConstantInt *CI1, *CI2; in SimplifyAndOfICmps() local
1521 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)), in SimplifyAndOfICmps()
1525 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1)))) in SimplifyAndOfICmps()
1532 const APInt &CI1V = CI1->getValue(); in SimplifyAndOfICmps()
1687 ConstantInt *CI1, *CI2; in SimplifyOrOfICmps() local
1693 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)), in SimplifyOrOfICmps()
1697 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1)))) in SimplifyOrOfICmps()
1706 const APInt &CI1V = CI1->getValue(); in SimplifyOrOfICmps()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp1735 ConstantInt *CI1 = dyn_cast<ConstantInt>(C); in FoldOrWithConstants() local
1736 if (!CI1) return 0; in FoldOrWithConstants()
1742 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldOrWithConstants()
1746 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1); in FoldOrWithConstants()
DInstCombineCompares.cpp1635 ConstantInt *CI2, ConstantInt *CI1, in ProcessUGT_ADDCST_ADD() argument
1656 if (CI1->getBitWidth() == NewWidth || in ProcessUGT_ADDCST_ADD()
1657 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth)) in ProcessUGT_ADDCST_ADD()
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DShear.miff42 …<4�j;3�d;1�c<2�fA6�gC4�fF3�{dS�k[N�681�25,�18,�4:/�572�04.�3=0�9E4�3;/�481�CI1�e~I�u�W�u�Z�i�R�^�H…
/external/webrtc/data/voice_engine/stereo_rtp_files/
Dhrtf_g722_1C_48_jitterT2.rtp294 ����%?!�$@���������Ȁ}r��1�I��X�V�CI1�9��%7��j.�dҀ20 � ��A-�3��V��K����ZS@(����(P…