Home
last modified time | relevance | path

Searched refs:Cst (Results 1 – 18 of 18) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64PromoteConstant.cpp166 bool insertDefinitions(Constant *Cst, InsertionPointsPerFunc &InsPtsPerFunc);
182 bool promoteConstant(Constant *Cst);
239 static bool shouldConvertUse(const Constant *Cst, const Instruction *Instr, in shouldConvertUse() argument
308 static bool shouldConvert(const Constant *Cst) { in shouldConvert() argument
309 if (isa<const UndefValue>(Cst)) in shouldConvert()
319 if (Cst->isZeroValue()) in shouldConvert()
326 if (Cst->getType()->isVectorTy()) in shouldConvert()
328 return isConstantUsingVectorTy(Cst->getType()); in shouldConvert()
461 Constant *Cst, InsertionPointsPerFunc &InsPtsPerFunc) { in insertDefinitions() argument
480 *M, Cst->getType(), true, GlobalValue::InternalLinkage, nullptr, in insertDefinitions()
[all …]
DAArch64AddressTypePromotion.cpp322 if (const ConstantInt *Cst = dyn_cast<ConstantInt>(Opnd)) { in propagateSignExtension() local
325 Cst->getSExtValue())); in propagateSignExtension()
DAArch64ISelLowering.cpp6123 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1)); in LowerEXTRACT_SUBVECTOR() local
6124 if (!Cst) in LowerEXTRACT_SUBVECTOR()
6126 unsigned Val = Cst->getZExtValue(); in LowerEXTRACT_SUBVECTOR()
/external/llvm/include/llvm/MC/
DMCValue.h45 int64_t Cst; variable
49 int64_t getConstant() const { return Cst; } in getConstant()
70 R.Cst = Val;
79 R.Cst = Val; in get()
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp1891 Constant *Cst = nullptr; in OptimizeExpression() local
1895 Cst = Cst ? ConstantExpr::get(Opcode, C, Cst) : C; in OptimizeExpression()
1899 return Cst; in OptimizeExpression()
1904 if (Cst && Cst != ConstantExpr::getBinOpIdentity(Opcode, I->getType())) { in OptimizeExpression()
1905 if (Cst == ConstantExpr::getBinOpAbsorber(Opcode, I->getType())) in OptimizeExpression()
1906 return Cst; in OptimizeExpression()
1907 Ops.push_back(ValueEntry(0, Cst)); in OptimizeExpression()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp471 Value *A = nullptr; ConstantInt *Cst = nullptr; in visitTrunc() local
473 match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) { in visitTrunc()
482 if (Cst->getZExtValue() >= ASize) in visitTrunc()
488 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue()); in visitTrunc()
497 match(Src, m_And(m_Value(A), m_ConstantInt(Cst)))) { in visitTrunc()
500 ConstantExpr::getTrunc(Cst, CI.getType())); in visitTrunc()
DInstCombineCompares.cpp1011 Constant *Cst = Builder->getInt1(IsICMP_NE); in FoldICmpShrCst() local
1012 return ReplaceInstUsesWith(ICI, Cst); in FoldICmpShrCst()
1570 Constant *Cst = Builder->getInt1(IsICMP_NE); in visitICmpInstWithInstAndIntCst() local
1571 return ReplaceInstUsesWith(ICI, Cst); in visitICmpInstWithInstAndIntCst()
3690 Value *X; ConstantInt *Cst; in visitICmpInst() local
3692 if (match(Op0, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op1 == X) in visitICmpInst()
3693 return FoldICmpAddOpCst(I, X, Cst, I.getPredicate()); in visitICmpInst()
3696 if (match(Op1, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op0 == X) in visitICmpInst()
3697 return FoldICmpAddOpCst(I, X, Cst, I.getSwappedPredicate()); in visitICmpInst()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp3952 SDValue Cst = DAG.getConstant(0, MVT::i32); in getZeroVector() local
3953 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst); in getZeroVector()
3955 SDValue Cst = DAG.getConstantFP(+0.0, MVT::f32); in getZeroVector() local
3956 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst); in getZeroVector()
3960 SDValue Cst = DAG.getConstant(0, MVT::i32); in getZeroVector() local
3961 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst }; in getZeroVector()
3966 SDValue Cst = DAG.getConstantFP(+0.0, MVT::f32); in getZeroVector() local
3967 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst }; in getZeroVector()
3971 SDValue Cst = DAG.getConstant(0, MVT::i32); in getZeroVector() local
3972 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst, in getZeroVector()
[all …]
DX86ISelDAGToDAG.cpp999 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) in MatchAddressRecursively() local
1000 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM)) in MatchAddressRecursively()
2176 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1); in Select() local
2178 if (!Cst || !ShlCst) in Select()
2181 int64_t Val = Cst->getSExtValue(); in Select()
/external/llvm/lib/Target/R600/
DR600ISelLowering.cpp1106 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) { in isZero() local
1107 return Cst->isNullValue(); in isZero()
2112 ConstantSDNode *Cst in FoldOperand() local
2114 Consts.push_back(Cst->getZExtValue()); in FoldOperand()
2119 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset); in FoldOperand() local
2120 Consts.push_back(Cst->getZExtValue()); in FoldOperand()
DAMDGPUISelDAGToDAG.cpp684 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) { in SelectGlobalValueConstantOffset() local
685 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true); in SelectGlobalValueConstantOffset()
/external/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp2061 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(BVN->getOperand(i)); in LowerBUILD_VECTOR() local
2064 if (!Cst) { in LowerBUILD_VECTOR()
2091 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Operand)) in LowerBUILD_VECTOR() local
2092 Val = Cst->getSExtValue(); in LowerBUILD_VECTOR()
/external/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp2448 Constant *Cst = dyn_cast<Constant>(ArgShadow); in visitCallSite() local
2449 if (Cst && Cst->isNullValue()) ArgIsInitialized = true; in visitCallSite()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2527 if (const ConstantInt *Cst = dyn_cast<ConstantInt>(Opnd)) { in promoteOperandForOther() local
2530 APInt CstVal = IsSExt ? Cst->getValue().sext(BitWidth) in promoteOperandForOther()
2531 : Cst->getValue().zext(BitWidth); in promoteOperandForOther()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2711 ConstantInt *Cst = cast<ConstantInt>(ICI->getOperand(1)); in TryToSimplifyUncondBranchWithICmpInIt() local
2742 if (SI->findCaseValue(Cst) != SI->case_default()) { in TryToSimplifyUncondBranchWithICmpInIt()
2795 SI->addCase(Cst, NewBB); in TryToSimplifyUncondBranchWithICmpInIt()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1797 const APInt &Cst = Constant->getAPIntValue(); in ExpandIntRes_Constant() local
1800 Lo = DAG.getConstant(Cst.trunc(NBitWidth), NVT, IsTarget, IsOpaque); in ExpandIntRes_Constant()
1801 Hi = DAG.getConstant(Cst.lshr(NBitWidth).trunc(NBitWidth), NVT, IsTarget, in ExpandIntRes_Constant()
DDAGCombiner.cpp6914 SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0), in visitBITCAST() local
6916 Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT, in visitBITCAST()
6917 Cst, DAG.getConstant(~SignBit, VT)); in visitBITCAST()
6918 AddToWorklist(Cst.getNode()); in visitBITCAST()
6920 return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst); in visitBITCAST()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/de-DE/
Dde-DE_lexpos.utf1033 ADV "demnächst" ",de:m'nE:Cst"
1104 ADV "höchst" "'h2:Cst"
1105 ADV "höchstens" "'h2:Cst=ns"
1169 ADV "nächstens" "'nE:Cst=ns"
1250 ADV "zunächst" "t_su'nE:Cst"