Home
last modified time | relevance | path

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

/external/clang/test/CodeGenCXX/
Dbuiltins-systemz-zvector.cpp19 constexpr vector int CI2 = (vector int)char(0); in testInts() local
21 gb = (VI == CI2)[0]; in testInts()
39 constexpr vector double CI2 = (vector double)char(0); in testFloats() local
41 gb = (VD == CI2)[0]; in testFloats()
/external/llvm-project/clang/test/CodeGenCXX/
Dbuiltins-systemz-zvector.cpp19 constexpr vector int CI2 = (vector int)char(0); in testInts() local
21 gb = (VI == CI2)[0]; in testInts()
39 constexpr vector double CI2 = (vector double)char(0); in testFloats() local
41 gb = (VD == CI2)[0]; in testFloats()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantFold.cpp1125 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) { in ConstantFoldBinaryInstruction() local
1128 if (CI2->isZero()) return C1; // X + 0 == X in ConstantFoldBinaryInstruction()
1131 if (CI2->isZero()) return C1; // X - 0 == X in ConstantFoldBinaryInstruction()
1134 if (CI2->isZero()) return C2; // X * 0 == 0 in ConstantFoldBinaryInstruction()
1135 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1140 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1142 if (CI2->isZero()) in ConstantFoldBinaryInstruction()
1143 return UndefValue::get(CI2->getType()); // X / 0 == undef in ConstantFoldBinaryInstruction()
1147 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1148 return Constant::getNullValue(CI2->getType()); // X % 1 == 0 in ConstantFoldBinaryInstruction()
[all …]
/external/llvm/lib/IR/
DConstantFold.cpp1019 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) { in ConstantFoldBinaryInstruction() local
1022 if (CI2->equalsInt(0)) return C1; // X + 0 == X in ConstantFoldBinaryInstruction()
1025 if (CI2->equalsInt(0)) return C1; // X - 0 == X in ConstantFoldBinaryInstruction()
1028 if (CI2->equalsInt(0)) return C2; // X * 0 == 0 in ConstantFoldBinaryInstruction()
1029 if (CI2->equalsInt(1)) in ConstantFoldBinaryInstruction()
1034 if (CI2->equalsInt(1)) in ConstantFoldBinaryInstruction()
1036 if (CI2->equalsInt(0)) in ConstantFoldBinaryInstruction()
1037 return UndefValue::get(CI2->getType()); // X / 0 == undef in ConstantFoldBinaryInstruction()
1041 if (CI2->equalsInt(1)) in ConstantFoldBinaryInstruction()
1042 return Constant::getNullValue(CI2->getType()); // X % 1 == 0 in ConstantFoldBinaryInstruction()
[all …]
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1503 ConstantInt *CI1, *CI2; in SimplifyAndOfICmps() local
1522 m_ConstantInt(CI2)))) in SimplifyAndOfICmps()
1533 const APInt &CI2V = CI2->getValue(); in SimplifyAndOfICmps()
1687 ConstantInt *CI1, *CI2; in SimplifyOrOfICmps() local
1694 m_ConstantInt(CI2)))) in SimplifyOrOfICmps()
1707 const APInt &CI2V = CI2->getValue(); in SimplifyOrOfICmps()
2305 ConstantInt *CI2; in SimplifyICmpInst() local
2306 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) { in SimplifyICmpInst()
2308 Upper = CI2->getValue(); in SimplifyICmpInst()
2309 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) { in SimplifyICmpInst()
[all …]
DValueTracking.cpp3847 if (auto *CI2 = dyn_cast<CastInst>(V2)) { in lookThroughCast() local
3850 if (CI2->getOpcode() == CI->getOpcode() && in lookThroughCast()
3851 CI2->getSrcTy() == CI->getSrcTy()) in lookThroughCast()
3852 return CI2->getOperand(0); in lookThroughCast()
/external/llvm-project/llvm/unittests/Analysis/
DProfileSummaryInfoTest.cpp244 auto *CI2 = BB2->getFirstNonPHI(); in TEST_F() local
245 CallBase &CS2 = cast<CallBase>(*CI2); in TEST_F()
253 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
340 auto *CI2 = BB2->getFirstNonPHI(); in TEST_F() local
345 CI2->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); in TEST_F()
346 CallBase &CS2 = cast<CallBase>(*CI2); in TEST_F()
353 CI2->setMetadata(llvm::LLVMContext::MD_prof, MDB.createBranchWeights({400})); in TEST_F()
/external/llvm-project/llvm/lib/IR/
DConstantFold.cpp1232 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) { in ConstantFoldBinaryInstruction() local
1235 if (CI2->isZero()) return C1; // X + 0 == X in ConstantFoldBinaryInstruction()
1238 if (CI2->isZero()) return C1; // X - 0 == X in ConstantFoldBinaryInstruction()
1241 if (CI2->isZero()) return C2; // X * 0 == 0 in ConstantFoldBinaryInstruction()
1242 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1247 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1249 if (CI2->isZero()) in ConstantFoldBinaryInstruction()
1250 return PoisonValue::get(CI2->getType()); // X / 0 == poison in ConstantFoldBinaryInstruction()
1254 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1255 return Constant::getNullValue(CI2->getType()); // X % 1 == 0 in ConstantFoldBinaryInstruction()
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1432 ConstantInt *CI2) { in FoldICmpCstShrCst() argument
1448 const APInt &AP2 = CI2->getValue(); in FoldICmpCstShrCst()
1496 ConstantInt *CI2) { in FoldICmpCstShlCst() argument
1512 const APInt &AP2 = CI2->getValue(); in FoldICmpCstShlCst()
2496 ConstantInt *CI2, ConstantInt *CI1, in ProcessUGT_ADDCST_ADD() argument
2509 if (!CI2->getValue().isPowerOf2()) return nullptr; in ProcessUGT_ADDCST_ADD()
2510 unsigned NewWidth = CI2->getValue().countTrailingZeros(); in ProcessUGT_ADDCST_ADD()
3262 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI in visitICmpInst() local
3264 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2)))) in visitICmpInst()
3265 if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, CI, *this)) in visitICmpInst()
[all …]
DInstCombineInternal.h280 ConstantInt *CI1, ConstantInt *CI2);
282 ConstantInt *CI1, ConstantInt *CI2);
DInstCombineAndOrXor.cpp2076 ConstantInt *CI2 = nullptr; in FoldOrWithConstants() local
2077 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return nullptr; in FoldOrWithConstants()
2079 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldOrWithConstants()
2106 ConstantInt *CI2 = nullptr; in FoldXorWithConstants() local
2107 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) in FoldXorWithConstants()
2110 APInt Xor = CI1->getValue() ^ CI2->getValue(); in FoldXorWithConstants()
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp93 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); in operator ()() local
94 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp123 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); in operator ()() local
124 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp90 const ConstantInt *CI2 = cast<const ConstantInt>(C2.High); in operator ()() local
91 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp1373 CallInst *CI2 = dyn_cast<CallInst>(VL[i]); in buildTree_rec() local
1374 if (!CI2 || CI2->getCalledFunction() != Int || in buildTree_rec()
1375 getVectorIntrinsicIDForCall(CI2, TLI) != ID || in buildTree_rec()
1376 !CI->hasIdenticalOperandBundleSchema(*CI2)) { in buildTree_rec()
1386 Value *A1J = CI2->getArgOperand(1); in buildTree_rec()
1400 CI2->op_begin() + CI2->getBundleOperandsStartIndex())) { in buildTree_rec()
1414 CallInst *CI2 = dyn_cast<CallInst>(j); in buildTree_rec() local
1415 Operands.push_back(CI2->getArgOperand(i)); in buildTree_rec()
/external/llvm-project/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp3180 CallInst *CI2 = dyn_cast<CallInst>(V); in buildTree_rec() local
3181 if (!CI2 || CI2->getCalledFunction() != F || in buildTree_rec()
3182 getVectorIntrinsicIDForCall(CI2, TLI) != ID || in buildTree_rec()
3184 VecFunc != VFDatabase(*CI2).getVectorizedFunction(Shape)) || in buildTree_rec()
3185 !CI->hasIdenticalOperandBundleSchema(*CI2)) { in buildTree_rec()
3197 Value *A1J = CI2->getArgOperand(j); in buildTree_rec()
3213 CI2->op_begin() + CI2->getBundleOperandsStartIndex())) { in buildTree_rec()
3230 auto *CI2 = cast<CallInst>(V); in buildTree_rec() local
3231 Operands.push_back(CI2->getArgOperand(i)); in buildTree_rec()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp3015 CallInst *CI2 = dyn_cast<CallInst>(V); in buildTree_rec() local
3016 if (!CI2 || CI2->getCalledFunction() != Int || in buildTree_rec()
3017 getVectorIntrinsicIDForCall(CI2, TLI) != ID || in buildTree_rec()
3018 !CI->hasIdenticalOperandBundleSchema(*CI2)) { in buildTree_rec()
3030 Value *A1J = CI2->getArgOperand(j); in buildTree_rec()
3046 CI2->op_begin() + CI2->getBundleOperandsStartIndex())) { in buildTree_rec()
3063 auto *CI2 = cast<CallInst>(V); in buildTree_rec() local
3064 Operands.push_back(CI2->getArgOperand(i)); in buildTree_rec()
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp251 const CastInst *CI2) { in isEliminableCastPair() argument
254 Type *DstTy = CI2->getDestTy(); in isEliminableCastPair()
257 Instruction::CastOps secondOp = CI2->getOpcode(); in isEliminableCastPair()
DInstCombineInternal.h337 const CastInst *CI2);
DInstCombineCompares.cpp1258 ConstantInt *CI2, ConstantInt *CI1, in processUGT_ADDCST_ADD() argument
1272 if (!CI2->getValue().isPowerOf2()) in processUGT_ADDCST_ADD()
1274 unsigned NewWidth = CI2->getValue().countTrailingZeros(); in processUGT_ADDCST_ADD()
1451 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI in foldICmpWithConstant() local
1453 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2)))) in foldICmpWithConstant()
1454 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this)) in foldICmpWithConstant()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp234 const CastInst *CI2) { in isEliminableCastPair() argument
237 Type *DstTy = CI2->getDestTy(); in isEliminableCastPair()
240 Instruction::CastOps secondOp = CI2->getOpcode(); in isEliminableCastPair()
DInstCombineCompares.cpp1256 ConstantInt *CI2, ConstantInt *CI1, in processUGT_ADDCST_ADD() argument
1270 if (!CI2->getValue().isPowerOf2()) in processUGT_ADDCST_ADD()
1272 unsigned NewWidth = CI2->getValue().countTrailingZeros(); in processUGT_ADDCST_ADD()
1448 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI in foldICmpWithConstant() local
1450 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2)))) in foldICmpWithConstant()
1451 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this)) in foldICmpWithConstant()
DInstCombineInternal.h622 const CastInst *CI2);
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
D2013-1_UNLOCODE_CodeListPart2.csv11906 "+","IT","CI2","Cingoli","Cingoli","MC","--3-----","RL","1301",,"4322N 01313E",
D2013-1_UNLOCODE_CodeListPart3.csv12588 ,"US","CI2","Cincinnati","Cincinnati","KY","--3-----","RQ","0607",,,