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

  /external/llvm/include/llvm/Target/
TargetCallingConv.h 29 static const uint64_t SExt = 1ULL<<1; ///< Sign extended
59 bool isSExt() const { return Flags & SExt; }
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 35 SExt, // The value is sign extended in the location.
128 return (HTP == AExt || HTP == SExt || HTP == ZExt);
  /external/llvm/include/llvm/IR/
Attributes.h 95 SExt, ///< Sign extended before/after call
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 158 const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this);
159 const SCEV *Op = SExt->getOperand();
160 OS << "(sext " << *Op->getType() << " " << *Op << " to "
161 << *SExt->getType() << ")";
846 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 76 | Sext
176 | SExt
658 | Attribute.Sext -> Int32.shift_left 1l 1
694 checkattr Attribute.Sext;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 685 SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Mul.getValueType(),
687 Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
    [all...]

Completed in 648 milliseconds