HomeSort by: relevance | last modified time | path
    Searched refs:Abs (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
UDTLayout.cpp 118 uint32_t Abs = LayoutItemBase::tailPadding();
122 if (Abs < ChildPadding)
123 Abs = 0;
125 Abs -= ChildPadding;
127 return Abs;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAssembler.cpp 1023 bool Abs = LF.getValue().evaluateKnownAbsolute(Value, Layout);
1024 if (!Abs)
1106 bool Abs = DF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout);
1107 assert(Abs && "We created a line delta with an invalid expression");
1108 (void)Abs;
1146 bool Abs = DF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout);
1147 assert(Abs && "We created call frame with an invalid expression");
1148 (void) Abs;
1189 bool Abs = PF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout);
1190 assert(Abs && "We created a pseudo probe with an invalid expression")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600ISelLowering.h 101 SDValue &Neg, SDValue &Abs, SDValue &Sel, SDValue &Imm,
SIPeepholeSDWA.cpp 117 bool Abs;
126 SrcSel(SrcSel_), Abs(Abs_), Neg(Neg_), Sext(Sext_) {}
132 bool getAbs() const { return Abs; }
225 << " abs:" << getAbs() << " neg:" << getNeg()
317 if (Abs || Neg) {
320 Mods |= Abs ? SISrcMods::ABS : 0u;
R600ISelLowering.cpp 1981 SDValue &Src, SDValue &Neg, SDValue &Abs,
1996 if (!Abs.getNode())
1999 Abs = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32);
2158 SDValue &Abs = Ops[AbsIdx[i] - 1];
2164 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG))
2197 SDValue &Abs = (AbsIdx[i] > -1) ? Ops[AbsIdx[i] - 1] : FakeAbs;
2207 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, Imm, DAG))
AMDGPULegalizerInfo.cpp 3372 auto Abs = B.buildFAbs(S32, RHS, Flags);
3379 auto CmpRes = B.buildFCmp(CmpInst::FCMP_OGT, S1, Abs, C0, Flags);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stackdepot.cpp 80 Abs(common_flags()->compress_stack_depot)));
sanitizer_common.h 486 constexpr T Abs(T a) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 70 bool Abs = false;
74 bool hasFPModifiers() const { return Abs || Neg; }
80 Operand |= Abs ? SISrcMods::ABS : 0u;
1108 OS << "abs:" << Mods.Abs << " neg: " << Mods.Neg << " sext:" << Mods.Sext;
1946 if (Imm.Mods.Abs) {
2779 // as arguments of SP3 'abs' modifier, for example:
2834 return str == "abs" || str == "neg" || str == "sext";
2859 // abs(...
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 233 // abs(X) * abs(X) -> X * X
241 if (match(Op0, m_Intrinsic<Intrinsic::abs>(m_Value(X))))
365 // ((ashr X, 31) | 1) * X --> abs(X)
366 // X * ((ashr X, 31) | 1) --> abs(X)
371 Value *Abs = Builder.CreateBinaryIntrinsic(
372 Intrinsic::abs, X,
374 Abs->takeName(&I);
375 return replaceInstUsesWith(I, Abs);
1173 // abs(X) / X --> X > -1 ? 1 : -
    [all...]
InstCombineCalls.cpp 469 // cttz(abs(x)) -> cttz(x)
476 if (match(Op0, m_Intrinsic<Intrinsic::abs>(m_Value(X))))
897 case Intrinsic::abs: {
901 // abs(-x) -> abs(x)
912 // abs(x) -> x if x >= 0
916 // abs(x) -> -x if x < 0
922 // abs (sext X) --> zext (abs X*)
923 // Clear the IsIntMin (nsw) bit on the abs to allow narrowing
    [all...]
InstCombineSelect.cpp 1091 // Note that NSW flag can only be propagated for normal, non-negated abs!
1096 Instruction *Abs =
1097 IC.Builder.CreateBinaryIntrinsic(Intrinsic::abs, LHS, IntMinIsPoisonC);
1100 return BinaryOperator::CreateNeg(Abs); // Always without NSW flag!
1102 return IC.replaceInstUsesWith(Sel, Abs);
1650 // ABS(ABS(X)) -> ABS(X)
1657 // ABS(NABS(X)) -> ABS(X
    [all...]
InstCombineAndOrXor.cpp 3670 if (Instruction *Abs = canonicalizeAbs(I, Builder))
3671 return Abs;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 1123 SecName = "*ABS*";
1297 bool Abs = ((EFlags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
1304 if (Abs) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 165 // Support integer abs
167 setOperationAction(ISD::ABS, T, Legal);
376 unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32;
423 BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg);
  /src/sys/arch/m68k/060sp/dist/
pfpsp.s 13172 # 5. Check if the exp has crossed zero in #3 above; make the exp abs
13210 ble.w pwrten # if abs(expA) <28, skip ap/st zeros
13238 neg.l %d1 # now its neg; get abs
13286 neg.l %d1 # take abs of exp and clr SE
13401 # ( ) fp1: scaling factor - 10**(abs(exp))
13451 # A2. Set X = abs(input). #
13480 # 10^^(abs(ISCALE)) using a rounding mode which is a #
13571 # a2: pointer to FP_X; abs(original value) in ext
13626 # A2. Set X = abs(input).
13632 and.l &0x7fffffff,FP_SCR1(%a6) # create abs(X
    [all...]
fpsp.s 5585 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
6016 #--If compact form of abs(arg) in d0=$7ffeffff, argument is so large that
23211 # 5. Check if the exp has crossed zero in #3 above; make the exp abs
23249 ble.w pwrten # if abs(expA) <28, skip ap/st zeros
23277 neg.l %d1 # now its neg; get abs
23325 neg.l %d1 # take abs of exp and clr SE
23440 # ( ) fp1: scaling factor - 10**(abs(exp))
23490 # A2. Set X = abs(input). #
23519 # 10^^(abs(ISCALE)) using a rounding mode which is a #
23610 # a2: pointer to FP_X; abs(original value) in ex
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 10278 bool Abs = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) ==
10287 if (WeakDef || ThreadLocal || Resolver || Abs) {
10294 if (Abs)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 2553 // The negation has 'nsw' because abs of INT_MIN is undefined.
2558 Value *Result = Builder.CreateSelect(CmpResult, NegOp, ArgValue, "abs");
3006 // isnan(V) == ((exp mask - (abs(V) & exp mask)) < 0)
3142 Value *Abs = EmitFAbs(*this, V);
3144 Builder.CreateFCmpULT(Abs, ConstantFP::getInfinity(V->getType()),"isinf");
3148 Builder.CreateFCmpUGE(Abs, ConstantFP::get(V->getContext(), Smallest),
13930 Function *F = CGM.getIntrinsic(Intrinsic::abs, Ops[0]->getType());
17287 return Builder.CreateSelect(ICmp, Neg, Vec, "abs");
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 209 setOperationAction(ISD::ABS , MVT::i16 , Custom);
210 setOperationAction(ISD::ABS , MVT::i32 , Custom);
212 setOperationAction(ISD::ABS , MVT::i64 , Custom);
979 setOperationAction(ISD::ABS, VT, Custom);
1103 setOperationAction(ISD::ABS, MVT::v16i8, Legal);
1104 setOperationAction(ISD::ABS, MVT::v8i16, Legal);
1105 setOperationAction(ISD::ABS, MVT::v4i32, Legal);
1351 setOperationAction(ISD::ABS, MVT::v4i64, Custom);
1371 setOperationAction(ISD::ABS, VT, HasInt256 ? Legal : Custom);
1668 setOperationAction(ISD::ABS, VT, Legal)
    [all...]

Completed in 107 milliseconds