Home
last modified time | relevance | path

Searched refs:F64 (Results 1 – 25 of 72) sorted by relevance

123

/src/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrConv.td78 defm I32_TRUNC_S_SAT_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
79 [(set I32:$dst, (fp_to_sint F64:$src))],
83 defm I32_TRUNC_U_SAT_F64 : I<(outs I32:$dst), (ins F64:$src), (outs), (ins),
84 [(set I32:$dst, (fp_to_uint F64:$src))],
88 defm I64_TRUNC_S_SAT_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
89 [(set I64:$dst, (fp_to_sint F64:$src))],
93 defm I64_TRUNC_U_SAT_F64 : I<(outs I64:$dst), (ins F64:$src), (outs), (ins),
94 [(set I64:$dst, (fp_to_uint F64:$src))],
102 def : Pat<(fp_to_sint_sat F64:$src, i32), (I32_TRUNC_S_SAT_F64 F64:$src)>;
103 def : Pat<(fp_to_uint_sat F64:$src, i32), (I32_TRUNC_U_SAT_F64 F64:$src)>;
[all …]
H A DWebAssemblyInstrFloat.td20 defm _F64 : I<(outs F64:$dst), (ins F64:$src), (outs), (ins),
21 [(set F64:$dst, (node F64:$src))],
31 defm _F64 : I<(outs F64:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins),
32 [(set F64:$dst, (node F64:$lhs, F64:$rhs))],
41 defm _F64 : I<(outs I32:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins),
42 [(set I32:$dst, (setcc F64:$lhs, F64:$rhs, cond))],
70 def : Pat<(fcopysign F64:$lhs, F32:$rhs),
71 (COPYSIGN_F64 F64:$lhs, (F64_PROMOTE_F32 F32:$rhs))>;
72 def : Pat<(fcopysign F32:$lhs, F64:$rhs),
73 (COPYSIGN_F32 F32:$lhs, (F32_DEMOTE_F64 F64:$rhs))>;
[all …]
H A DWebAssemblyRuntimeLibcallSignatures.cpp569 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
584 Rets.push_back(wasm::ValType::F64); in getLibcallSignature()
588 Rets.push_back(wasm::ValType::F64); in getLibcallSignature()
589 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
592 Rets.push_back(wasm::ValType::F64); in getLibcallSignature()
596 Rets.push_back(wasm::ValType::F64); in getLibcallSignature()
605 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
617 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
639 Rets.push_back(wasm::ValType::F64); in getLibcallSignature()
640 Params.push_back(wasm::ValType::F64); in getLibcallSignature()
[all …]
H A DWebAssemblyInstrInfo.td292 defm "": ARGUMENT<F64, f64>;
375 defm "" : LOCAL<F64, global_op32>;
395 defm CONST_F64 : I<(outs F64:$res), (ins f64imm_op:$imm),
397 [(set F64:$res, fpimm:$imm)],
H A DWebAssemblyInstrMemory.td61 defm LOAD_F64 : WebAssemblyLoad<F64, "f64.load", 0x2b, []>;
146 defm STORE_F64 : WebAssemblyStore<F64, "f64.store", 0x39>;
H A DWebAssemblyRegisterInfo.td66 def F64 : WebAssemblyRegClass<[f64], 64, (add F64_0)>;
/src/tools/tools/nanobsd/rescue/
H A Dbuild.sh29 F64="/usr/obj/Rescue/rescue_${today}_x64"
32 cp "${D64}/_.disk.full" "${F64}.img"
35 cp "${D64}/_.disk.iso" "${F64}.iso"
/src/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCTypeUtilities.cpp25 .Case("f64", wasm::ValType::F64) in parseType()
40 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType()
110 return wasm::ValType::F64; in regClassToValType()
H A DWebAssemblyMCTypeUtilities.h31 F64 = unsigned(wasm::ValType::F64), enumerator
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonPatterns.td447 def: OpR_R_pat<F2_conv_df2sf, pf1<fpround>, f32, F64>;
460 def: OpR_R_pat<F2_conv_df2w_chop, pf1<fp_to_sint>, i32, F64>;
462 def: OpR_R_pat<F2_conv_df2d_chop, pf1<fp_to_sint>, i64, F64>;
465 def: OpR_R_pat<F2_conv_df2uw_chop, pf1<fp_to_uint>, i32, F64>;
467 def: OpR_R_pat<F2_conv_df2ud_chop, pf1<fp_to_uint>, i64, F64>;
472 def: Pat<(i64 (bitconvert F64:$v)), (I64:$v)>;
473 def: Pat<(f64 (bitconvert I64:$v)), (F64:$v)>;
730 def: OpR_RR_pat<F2_dfcmpeq, seteq, i1, F64>;
731 def: OpR_RR_pat<F2_dfcmpgt, setgt, i1, F64>;
732 def: OpR_RR_pat<F2_dfcmpge, setge, i1, F64>;
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DDXILABI.h86 F64, enumerator
H A DAMDGPUMetadata.h113 F64 = 11, enumerator
/src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SchedNeoverseV1.td907 // ASIMD FP convert, long (F32 to F64)
913 // ASIMD FP convert, narrow (F64 to F32)
917 // ASIMD FP convert, other, D-form F32 and Q-form F64
941 // ASIMD FP divide, Q-form, F64
947 // ASIMD FP square root, Q-form, F64
962 // ASIMD FP round, D-form F32 and Q-form F64
1019 // ASIMD reciprocal and square root estimate, D-form F32 and F64
1026 // ASIMD reciprocal and square root estimate, D-form F16 and Q-form F32 and F64
1574 // Floating point associative add, F64
1594 // Floating point convert, long or narrow (F16 to F64, F32 to F64, F64 to F32 or F64 to F16)
[all …]
H A DAArch64SchedNeoverseN2.td1067 // ASIMD FP convert, long (F32 to F64)
1073 // ASIMD FP convert, narrow (F64 to F32)
1077 // ASIMD FP convert, other, D-form F32 and Q-form F64
1101 // ASIMD FP divide, Q-form, F64
1119 // ASIMD FP round, D-form F32 and Q-form F64
1145 // ASIMD FP square root, Q-form, F64
1936 // Floating point associative add, F64
1957 // Floating point convert, long or narrow (F16 to F64, F32 to F64, F64 to F32
1958 // or F64 to F16)
1972 // Floating point base2 log, F64
[all …]
H A DAArch64SchedA510.td1015 // Floating point associative add, F64
1036 // Floating point convert, long or narrow (F16 to F64, F32 to F64, F64 to F32
1037 // or F64 to F16)
1051 // Floating point base2 log, F64
1060 // Floating point convert to integer, F64
1074 // Floating point divide, F64
1102 // Floating point reciprocal estimate, F64
1130 // Floating point round to integral, F64
1139 // Floating point square root, F64
H A DAArch64SchedNeoverseV2.td1558 // ASIMD FP convert, long (F32 to F64)
1564 // ASIMD FP convert, narrow (F64 to F32)
1568 // ASIMD FP convert, other, D-form F32 and Q-form F64
1604 // ASIMD FP divide, Q-form, F64
1622 // ASIMD FP round, D-form F32 and Q-form F64
1647 // ASIMD FP square root, Q-form, F64
2453 // Floating point associative add, F64
2474 // Floating point convert, long or narrow (F16 to F64, F32 to F64, F64 to F32
2475 // or F64 to F16)
2489 // Floating point base2 log, F64
[all …]
H A DAArch64SchedNeoverseN1.td675 // ASIMD FP convert, long (F32 to F64)
681 // ASIMD FP convert, narrow (F64 to F32)
685 // ASIMD FP convert, other, D-form F32 and Q-form F64
713 // ASIMD FP divide, Q-form, F64
716 // ASIMD FP square root, Q-form, F64
734 // ASIMD FP round, D-form F32 and Q-form F64
771 // ASIMD reciprocal and square root estimate, D-form F32 and F64
/src/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyTypeUtilities.cpp49 return wasm::ValType::F64; in toValType()
/src/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp56 F64, enumerator
398 Type = BasicType::F64; in parseBasicType()
503 case BasicType::F64: in printBasicType()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp288 static const LLT F64 = LLT::float64(); variable
1678 .legalFor({{F32, LocalPtr}, {F64, LocalPtr}}); in AMDGPULegalizerInfo()
1683 AtomicFMinFMax.legalFor({{F64, GlobalPtr}, {F64, BufferFatPtr}}); in AMDGPULegalizerInfo()
1687 AtomicFMinFMax.legalFor({F64, FlatPtr}); in AMDGPULegalizerInfo()
3781 const LLT F64 = LLT::float64(); in legalizeFFloor() local
3785 assert(ST.hasFractBug() && MRI.getType(Dst) == F64 && in legalizeFFloor()
3796 auto Fract = B.buildIntrinsic(Intrinsic::amdgcn_fract, {F64}) in legalizeFFloor()
3808 B.buildFConstant(F64, llvm::bit_cast<double>(0x3fefffffffffffff)); in legalizeFFloor()
3810 Register Min = MRI.createGenericVirtualRegister(F64); in legalizeFFloor()
3823 CorrectedFract = B.buildSelect(F64, IsNan, ModSrc, Min, Flags).getReg(0); in legalizeFFloor()
[all …]
H A DAMDGPULibFunc.cpp646 case 'd': res.ArgType = AMDGPULibFunc::F64; break; in parseItaniumParam()
753 case AMDGPULibFunc::F64: return "d"; in getItaniumTypeName()
901 P.ArgType = AMDGPULibFunc::F64; in getFromTy()
948 case AMDGPULibFunc::F64: T = Type::getDoubleTy(C); break; in getIntrinsicParamType()
H A DAMDGPULibCalls.cpp498 getArgType(FInfo) == AMDGPULibFunc::F64 || !HasNative(FInfo.getId()) || in useNative()
1248 if (getArgType(FInfo) == AMDGPULibFunc::F64 || !HasNative(FInfo.getId())) in getNativeFunction()
1358 getArgType(fInfo) != AMDGPULibFunc::F64) || in fold_sincos()
1470 opr0 = (getArgType(FInfo) == AMDGPULibFunc::F64) in evaluateScalarMathFunc()
1476 opr1 = (getArgType(FInfo) == AMDGPULibFunc::F64) in evaluateScalarMathFunc()
H A DSISchedule.td32 // Conversion to or from F32 (but not converting F64 to or from F32)
50 // F64 "transcendental" (actually only reciprocal and/or square root)
H A DAMDGPULibFunc.h274 F64 = FLOAT | B64, enumerator
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h261 F64 = WASM_TYPE_F64, enumerator

123