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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter_policies.hpp 29 struct Trunc
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 509 Value *Trunc;
521 Trunc = Builder.CreateTrunc(ExtRem, RemTy);
523 Rem->replaceAllUsesWith(Trunc);
559 Value *Trunc;
571 Trunc = Builder.CreateTrunc(ExtRem, RemTy);
573 Rem->replaceAllUsesWith(Trunc);
610 Value *Trunc;
622 Trunc = Builder.CreateTrunc(ExtDiv, DivTy);
624 Div->replaceAllUsesWith(Trunc);
660 Value *Trunc;
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 736 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
742 // It does! Now see if "trunc V" simplifies.
744 // It does, return the simplified "trunc V".
    [all...]
ScalarEvolution.cpp 144 const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(this);
145 const SCEV *Op = Trunc->getOperand();
146 OS << "(trunc " << *Op->getType() << " " << *Op << " to "
147 << *Trunc->getType() << ")";
771 MultiplyFactor = MultiplyFactor.trunc(W);
841 // trunc(trunc(x)) --> trunc(x)
845 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowin
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 591 SDValue Trunc = CurDAG->getNode(ISD::TRUNCATE, DL, VT, Base);
592 insertDAGNode(CurDAG, Base.getNode(), Trunc);
593 Base = Trunc;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 670 NewMask.trunc(ShAmt) == 0) {
    [all...]
DAGCombiner.cpp 192 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
343 /// (trunc (and X, C)) -> (and (trunc X), (trunc C))
346 /// requirements are checked by the function (e.g. that trunc is
813 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
818 Trunc.getNode()->dump(&DAG);
821 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
825 AddToWorkList(Trunc.getNode());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 194 case Instruction::Trunc:
204 // This also handles the case of zext(trunc(x)) -> zext(x).
331 /// Ty will always be a type smaller than V. We should return true if trunc(V)
333 /// then trunc(inst(x,y)) can be computed as inst(trunc(x),trunc(y)), which only
408 case Instruction::Trunc:
409 // trunc(trunc(x)) -> trunc(x
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 178 | Trunc
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 693 // Sink the trunc
715 /// %x.extract.trunc = trunc i64 %x.extract.shift to i16
720 /// %x.extract.trunc = trunc i64 %x.extract.shift.1 to i16
759 // trunc.result = trunc shift.result to i16
764 // cmp i16 trunc.result, opnd2
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 887 milliseconds