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 158 intptr_t Cst = 0;
161 Cst = -(intptr_t)MovePCtoLROffset - 4;
167 Cst, isa<Function>(MO.getGlobal()));
170 RelocID, MO.getSymbolName(), Cst);
173 RelocID, MO.getIndex(), Cst);
181 RelocID, MO.getIndex(), Cst);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 320 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
323 BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelDAGToDAG.cpp 228 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(I->getOperand(OtherSelIdx));
229 Consts.push_back(Cst->getZExtValue());
234 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(CstOffset);
235 Consts.push_back(Cst->getZExtValue());
700 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) {
701 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true);
R600ISelLowering.cpp 810 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) {
811 return Cst->isNullValue();
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
X86ISelDAGToDAG.cpp     [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()));
704 // We can promote shl(x, cst) if we can promote x. Since shl overwrites th
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 484 Constant *Cst = dyn_cast_or_null<Constant>(ConvertedShadow);
488 if (Cst)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 277 milliseconds