├── .bazelrc ├── .clang-tidy ├── .cproject ├── .gitignore ├── .gitlab-ci.yml ├── .project ├── Args.cpp ├── Args.hpp ├── BUILD.bazel ├── Cache.hpp ├── Core.cpp ├── Core.hpp ├── CsRegs.cpp ├── CsRegs.hpp ├── CsrFields.hpp ├── DecodedInst.cpp ├── DecodedInst.hpp ├── Decoder.cpp ├── Decoder.hpp ├── Disassembler.cpp ├── Disassembler.hpp ├── Filesystem.hpp ├── FpRegNames.hpp ├── FpRegs.cpp ├── FpRegs.hpp ├── GNUmakefile ├── Hart.cpp ├── Hart.hpp ├── HartConfig.cpp ├── HartConfig.hpp ├── InstEntry.cpp ├── InstEntry.hpp ├── InstId.hpp ├── InstProfile.cpp ├── InstProfile.hpp ├── IntRegNames.hpp ├── IntRegs.cpp ├── IntRegs.hpp ├── Interactive.cpp ├── Interactive.hpp ├── IoDevice.hpp ├── Isa.cpp ├── Isa.hpp ├── LICENSE ├── Lock.hpp ├── Mcm.cpp ├── Mcm.hpp ├── Memory.cpp ├── Memory.hpp ├── PerfApi.cpp ├── PerfApi.hpp ├── PerfRegs.cpp ├── PerfRegs.hpp ├── PmaManager.cpp ├── PmaManager.hpp ├── PmaskManager.hpp ├── PmpManager.hpp ├── README.md ├── RegNamesTemplate.hpp ├── RemoteFrameBuffer.cpp ├── RemoteFrameBuffer.hpp ├── Server.cpp ├── Server.hpp ├── Session.cpp ├── Session.hpp ├── SparseMem.cpp ├── SparseMem.hpp ├── Stee.hpp ├── Syscall.cpp ├── Syscall.hpp ├── System.cpp ├── System.hpp ├── Third-Party_Notices.txt ├── Trace.cpp ├── Trace.hpp ├── Triggers.cpp ├── Triggers.hpp ├── Uart8250.cpp ├── Uart8250.hpp ├── Uartsf.cpp ├── Uartsf.hpp ├── VecLdStInfo.hpp ├── VecRegs.cpp ├── VecRegs.hpp ├── WORKSPACE ├── WhisperMessage.cpp ├── WhisperMessage.h ├── amo.cpp ├── aplic ├── Aplic.cpp ├── Aplic.hpp ├── BUILD.bazel ├── Domain.cpp └── Domain.hpp ├── arch_test_target ├── link.ld ├── model_test.h ├── riscof_whisper.py ├── whisper_isa.yaml ├── whisper_isa32.yaml └── whisper_platform.yaml ├── bitmanip.cpp ├── cbo.cpp ├── configuration ├── bh-tt-whisper.json └── config_schema.json ├── crypto-util.hpp ├── crypto.cpp ├── deps.bzl ├── deps2.bzl ├── dot-product.cpp ├── eclipse_ide_setup.txt ├── env_vars ├── float-util.hpp ├── float.cpp ├── float16-compat.hpp ├── functors.hpp ├── gdb.cpp ├── hypervisor.cpp ├── imsic ├── BUILD.bazel ├── Imsic.cpp └── Imsic.hpp ├── instforms.cpp ├── instforms.hpp ├── iommu ├── Ats.hpp ├── BUILD.bazel ├── DeviceContext.hpp ├── FaultQueue.hpp ├── Iommu.cpp ├── Iommu.hpp ├── IommuPmaManager.cpp ├── IommuPmaManager.hpp ├── IommuPmpManager.hpp ├── Makefile ├── MsiPte.hpp ├── ProcessContext.hpp ├── riscv_enums.hpp └── tests │ ├── IommuStructures.hpp │ ├── Makefile │ ├── MemoryManager.hpp │ ├── MemoryModel.hpp │ ├── TableBuilder.hpp │ ├── ats-unified-test.cpp │ ├── command-queue-testplan.md │ ├── device-context-test-plan.md │ ├── device-table-walk.cpp │ ├── fault-queue.cpp │ ├── iofence-test.cpp │ ├── msi-translation.cpp │ ├── process-table-walk.cpp │ ├── test_iodir.cpp │ └── test_iotinval_commands.cpp ├── numa.cpp ├── numa.hpp ├── pci ├── BUILD.bazel ├── Makefile ├── Pci.cpp ├── Pci.hpp ├── PciDev.cpp ├── PciDev.hpp ├── README.md ├── msix.hpp └── virtio │ ├── Blk.cpp │ ├── Blk.hpp │ ├── Virtio.cpp │ └── Virtio.hpp ├── printTrace.cpp ├── py-bindings.cpp ├── rv_auto_build_this_tool.py ├── snapshot.cpp ├── softfloat-util.hpp ├── testing ├── configs.py ├── init_venv.sh └── requirements.txt ├── third_party ├── .clang-tidy ├── BUILD.bazel ├── elfio │ ├── elf_types.hpp │ ├── elfio.hpp │ ├── elfio_dump.hpp │ ├── elfio_dynamic.hpp │ ├── elfio_header.hpp │ ├── elfio_note.hpp │ ├── elfio_relocation.hpp │ ├── elfio_section.hpp │ ├── elfio_segment.hpp │ ├── elfio_strings.hpp │ ├── elfio_symbols.hpp │ └── elfio_utils.hpp ├── linenoise.hpp ├── nlohmann │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail │ │ ├── abi_macros.hpp │ │ ├── conversions │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta │ │ │ ├── call_std │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty │ │ └── hedley │ │ ├── hedley.hpp │ │ └── hedley_undef.hpp └── softfloat │ ├── COPYING.txt │ ├── README.html │ ├── README.md │ ├── README.txt │ ├── build │ ├── Linux-386-GCC │ │ ├── Makefile │ │ └── platform.h │ ├── Linux-386-SSE2-GCC │ │ ├── Makefile │ │ └── platform.h │ ├── Linux-ARM-VFPv2-GCC │ │ ├── Makefile │ │ └── platform.h │ ├── Linux-x86_64-GCC │ │ ├── Makefile │ │ └── platform.h │ ├── RISCV-GCC │ │ ├── Makefile │ │ └── platform.h │ ├── Win32-MinGW │ │ ├── Makefile │ │ └── platform.h │ ├── Win32-SSE2-MinGW │ │ ├── Makefile │ │ └── platform.h │ ├── Win64-MinGW-w64 │ │ ├── Makefile │ │ └── platform.h │ ├── template-FAST_INT64 │ │ ├── Makefile │ │ └── platform.h │ └── template-not-FAST_INT64 │ │ ├── Makefile │ │ └── platform.h │ ├── doc │ ├── SoftFloat-history.html │ ├── SoftFloat-source.html │ └── SoftFloat.html │ └── source │ ├── 8086 │ ├── extF80M_isSignalingNaN.c │ ├── f128M_isSignalingNaN.c │ ├── s_commonNaNToExtF80M.c │ ├── s_commonNaNToExtF80UI.c │ ├── s_commonNaNToF128M.c │ ├── s_commonNaNToF128UI.c │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_extF80MToCommonNaN.c │ ├── s_extF80UIToCommonNaN.c │ ├── s_f128MToCommonNaN.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ ├── s_f64UIToCommonNaN.c │ ├── s_propagateNaNExtF80M.c │ ├── s_propagateNaNExtF80UI.c │ ├── s_propagateNaNF128M.c │ ├── s_propagateNaNF128UI.c │ ├── s_propagateNaNF16UI.c │ ├── s_propagateNaNF32UI.c │ ├── s_propagateNaNF64UI.c │ ├── softfloat_raiseFlags.c │ └── specialize.h │ ├── 8086-SSE │ ├── extF80M_isSignalingNaN.c │ ├── f128M_isSignalingNaN.c │ ├── s_bf16UIToCommonNaN.c │ ├── s_commonNaNToBF16UI.c │ ├── s_commonNaNToExtF80M.c │ ├── s_commonNaNToExtF80UI.c │ ├── s_commonNaNToF128M.c │ ├── s_commonNaNToF128UI.c │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_extF80MToCommonNaN.c │ ├── s_extF80UIToCommonNaN.c │ ├── s_f128MToCommonNaN.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ ├── s_f64UIToCommonNaN.c │ ├── s_propagateNaNExtF80M.c │ ├── s_propagateNaNExtF80UI.c │ ├── s_propagateNaNF128M.c │ ├── s_propagateNaNF128UI.c │ ├── s_propagateNaNF16UI.c │ ├── s_propagateNaNF32UI.c │ ├── s_propagateNaNF64UI.c │ ├── softfloat_raiseFlags.c │ └── specialize.h │ ├── ARM-VFPv2-defaultNaN │ ├── extF80M_isSignalingNaN.c │ ├── f128M_isSignalingNaN.c │ ├── s_commonNaNToExtF80M.c │ ├── s_commonNaNToExtF80UI.c │ ├── s_commonNaNToF128M.c │ ├── s_commonNaNToF128UI.c │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_extF80MToCommonNaN.c │ ├── s_extF80UIToCommonNaN.c │ ├── s_f128MToCommonNaN.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ ├── s_f64UIToCommonNaN.c │ ├── s_propagateNaNExtF80M.c │ ├── s_propagateNaNExtF80UI.c │ ├── s_propagateNaNF128M.c │ ├── s_propagateNaNF128UI.c │ ├── s_propagateNaNF16UI.c │ ├── s_propagateNaNF32UI.c │ ├── s_propagateNaNF64UI.c │ ├── softfloat_raiseFlags.c │ └── specialize.h │ ├── ARM-VFPv2 │ ├── extF80M_isSignalingNaN.c │ ├── f128M_isSignalingNaN.c │ ├── s_commonNaNToExtF80M.c │ ├── s_commonNaNToExtF80UI.c │ ├── s_commonNaNToF128M.c │ ├── s_commonNaNToF128UI.c │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_extF80MToCommonNaN.c │ ├── s_extF80UIToCommonNaN.c │ ├── s_f128MToCommonNaN.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ ├── s_f64UIToCommonNaN.c │ ├── s_propagateNaNExtF80M.c │ ├── s_propagateNaNExtF80UI.c │ ├── s_propagateNaNF128M.c │ ├── s_propagateNaNF128UI.c │ ├── s_propagateNaNF16UI.c │ ├── s_propagateNaNF32UI.c │ ├── s_propagateNaNF64UI.c │ ├── softfloat_raiseFlags.c │ └── specialize.h │ ├── RISCV │ ├── extF80M_isSignalingNaN.c │ ├── f128M_isSignalingNaN.c │ ├── s_bf16UIToCommonNaN.c │ ├── s_commonNaNToBF16UI.c │ ├── s_commonNaNToExtF80M.c │ ├── s_commonNaNToExtF80UI.c │ ├── s_commonNaNToF128M.c │ ├── s_commonNaNToF128UI.c │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_extF80MToCommonNaN.c │ ├── s_extF80UIToCommonNaN.c │ ├── s_f128MToCommonNaN.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ ├── s_f64UIToCommonNaN.c │ ├── s_propagateNaNExtF80M.c │ ├── s_propagateNaNExtF80UI.c │ ├── s_propagateNaNF128M.c │ ├── s_propagateNaNF128UI.c │ ├── s_propagateNaNF16UI.c │ ├── s_propagateNaNF32UI.c │ ├── s_propagateNaNF64UI.c │ ├── softfloat_raiseFlags.c │ └── specialize.h │ ├── bf16_isSignalingNaN.c │ ├── bf16_to_f32.c │ ├── extF80M_add.c │ ├── extF80M_div.c │ ├── extF80M_eq.c │ ├── extF80M_eq_signaling.c │ ├── extF80M_le.c │ ├── extF80M_le_quiet.c │ ├── extF80M_lt.c │ ├── extF80M_lt_quiet.c │ ├── extF80M_mul.c │ ├── extF80M_rem.c │ ├── extF80M_roundToInt.c │ ├── extF80M_sqrt.c │ ├── extF80M_sub.c │ ├── extF80M_to_f128M.c │ ├── extF80M_to_f16.c │ ├── extF80M_to_f32.c │ ├── extF80M_to_f64.c │ ├── extF80M_to_i32.c │ ├── extF80M_to_i32_r_minMag.c │ ├── extF80M_to_i64.c │ ├── extF80M_to_i64_r_minMag.c │ ├── extF80M_to_ui32.c │ ├── extF80M_to_ui32_r_minMag.c │ ├── extF80M_to_ui64.c │ ├── extF80M_to_ui64_r_minMag.c │ ├── extF80_add.c │ ├── extF80_div.c │ ├── extF80_eq.c │ ├── extF80_eq_signaling.c │ ├── extF80_isSignalingNaN.c │ ├── extF80_le.c │ ├── extF80_le_quiet.c │ ├── extF80_lt.c │ ├── extF80_lt_quiet.c │ ├── extF80_mul.c │ ├── extF80_rem.c │ ├── extF80_roundToInt.c │ ├── extF80_sqrt.c │ ├── extF80_sub.c │ ├── extF80_to_f128.c │ ├── extF80_to_f16.c │ ├── extF80_to_f32.c │ ├── extF80_to_f64.c │ ├── extF80_to_i32.c │ ├── extF80_to_i32_r_minMag.c │ ├── extF80_to_i64.c │ ├── extF80_to_i64_r_minMag.c │ ├── extF80_to_ui32.c │ ├── extF80_to_ui32_r_minMag.c │ ├── extF80_to_ui64.c │ ├── extF80_to_ui64_r_minMag.c │ ├── f128M_add.c │ ├── f128M_div.c │ ├── f128M_eq.c │ ├── f128M_eq_signaling.c │ ├── f128M_le.c │ ├── f128M_le_quiet.c │ ├── f128M_lt.c │ ├── f128M_lt_quiet.c │ ├── f128M_mul.c │ ├── f128M_mulAdd.c │ ├── f128M_rem.c │ ├── f128M_roundToInt.c │ ├── f128M_sqrt.c │ ├── f128M_sub.c │ ├── f128M_to_extF80M.c │ ├── f128M_to_f16.c │ ├── f128M_to_f32.c │ ├── f128M_to_f64.c │ ├── f128M_to_i32.c │ ├── f128M_to_i32_r_minMag.c │ ├── f128M_to_i64.c │ ├── f128M_to_i64_r_minMag.c │ ├── f128M_to_ui32.c │ ├── f128M_to_ui32_r_minMag.c │ ├── f128M_to_ui64.c │ ├── f128M_to_ui64_r_minMag.c │ ├── f128_add.c │ ├── f128_div.c │ ├── f128_eq.c │ ├── f128_eq_signaling.c │ ├── f128_isSignalingNaN.c │ ├── f128_le.c │ ├── f128_le_quiet.c │ ├── f128_lt.c │ ├── f128_lt_quiet.c │ ├── f128_mul.c │ ├── f128_mulAdd.c │ ├── f128_rem.c │ ├── f128_roundToInt.c │ ├── f128_sqrt.c │ ├── f128_sub.c │ ├── f128_to_extF80.c │ ├── f128_to_f16.c │ ├── f128_to_f32.c │ ├── f128_to_f64.c │ ├── f128_to_i32.c │ ├── f128_to_i32_r_minMag.c │ ├── f128_to_i64.c │ ├── f128_to_i64_r_minMag.c │ ├── f128_to_ui32.c │ ├── f128_to_ui32_r_minMag.c │ ├── f128_to_ui64.c │ ├── f128_to_ui64_r_minMag.c │ ├── f16_add.c │ ├── f16_div.c │ ├── f16_eq.c │ ├── f16_eq_signaling.c │ ├── f16_isSignalingNaN.c │ ├── f16_le.c │ ├── f16_le_quiet.c │ ├── f16_lt.c │ ├── f16_lt_quiet.c │ ├── f16_mul.c │ ├── f16_mulAdd.c │ ├── f16_rem.c │ ├── f16_roundToInt.c │ ├── f16_sqrt.c │ ├── f16_sub.c │ ├── f16_to_extF80.c │ ├── f16_to_extF80M.c │ ├── f16_to_f128.c │ ├── f16_to_f128M.c │ ├── f16_to_f32.c │ ├── f16_to_f64.c │ ├── f16_to_i32.c │ ├── f16_to_i32_r_minMag.c │ ├── f16_to_i64.c │ ├── f16_to_i64_r_minMag.c │ ├── f16_to_ui32.c │ ├── f16_to_ui32_r_minMag.c │ ├── f16_to_ui64.c │ ├── f16_to_ui64_r_minMag.c │ ├── f32_add.c │ ├── f32_div.c │ ├── f32_eq.c │ ├── f32_eq_signaling.c │ ├── f32_isSignalingNaN.c │ ├── f32_le.c │ ├── f32_le_quiet.c │ ├── f32_lt.c │ ├── f32_lt_quiet.c │ ├── f32_mul.c │ ├── f32_mulAdd.c │ ├── f32_rem.c │ ├── f32_roundToInt.c │ ├── f32_sqrt.c │ ├── f32_sub.c │ ├── f32_to_bf16.c │ ├── f32_to_extF80.c │ ├── f32_to_extF80M.c │ ├── f32_to_f128.c │ ├── f32_to_f128M.c │ ├── f32_to_f16.c │ ├── f32_to_f64.c │ ├── f32_to_i32.c │ ├── f32_to_i32_r_minMag.c │ ├── f32_to_i64.c │ ├── f32_to_i64_r_minMag.c │ ├── f32_to_ui32.c │ ├── f32_to_ui32_r_minMag.c │ ├── f32_to_ui64.c │ ├── f32_to_ui64_r_minMag.c │ ├── f64_add.c │ ├── f64_div.c │ ├── f64_eq.c │ ├── f64_eq_signaling.c │ ├── f64_isSignalingNaN.c │ ├── f64_le.c │ ├── f64_le_quiet.c │ ├── f64_lt.c │ ├── f64_lt_quiet.c │ ├── f64_mul.c │ ├── f64_mulAdd.c │ ├── f64_rem.c │ ├── f64_roundToInt.c │ ├── f64_sqrt.c │ ├── f64_sub.c │ ├── f64_to_extF80.c │ ├── f64_to_extF80M.c │ ├── f64_to_f128.c │ ├── f64_to_f128M.c │ ├── f64_to_f16.c │ ├── f64_to_f32.c │ ├── f64_to_i32.c │ ├── f64_to_i32_r_minMag.c │ ├── f64_to_i64.c │ ├── f64_to_i64_r_minMag.c │ ├── f64_to_ui32.c │ ├── f64_to_ui32_r_minMag.c │ ├── f64_to_ui64.c │ ├── f64_to_ui64_r_minMag.c │ ├── i32_to_extF80.c │ ├── i32_to_extF80M.c │ ├── i32_to_f128.c │ ├── i32_to_f128M.c │ ├── i32_to_f16.c │ ├── i32_to_f32.c │ ├── i32_to_f64.c │ ├── i64_to_extF80.c │ ├── i64_to_extF80M.c │ ├── i64_to_f128.c │ ├── i64_to_f128M.c │ ├── i64_to_f16.c │ ├── i64_to_f32.c │ ├── i64_to_f64.c │ ├── include │ ├── internals.h │ ├── opts-GCC.h │ ├── primitiveTypes.h │ ├── primitives.h │ ├── softfloat.h │ └── softfloat_types.h │ ├── s_add128.c │ ├── s_add256M.c │ ├── s_addCarryM.c │ ├── s_addComplCarryM.c │ ├── s_addExtF80M.c │ ├── s_addF128M.c │ ├── s_addM.c │ ├── s_addMagsExtF80.c │ ├── s_addMagsF128.c │ ├── s_addMagsF16.c │ ├── s_addMagsF32.c │ ├── s_addMagsF64.c │ ├── s_approxRecip32_1.c │ ├── s_approxRecipSqrt32_1.c │ ├── s_approxRecipSqrt_1Ks.c │ ├── s_approxRecip_1Ks.c │ ├── s_compare128M.c │ ├── s_compare96M.c │ ├── s_compareNonnormExtF80M.c │ ├── s_countLeadingZeros16.c │ ├── s_countLeadingZeros32.c │ ├── s_countLeadingZeros64.c │ ├── s_countLeadingZeros8.c │ ├── s_eq128.c │ ├── s_invalidExtF80M.c │ ├── s_invalidF128M.c │ ├── s_isNaNF128M.c │ ├── s_le128.c │ ├── s_lt128.c │ ├── s_mul128By32.c │ ├── s_mul128MTo256M.c │ ├── s_mul128To256M.c │ ├── s_mul64ByShifted32To128.c │ ├── s_mul64To128.c │ ├── s_mul64To128M.c │ ├── s_mulAddF128.c │ ├── s_mulAddF128M.c │ ├── s_mulAddF16.c │ ├── s_mulAddF32.c │ ├── s_mulAddF64.c │ ├── s_negXM.c │ ├── s_normExtF80SigM.c │ ├── s_normRoundPackMToExtF80M.c │ ├── s_normRoundPackMToF128M.c │ ├── s_normRoundPackToExtF80.c │ ├── s_normRoundPackToF128.c │ ├── s_normRoundPackToF16.c │ ├── s_normRoundPackToF32.c │ ├── s_normRoundPackToF64.c │ ├── s_normSubnormalBF16Sig.c │ ├── s_normSubnormalExtF80Sig.c │ ├── s_normSubnormalF128Sig.c │ ├── s_normSubnormalF128SigM.c │ ├── s_normSubnormalF16Sig.c │ ├── s_normSubnormalF32Sig.c │ ├── s_normSubnormalF64Sig.c │ ├── s_remStepMBy32.c │ ├── s_roundMToI64.c │ ├── s_roundMToUI64.c │ ├── s_roundPackMToExtF80M.c │ ├── s_roundPackMToF128M.c │ ├── s_roundPackToBF16.c │ ├── s_roundPackToExtF80.c │ ├── s_roundPackToF128.c │ ├── s_roundPackToF16.c │ ├── s_roundPackToF32.c │ ├── s_roundPackToF64.c │ ├── s_roundToI32.c │ ├── s_roundToI64.c │ ├── s_roundToUI32.c │ ├── s_roundToUI64.c │ ├── s_shiftLeftM.c │ ├── s_shiftNormSigF128M.c │ ├── s_shiftRightJam128.c │ ├── s_shiftRightJam128Extra.c │ ├── s_shiftRightJam256M.c │ ├── s_shiftRightJam32.c │ ├── s_shiftRightJam64.c │ ├── s_shiftRightJam64Extra.c │ ├── s_shiftRightJamM.c │ ├── s_shiftRightM.c │ ├── s_shortShiftLeft128.c │ ├── s_shortShiftLeft64To96M.c │ ├── s_shortShiftLeftM.c │ ├── s_shortShiftRight128.c │ ├── s_shortShiftRightExtendM.c │ ├── s_shortShiftRightJam128.c │ ├── s_shortShiftRightJam128Extra.c │ ├── s_shortShiftRightJam64.c │ ├── s_shortShiftRightJam64Extra.c │ ├── s_shortShiftRightJamM.c │ ├── s_shortShiftRightM.c │ ├── s_sub128.c │ ├── s_sub1XM.c │ ├── s_sub256M.c │ ├── s_subM.c │ ├── s_subMagsExtF80.c │ ├── s_subMagsF128.c │ ├── s_subMagsF16.c │ ├── s_subMagsF32.c │ ├── s_subMagsF64.c │ ├── s_tryPropagateNaNExtF80M.c │ ├── s_tryPropagateNaNF128M.c │ ├── softfloat_state.c │ ├── ui32_to_extF80.c │ ├── ui32_to_extF80M.c │ ├── ui32_to_f128.c │ ├── ui32_to_f128M.c │ ├── ui32_to_f16.c │ ├── ui32_to_f32.c │ ├── ui32_to_f64.c │ ├── ui64_to_extF80.c │ ├── ui64_to_extF80M.c │ ├── ui64_to_f128.c │ ├── ui64_to_f128M.c │ ├── ui64_to_f16.c │ ├── ui64_to_f32.c │ └── ui64_to_f64.c ├── trace-reader ├── Makefile ├── PageTableMaker.cpp ├── PageTableMaker.hpp ├── README.md ├── TraceReader.cpp ├── TraceReader.hpp └── sample-reader.cpp ├── trapEnums.hpp ├── upload └── upload.sh ├── util.hpp ├── vector-crypto.cpp ├── vector.cpp ├── virtual_memory ├── BUILD.bazel ├── Makefile ├── Pte.hpp ├── Tlb.cpp ├── Tlb.hpp ├── VirtMem.cpp ├── VirtMem.hpp ├── address_translation.hpp └── trapEnums.hpp ├── whisper.cpp ├── wideint.cpp └── wideint.hpp /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.bazelrc -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/.project -------------------------------------------------------------------------------- /Args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Args.cpp -------------------------------------------------------------------------------- /Args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Args.hpp -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /Cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Cache.hpp -------------------------------------------------------------------------------- /Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Core.cpp -------------------------------------------------------------------------------- /Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Core.hpp -------------------------------------------------------------------------------- /CsRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/CsRegs.cpp -------------------------------------------------------------------------------- /CsRegs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/CsRegs.hpp -------------------------------------------------------------------------------- /CsrFields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/CsrFields.hpp -------------------------------------------------------------------------------- /DecodedInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/DecodedInst.cpp -------------------------------------------------------------------------------- /DecodedInst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/DecodedInst.hpp -------------------------------------------------------------------------------- /Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Decoder.cpp -------------------------------------------------------------------------------- /Decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Decoder.hpp -------------------------------------------------------------------------------- /Disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Disassembler.cpp -------------------------------------------------------------------------------- /Disassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Disassembler.hpp -------------------------------------------------------------------------------- /Filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Filesystem.hpp -------------------------------------------------------------------------------- /FpRegNames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/FpRegNames.hpp -------------------------------------------------------------------------------- /FpRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/FpRegs.cpp -------------------------------------------------------------------------------- /FpRegs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/FpRegs.hpp -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Hart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Hart.cpp -------------------------------------------------------------------------------- /Hart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Hart.hpp -------------------------------------------------------------------------------- /HartConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/HartConfig.cpp -------------------------------------------------------------------------------- /HartConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/HartConfig.hpp -------------------------------------------------------------------------------- /InstEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/InstEntry.cpp -------------------------------------------------------------------------------- /InstEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/InstEntry.hpp -------------------------------------------------------------------------------- /InstId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/InstId.hpp -------------------------------------------------------------------------------- /InstProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/InstProfile.cpp -------------------------------------------------------------------------------- /InstProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/InstProfile.hpp -------------------------------------------------------------------------------- /IntRegNames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/IntRegNames.hpp -------------------------------------------------------------------------------- /IntRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/IntRegs.cpp -------------------------------------------------------------------------------- /IntRegs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/IntRegs.hpp -------------------------------------------------------------------------------- /Interactive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Interactive.cpp -------------------------------------------------------------------------------- /Interactive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Interactive.hpp -------------------------------------------------------------------------------- /IoDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/IoDevice.hpp -------------------------------------------------------------------------------- /Isa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Isa.cpp -------------------------------------------------------------------------------- /Isa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Isa.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/LICENSE -------------------------------------------------------------------------------- /Lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Lock.hpp -------------------------------------------------------------------------------- /Mcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Mcm.cpp -------------------------------------------------------------------------------- /Mcm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Mcm.hpp -------------------------------------------------------------------------------- /Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Memory.cpp -------------------------------------------------------------------------------- /Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Memory.hpp -------------------------------------------------------------------------------- /PerfApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PerfApi.cpp -------------------------------------------------------------------------------- /PerfApi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PerfApi.hpp -------------------------------------------------------------------------------- /PerfRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PerfRegs.cpp -------------------------------------------------------------------------------- /PerfRegs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PerfRegs.hpp -------------------------------------------------------------------------------- /PmaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PmaManager.cpp -------------------------------------------------------------------------------- /PmaManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PmaManager.hpp -------------------------------------------------------------------------------- /PmaskManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PmaskManager.hpp -------------------------------------------------------------------------------- /PmpManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/PmpManager.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/README.md -------------------------------------------------------------------------------- /RegNamesTemplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/RegNamesTemplate.hpp -------------------------------------------------------------------------------- /RemoteFrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/RemoteFrameBuffer.cpp -------------------------------------------------------------------------------- /RemoteFrameBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/RemoteFrameBuffer.hpp -------------------------------------------------------------------------------- /Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Server.cpp -------------------------------------------------------------------------------- /Server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Server.hpp -------------------------------------------------------------------------------- /Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Session.cpp -------------------------------------------------------------------------------- /Session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Session.hpp -------------------------------------------------------------------------------- /SparseMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/SparseMem.cpp -------------------------------------------------------------------------------- /SparseMem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/SparseMem.hpp -------------------------------------------------------------------------------- /Stee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Stee.hpp -------------------------------------------------------------------------------- /Syscall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Syscall.cpp -------------------------------------------------------------------------------- /Syscall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Syscall.hpp -------------------------------------------------------------------------------- /System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/System.cpp -------------------------------------------------------------------------------- /System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/System.hpp -------------------------------------------------------------------------------- /Third-Party_Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Third-Party_Notices.txt -------------------------------------------------------------------------------- /Trace.cpp: -------------------------------------------------------------------------------- 1 | #include "Trace.hpp" 2 | -------------------------------------------------------------------------------- /Trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Trace.hpp -------------------------------------------------------------------------------- /Triggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Triggers.cpp -------------------------------------------------------------------------------- /Triggers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Triggers.hpp -------------------------------------------------------------------------------- /Uart8250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Uart8250.cpp -------------------------------------------------------------------------------- /Uart8250.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Uart8250.hpp -------------------------------------------------------------------------------- /Uartsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Uartsf.cpp -------------------------------------------------------------------------------- /Uartsf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/Uartsf.hpp -------------------------------------------------------------------------------- /VecLdStInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/VecLdStInfo.hpp -------------------------------------------------------------------------------- /VecRegs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/VecRegs.cpp -------------------------------------------------------------------------------- /VecRegs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/VecRegs.hpp -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WhisperMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/WhisperMessage.cpp -------------------------------------------------------------------------------- /WhisperMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/WhisperMessage.h -------------------------------------------------------------------------------- /amo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/amo.cpp -------------------------------------------------------------------------------- /aplic/Aplic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/aplic/Aplic.cpp -------------------------------------------------------------------------------- /aplic/Aplic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/aplic/Aplic.hpp -------------------------------------------------------------------------------- /aplic/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/aplic/BUILD.bazel -------------------------------------------------------------------------------- /aplic/Domain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/aplic/Domain.cpp -------------------------------------------------------------------------------- /aplic/Domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/aplic/Domain.hpp -------------------------------------------------------------------------------- /arch_test_target/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/link.ld -------------------------------------------------------------------------------- /arch_test_target/model_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/model_test.h -------------------------------------------------------------------------------- /arch_test_target/riscof_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/riscof_whisper.py -------------------------------------------------------------------------------- /arch_test_target/whisper_isa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/whisper_isa.yaml -------------------------------------------------------------------------------- /arch_test_target/whisper_isa32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/whisper_isa32.yaml -------------------------------------------------------------------------------- /arch_test_target/whisper_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/arch_test_target/whisper_platform.yaml -------------------------------------------------------------------------------- /bitmanip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/bitmanip.cpp -------------------------------------------------------------------------------- /cbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/cbo.cpp -------------------------------------------------------------------------------- /configuration/bh-tt-whisper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/configuration/bh-tt-whisper.json -------------------------------------------------------------------------------- /configuration/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/configuration/config_schema.json -------------------------------------------------------------------------------- /crypto-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/crypto-util.hpp -------------------------------------------------------------------------------- /crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/crypto.cpp -------------------------------------------------------------------------------- /deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/deps.bzl -------------------------------------------------------------------------------- /deps2.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/deps2.bzl -------------------------------------------------------------------------------- /dot-product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/dot-product.cpp -------------------------------------------------------------------------------- /eclipse_ide_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/eclipse_ide_setup.txt -------------------------------------------------------------------------------- /env_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/env_vars -------------------------------------------------------------------------------- /float-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/float-util.hpp -------------------------------------------------------------------------------- /float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/float.cpp -------------------------------------------------------------------------------- /float16-compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/float16-compat.hpp -------------------------------------------------------------------------------- /functors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/functors.hpp -------------------------------------------------------------------------------- /gdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/gdb.cpp -------------------------------------------------------------------------------- /hypervisor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/hypervisor.cpp -------------------------------------------------------------------------------- /imsic/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/imsic/BUILD.bazel -------------------------------------------------------------------------------- /imsic/Imsic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/imsic/Imsic.cpp -------------------------------------------------------------------------------- /imsic/Imsic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/imsic/Imsic.hpp -------------------------------------------------------------------------------- /instforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/instforms.cpp -------------------------------------------------------------------------------- /instforms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/instforms.hpp -------------------------------------------------------------------------------- /iommu/Ats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/Ats.hpp -------------------------------------------------------------------------------- /iommu/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/BUILD.bazel -------------------------------------------------------------------------------- /iommu/DeviceContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/DeviceContext.hpp -------------------------------------------------------------------------------- /iommu/FaultQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/FaultQueue.hpp -------------------------------------------------------------------------------- /iommu/Iommu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/Iommu.cpp -------------------------------------------------------------------------------- /iommu/Iommu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/Iommu.hpp -------------------------------------------------------------------------------- /iommu/IommuPmaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/IommuPmaManager.cpp -------------------------------------------------------------------------------- /iommu/IommuPmaManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/IommuPmaManager.hpp -------------------------------------------------------------------------------- /iommu/IommuPmpManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/IommuPmpManager.hpp -------------------------------------------------------------------------------- /iommu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/Makefile -------------------------------------------------------------------------------- /iommu/MsiPte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/MsiPte.hpp -------------------------------------------------------------------------------- /iommu/ProcessContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/ProcessContext.hpp -------------------------------------------------------------------------------- /iommu/riscv_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/riscv_enums.hpp -------------------------------------------------------------------------------- /iommu/tests/IommuStructures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/IommuStructures.hpp -------------------------------------------------------------------------------- /iommu/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/Makefile -------------------------------------------------------------------------------- /iommu/tests/MemoryManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/MemoryManager.hpp -------------------------------------------------------------------------------- /iommu/tests/MemoryModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/MemoryModel.hpp -------------------------------------------------------------------------------- /iommu/tests/TableBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/TableBuilder.hpp -------------------------------------------------------------------------------- /iommu/tests/ats-unified-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/ats-unified-test.cpp -------------------------------------------------------------------------------- /iommu/tests/command-queue-testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/command-queue-testplan.md -------------------------------------------------------------------------------- /iommu/tests/device-context-test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/device-context-test-plan.md -------------------------------------------------------------------------------- /iommu/tests/device-table-walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/device-table-walk.cpp -------------------------------------------------------------------------------- /iommu/tests/fault-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/fault-queue.cpp -------------------------------------------------------------------------------- /iommu/tests/iofence-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/iofence-test.cpp -------------------------------------------------------------------------------- /iommu/tests/msi-translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/msi-translation.cpp -------------------------------------------------------------------------------- /iommu/tests/process-table-walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/process-table-walk.cpp -------------------------------------------------------------------------------- /iommu/tests/test_iodir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/test_iodir.cpp -------------------------------------------------------------------------------- /iommu/tests/test_iotinval_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/iommu/tests/test_iotinval_commands.cpp -------------------------------------------------------------------------------- /numa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/numa.cpp -------------------------------------------------------------------------------- /numa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/numa.hpp -------------------------------------------------------------------------------- /pci/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/BUILD.bazel -------------------------------------------------------------------------------- /pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/Makefile -------------------------------------------------------------------------------- /pci/Pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/Pci.cpp -------------------------------------------------------------------------------- /pci/Pci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/Pci.hpp -------------------------------------------------------------------------------- /pci/PciDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/PciDev.cpp -------------------------------------------------------------------------------- /pci/PciDev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/PciDev.hpp -------------------------------------------------------------------------------- /pci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/README.md -------------------------------------------------------------------------------- /pci/msix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/msix.hpp -------------------------------------------------------------------------------- /pci/virtio/Blk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/virtio/Blk.cpp -------------------------------------------------------------------------------- /pci/virtio/Blk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/virtio/Blk.hpp -------------------------------------------------------------------------------- /pci/virtio/Virtio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/virtio/Virtio.cpp -------------------------------------------------------------------------------- /pci/virtio/Virtio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/pci/virtio/Virtio.hpp -------------------------------------------------------------------------------- /printTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/printTrace.cpp -------------------------------------------------------------------------------- /py-bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/py-bindings.cpp -------------------------------------------------------------------------------- /rv_auto_build_this_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/rv_auto_build_this_tool.py -------------------------------------------------------------------------------- /snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/snapshot.cpp -------------------------------------------------------------------------------- /softfloat-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/softfloat-util.hpp -------------------------------------------------------------------------------- /testing/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/testing/configs.py -------------------------------------------------------------------------------- /testing/init_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/testing/init_venv.sh -------------------------------------------------------------------------------- /testing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/testing/requirements.txt -------------------------------------------------------------------------------- /third_party/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/.clang-tidy -------------------------------------------------------------------------------- /third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/BUILD.bazel -------------------------------------------------------------------------------- /third_party/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elf_types.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /third_party/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /third_party/linenoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/linenoise.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/json.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /third_party/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /third_party/softfloat/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/COPYING.txt -------------------------------------------------------------------------------- /third_party/softfloat/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/README.html -------------------------------------------------------------------------------- /third_party/softfloat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/README.md -------------------------------------------------------------------------------- /third_party/softfloat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/README.txt -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-386-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-386-GCC/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-386-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-386-GCC/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-386-SSE2-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-386-SSE2-GCC/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-386-SSE2-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-386-SSE2-GCC/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-ARM-VFPv2-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-ARM-VFPv2-GCC/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-ARM-VFPv2-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-ARM-VFPv2-GCC/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-x86_64-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-x86_64-GCC/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Linux-x86_64-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Linux-x86_64-GCC/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/RISCV-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/RISCV-GCC/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/RISCV-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/RISCV-GCC/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Win32-MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win32-MinGW/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Win32-MinGW/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win32-MinGW/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Win32-SSE2-MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win32-SSE2-MinGW/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Win32-SSE2-MinGW/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win32-SSE2-MinGW/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/Win64-MinGW-w64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win64-MinGW-w64/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/Win64-MinGW-w64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/Win64-MinGW-w64/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/template-FAST_INT64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/template-FAST_INT64/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/template-FAST_INT64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/template-FAST_INT64/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/build/template-not-FAST_INT64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/template-not-FAST_INT64/Makefile -------------------------------------------------------------------------------- /third_party/softfloat/build/template-not-FAST_INT64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/build/template-not-FAST_INT64/platform.h -------------------------------------------------------------------------------- /third_party/softfloat/doc/SoftFloat-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/doc/SoftFloat-history.html -------------------------------------------------------------------------------- /third_party/softfloat/doc/SoftFloat-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/doc/SoftFloat-source.html -------------------------------------------------------------------------------- /third_party/softfloat/doc/SoftFloat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/doc/SoftFloat.html -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_bf16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_bf16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToBF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToBF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086-SSE/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086-SSE/specialize.h -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /third_party/softfloat/source/8086/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/8086/specialize.h -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2-defaultNaN/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2-defaultNaN/specialize.h -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ARM-VFPv2/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ARM-VFPv2/specialize.h -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_bf16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_bf16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToBF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToBF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /third_party/softfloat/source/RISCV/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/RISCV/specialize.h -------------------------------------------------------------------------------- /third_party/softfloat/source/bf16_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/bf16_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/bf16_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/bf16_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80M_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80M_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/extF80_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/extF80_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_mulAdd.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128M_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128M_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_mulAdd.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f128_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f128_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_mulAdd.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f16_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f16_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_mulAdd.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_bf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_bf16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f32_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f32_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_add.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_div.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_eq.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_eq_signaling.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_isSignalingNaN.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_le.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_le_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_lt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_lt_quiet.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_mul.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_mulAdd.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_rem.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_roundToInt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_sqrt.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_sub.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_i32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_i32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_i64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_i64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_ui32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_ui64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/f64_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/f64_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i32_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/i64_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/i64_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/include/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/internals.h -------------------------------------------------------------------------------- /third_party/softfloat/source/include/opts-GCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/opts-GCC.h -------------------------------------------------------------------------------- /third_party/softfloat/source/include/primitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/primitiveTypes.h -------------------------------------------------------------------------------- /third_party/softfloat/source/include/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/primitives.h -------------------------------------------------------------------------------- /third_party/softfloat/source/include/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/softfloat.h -------------------------------------------------------------------------------- /third_party/softfloat/source/include/softfloat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/include/softfloat_types.h -------------------------------------------------------------------------------- /third_party/softfloat/source/s_add128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_add128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_add256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_add256M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addCarryM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addCarryM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addComplCarryM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addComplCarryM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addMagsExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addMagsExtF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addMagsF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addMagsF128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addMagsF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addMagsF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addMagsF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addMagsF32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_addMagsF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_addMagsF64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_approxRecip32_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_approxRecip32_1.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_approxRecipSqrt32_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_approxRecipSqrt32_1.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_approxRecipSqrt_1Ks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_approxRecipSqrt_1Ks.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_approxRecip_1Ks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_approxRecip_1Ks.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_compare128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_compare128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_compare96M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_compare96M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_compareNonnormExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_compareNonnormExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_countLeadingZeros16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_countLeadingZeros16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_countLeadingZeros32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_countLeadingZeros32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_countLeadingZeros64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_countLeadingZeros64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_countLeadingZeros8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_countLeadingZeros8.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_eq128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_eq128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_invalidExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_invalidExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_invalidF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_invalidF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_isNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_isNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_le128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_le128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_lt128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_lt128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul128By32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul128By32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul128MTo256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul128MTo256M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul128To256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul128To256M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul64ByShifted32To128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul64ByShifted32To128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul64To128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul64To128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mul64To128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mul64To128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mulAddF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mulAddF128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mulAddF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mulAddF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mulAddF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mulAddF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mulAddF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mulAddF32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_mulAddF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_mulAddF64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_negXM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_negXM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normExtF80SigM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normExtF80SigM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackMToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackMToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackMToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackMToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackToExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackToExtF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackToF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackToF128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackToF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackToF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackToF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackToF32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normRoundPackToF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normRoundPackToF64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalBF16Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalBF16Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalExtF80Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalExtF80Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalF128Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalF128Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalF128SigM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalF128SigM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalF16Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalF16Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalF32Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalF32Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_normSubnormalF64Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_normSubnormalF64Sig.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_remStepMBy32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_remStepMBy32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundMToI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundMToI64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundMToUI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundMToUI64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackMToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackMToExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackMToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackMToF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToBF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToBF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToExtF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToF128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToF32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundPackToF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundPackToF64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundToI32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundToI32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundToI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundToI64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundToUI32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundToUI32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_roundToUI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_roundToUI64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftLeftM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftLeftM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftNormSigF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftNormSigF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam128Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam128Extra.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam256M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJam64Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJam64Extra.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightJamM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightJamM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shiftRightM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shiftRightM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftLeft128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftLeft128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftLeft64To96M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftLeft64To96M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftLeftM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftLeftM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRight128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRight128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightExtendM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightExtendM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightJam128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightJam128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightJam128Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightJam128Extra.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightJam64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightJam64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightJam64Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightJam64Extra.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightJamM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightJamM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_shortShiftRightM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_shortShiftRightM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_sub128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_sub128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_sub1XM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_sub1XM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_sub256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_sub256M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subM.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subMagsExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subMagsExtF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subMagsF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subMagsF128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subMagsF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subMagsF16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subMagsF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subMagsF32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_subMagsF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_subMagsF64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_tryPropagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_tryPropagateNaNExtF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/s_tryPropagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/s_tryPropagateNaNF128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/softfloat_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/softfloat_state.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui32_to_f64.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_extF80.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_extF80M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_f128.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_f128M.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_f16.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_f32.c -------------------------------------------------------------------------------- /third_party/softfloat/source/ui64_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/third_party/softfloat/source/ui64_to_f64.c -------------------------------------------------------------------------------- /trace-reader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/Makefile -------------------------------------------------------------------------------- /trace-reader/PageTableMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/PageTableMaker.cpp -------------------------------------------------------------------------------- /trace-reader/PageTableMaker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/PageTableMaker.hpp -------------------------------------------------------------------------------- /trace-reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/README.md -------------------------------------------------------------------------------- /trace-reader/TraceReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/TraceReader.cpp -------------------------------------------------------------------------------- /trace-reader/TraceReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/TraceReader.hpp -------------------------------------------------------------------------------- /trace-reader/sample-reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/trace-reader/sample-reader.cpp -------------------------------------------------------------------------------- /trapEnums.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "virtual_memory/trapEnums.hpp" 4 | -------------------------------------------------------------------------------- /upload/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/upload/upload.sh -------------------------------------------------------------------------------- /util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/util.hpp -------------------------------------------------------------------------------- /vector-crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/vector-crypto.cpp -------------------------------------------------------------------------------- /vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/vector.cpp -------------------------------------------------------------------------------- /virtual_memory/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/BUILD.bazel -------------------------------------------------------------------------------- /virtual_memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/Makefile -------------------------------------------------------------------------------- /virtual_memory/Pte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/Pte.hpp -------------------------------------------------------------------------------- /virtual_memory/Tlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/Tlb.cpp -------------------------------------------------------------------------------- /virtual_memory/Tlb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/Tlb.hpp -------------------------------------------------------------------------------- /virtual_memory/VirtMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/VirtMem.cpp -------------------------------------------------------------------------------- /virtual_memory/VirtMem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/VirtMem.hpp -------------------------------------------------------------------------------- /virtual_memory/address_translation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/address_translation.hpp -------------------------------------------------------------------------------- /virtual_memory/trapEnums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/virtual_memory/trapEnums.hpp -------------------------------------------------------------------------------- /whisper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/whisper.cpp -------------------------------------------------------------------------------- /wideint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/wideint.cpp -------------------------------------------------------------------------------- /wideint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/whisper/HEAD/wideint.hpp --------------------------------------------------------------------------------