HomeSort by relevance Sort by last modified time
    Searched refs:Cst (Results 1 - 13 of 13) 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 155 intptr_t Cst = 0;
158 Cst = -(intptr_t)MovePCtoLROffset - 4;
164 Cst, isa<Function>(MO.getGlobal()));
167 RelocID, MO.getSymbolName(), Cst);
170 RelocID, MO.getIndex(), Cst);
178 RelocID, MO.getIndex(), Cst);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 241 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
244 BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
    [all...]
  /external/llvm/lib/Target/R600/
AMDILISelDAGToDAG.cpp 381 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Ops[SelIdx[j] - 1]);
382 Consts.push_back(Cst->getZExtValue());
387 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(CstOffset);
388 Consts.push_back(Cst->getZExtValue());
564 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
565 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
R600ISelLowering.cpp 519 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) {
520 return Cst->isNullValue();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 472 // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion.
473 Value *A = 0; ConstantInt *Cst = 0;
475 match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) {
484 if (Cst->getZExtValue() >= ASize)
490 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
495 // Transform "trunc (and X, cst)" -> "and (trunc X), cst" so long as the dest
499 match(Src, m_And(m_Value(A), m_ConstantInt(Cst)))) {
502 ConstantExpr::getTrunc(Cst, CI.getType()));
705 // 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     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 473 Constant *Cst = dyn_cast_or_null<Constant>(ConvertedShadow);
477 if (Cst)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 391 milliseconds