HomeSort by relevance Sort by last modified time
    Searched refs:Cst (Results 1 - 10 of 10) sorted by null

  /external/llvm/include/llvm/MC/
MCValue.h 39 int64_t Cst;
42 int64_t getConstant() const { return Cst; }
59 R.Cst = Val;
67 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 465 // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion.
466 Value *A = 0; ConstantInt *Cst = 0;
468 match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) {
477 if (Cst->getZExtValue() >= ASize)
483 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
488 // Transform "trunc (and X, cst)" -> "and (trunc X), cst" so long as the dest
492 match(Src, m_And(m_Value(A), m_ConstantInt(Cst)))) {
495 ConstantExpr::getTrunc(Cst, CI.getType()));
704 // We can promote lshr(x, cst) if we can promote x. This requires th
    [all...]
InstCombineCompares.cpp     [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/Target/X86/
X86ISelDAGToDAG.cpp 748 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
749 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]

Completed in 574 milliseconds