HomeSort by relevance Sort by last modified time
    Searched defs:SExt (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/
Attributes.h 38 const Attributes SExt = 1<<1; ///< Sign extended before/after call
103 ZExt | SExt,
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 25 static const uint64_t SExt = 1ULL<<1; ///< Sign extended
53 bool isSExt() const { return Flags & SExt; }
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 34 SExt, // The value is sign extended in the location.
127 return (HTP == AExt || HTP == SExt || HTP == ZExt);
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 148 const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this);
149 const SCEV *Op = SExt->getOperand();
150 OS << "(sext " << *Op->getType() << " " << *Op << " to "
151 << *SExt->getType() << ")";
817 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 75 | Sext
175 | SExt
657 | Attribute.Sext -> Int32.shift_left 1l 1
693 checkattr Attribute.Sext;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 667 SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Mul.getValueType(),
669 Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
    [all...]

Completed in 222 milliseconds