/external/llvm/include/llvm/MC/ |
MCValue.h | 39 int64_t Cst; 42 int64_t getConstant() const { return Cst; } 69 R.Cst = Val; 77 R.Cst = Val;
|
/external/llvm/lib/Target/PowerPC/ |
PPCCodeEmitter.cpp | 153 intptr_t Cst = 0; 156 Cst = -(intptr_t)MovePCtoLROffset - 4; 162 Cst, isa<Function>(MO.getGlobal())); 165 RelocID, MO.getSymbolName(), Cst); 168 RelocID, MO.getIndex(), Cst); 176 RelocID, MO.getIndex(), Cst);
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCasts.cpp | 464 // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion. 465 Value *A = 0; ConstantInt *Cst = 0; 467 match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) { 476 if (Cst->getZExtValue() >= ASize) 482 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue()); 487 // Transform "trunc (and X, cst)" -> "and (trunc X), cst" so long as the dest 491 match(Src, m_And(m_Value(A), m_ConstantInt(Cst)))) { 494 ConstantExpr::getTrunc(Cst, CI.getType())); 703 // We can promote lshr(x, cst) if we can promote x. This requires th [all...] |
InstCombineCompares.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
X86ISelDAGToDAG.cpp | 743 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) 744 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM)) [all...] |
/external/llvm/lib/Transforms/Scalar/ |
Reassociate.cpp | 214 Constant *Cst = Constant::getAllOnesValue(Neg->getType()); 216 Instruction *Res = BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | [all...] |
LegalizeIntegerTypes.cpp | [all...] |