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

  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 14 // d = sext i32 a to i64
18 // f = sext i32 b to i64
24 // Moreover, the current heuristic is simple: it does not create new sext
25 // operations, i.e., it gives up when a sext would have forked (e.g., if
82 // sext instructions.
104 /// Check if it is profitable to move a sext through this instruction.
107 /// - Inst has only one operand that will require a sext operation (we do
108 /// do not create new sext operation).
111 /// Check if it is possible and legal to move a sext through this
115 /// - Other sext operation
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 35 SExt, // The value is sign extended in the location.
146 return (HTP == AExt || HTP == SExt || HTP == ZExt);
  /external/llvm/include/llvm/IR/
Attributes.h 100 SExt, ///< Sign extended before/after call
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 30 static const uint64_t SExt = 1ULL<<1; ///< Sign extended
66 bool isSExt() const { return Flags & SExt; }
  /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() << ")";
845 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 80 | Sext
180 | SExt
730 | Attribute.Sext -> Int32.shift_left 1l 1
766 checkattr Attribute.Sext;
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 713 SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Mul.getValueType(),
715 Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
    [all...]

Completed in 619 milliseconds