| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| H A D | UDTLayout.cpp | 118 uint32_t Abs = LayoutItemBase::tailPadding(); in tailPadding() local 122 if (Abs < ChildPadding) in tailPadding() 123 Abs = 0; in tailPadding() 125 Abs -= ChildPadding; in tailPadding() 127 return Abs; in tailPadding()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 1023 bool Abs = LF.getValue().evaluateKnownAbsolute(Value, Layout); in relaxLEB() local 1024 if (!Abs) in relaxLEB() 1106 bool Abs = DF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout); in relaxDwarfLineAddr() local 1107 assert(Abs && "We created a line delta with an invalid expression"); in relaxDwarfLineAddr() 1108 (void)Abs; in relaxDwarfLineAddr() 1146 bool Abs = DF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout); in relaxDwarfCallFrameFragment() local 1147 assert(Abs && "We created call frame with an invalid expression"); in relaxDwarfCallFrameFragment() 1148 (void) Abs; in relaxDwarfCallFrameFragment() 1189 bool Abs = PF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout); in relaxPseudoProbeAddr() local 1190 assert(Abs && "We created a pseudo probe with an invalid expression"); in relaxPseudoProbeAddr() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | SIPeepholeSDWA.cpp | 117 bool Abs; member in __anon082413db0111::SDWASrcOperand 126 SrcSel(SrcSel_), Abs(Abs_), Neg(Neg_), Sext(Sext_) {} in SDWASrcOperand() 132 bool getAbs() const { return Abs; } in getAbs() 317 if (Abs || Neg) { in getSrcMods() 320 Mods |= Abs ? SISrcMods::ABS : 0u; in getSrcMods()
|
| H A D | R600ISelLowering.h | 101 SDValue &Neg, SDValue &Abs, SDValue &Sel, SDValue &Imm,
|
| H A D | R600ISelLowering.cpp | 1981 SDValue &Src, SDValue &Neg, SDValue &Abs, in FoldOperand() argument 1996 if (!Abs.getNode()) in FoldOperand() 1999 Abs = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32); in FoldOperand() 2158 SDValue &Abs = Ops[AbsIdx[i] - 1]; in PostISelFolding() local 2164 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG)) in PostISelFolding() 2197 SDValue &Abs = (AbsIdx[i] > -1) ? Ops[AbsIdx[i] - 1] : FakeAbs; in PostISelFolding() local 2207 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, Imm, DAG)) in PostISelFolding()
|
| H A D | AMDGPULegalizerInfo.cpp | 3372 auto Abs = B.buildFAbs(S32, RHS, Flags); in legalizeFDIVFastIntrin() local 3379 auto CmpRes = B.buildFCmp(CmpInst::FCMP_OGT, S1, Abs, C0, Flags); in legalizeFDIVFastIntrin()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| H A D | xfpu.md | 41 ;; Move/Abs/Neg: 1 1
|
| /netbsd-src/sys/arch/m68k/fpsp/ |
| H A D | bindec.sa | 265 * F_SCR2:Abs(X)/Abs(X) with $3fff exponent 328 * F_SCR2:Abs(X) with $3fff exponent/Unchanged 400 * F_SCR2:Abs(X) with $3fff exponent/Unchanged 505 * F_SCR2:Abs(X) with $3fff exponent/Unchanged
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 70 bool Abs = false; member 74 bool hasFPModifiers() const { return Abs || Neg; } in hasFPModifiers() 80 Operand |= Abs ? SISrcMods::ABS : 0u; in getFPModifiersOperand() 1108 OS << "abs:" << Mods.Abs << " neg: " << Mods.Neg << " sext:" << Mods.Sext; in operator <<() 1946 if (Imm.Mods.Abs) { in applyInputFPModifiers() 2924 bool Abs, SP3Abs; in parseRegOrImmWithFPInputMods() local 2944 Abs = trySkipId("abs"); in parseRegOrImmWithFPInputMods() 2945 if (Abs && !skipToken(AsmToken::LParen, "expected left paren after abs")) in parseRegOrImmWithFPInputMods() 2950 if (Abs && SP3Abs) { in parseRegOrImmWithFPInputMods() 2962 return (SP3Neg || Neg || SP3Abs || Abs)? MatchOperand_ParseFail : Res; in parseRegOrImmWithFPInputMods() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineMulDivRem.cpp | 371 Value *Abs = Builder.CreateBinaryIntrinsic( in visitMul() local 374 Abs->takeName(&I); in visitMul() 375 return replaceInstUsesWith(I, Abs); in visitMul()
|
| H A D | InstCombineCalls.cpp | 1010 Value *Abs = Builder.CreateBinaryIntrinsic( in visitCallInst() local 1017 Abs = Builder.CreateNeg(Abs, "nabs", /* NUW */ false, IntMinIsPoison); in visitCallInst() 1018 return replaceInstUsesWith(CI, Abs); in visitCallInst()
|
| H A D | InstCombineSelect.cpp | 1096 Instruction *Abs = in canonicalizeAbsNabs() local 1100 return BinaryOperator::CreateNeg(Abs); // Always without NSW flag! in canonicalizeAbsNabs() 1102 return IC.replaceInstUsesWith(Sel, Abs); in canonicalizeAbsNabs()
|
| H A D | InstCombineAndOrXor.cpp | 3670 if (Instruction *Abs = canonicalizeAbs(I, Builder)) in visitXor() local 3671 return Abs; in visitXor()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/csky/ |
| H A D | csky_insn_fpuv2.md | 22 ;; Float Abs instructions
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/csky/ |
| H A D | csky_insn_fpu.md | 22 ;; Float Abs instructions
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 1297 bool Abs = ((EFlags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) == in dumpSymbolsFromDLInfoMachO() local 1304 if (Abs) { in dumpSymbolsFromDLInfoMachO()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 376 unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32; in LowerFPToInt() local 423 BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg); in LowerFPToInt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | BuiltinsNVPTX.def | 170 // Abs
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Intrinsics.td | 1109 //===------------------ Integer Min/Max/Abs Intrinsics --------------------===//
|
| /netbsd-src/sys/arch/m68k/060sp/dist/ |
| H A D | pfpsp.s | 13656 # F_SCR2:Abs(X)/Abs(X) with $3fff exponent 13718 # F_SCR2:Abs(X) with $3fff exponent/Unchanged 13790 # F_SCR2:Abs(X) with $3fff exponent/Unchanged
|
| H A D | fpsp.s | 23695 # F_SCR2:Abs(X)/Abs(X) with $3fff exponent 23757 # F_SCR2:Abs(X) with $3fff exponent/Unchanged 23829 # F_SCR2:Abs(X) with $3fff exponent/Unchanged
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 10278 bool Abs = ((Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK) == in printMachOExportsTrie() local 10287 if (WeakDef || ThreadLocal || Resolver || Abs) { in printMachOExportsTrie() 10294 if (Abs) in printMachOExportsTrie()
|
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | ChangeLog-9899 | 3504 (pi): Remove Abs. 3506 given a memory operand. Don't set Abs bits either. 3507 (type_names): Remove Mem*, Abs*.
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/ |
| H A D | ChangeLog-9899 | 3504 (pi): Remove Abs. 3506 given a memory operand. Don't set Abs bits either. 3507 (type_names): Remove Mem*, Abs*.
|
| /netbsd-src/external/gpl2/texinfo/dist/po/ |
| H A D | de.po | 2450 " --paragraph-indent=WERT Info-Absätze mit WERT Leerzeichen einziehen\n"
|