| //===- subzero/runtime/szrt.c - Subzero runtime source ----------*- C++ -*-===// |
| // The Subzero Code Generator |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // This file implements the runtime helper routines that are needed by |
| // Subzero. This needs to be compiled by some non-Subzero compiler. |
| //===----------------------------------------------------------------------===// |
| void ice_unreachable(void) { |
| uint32_t cvtftoui32(float value) { |
| uint32_t cvtdtoui32(double value) { |
| int64_t cvtftosi64(float value) { |
| int64_t cvtdtosi64(double value) { |
| uint64_t cvtftoui64(float value) { |
| uint64_t cvtdtoui64(double value) { |
| float cvtui32tof(uint32_t value) { |
| float cvtsi64tof(int64_t value) { |
| float cvtui64tof(uint64_t value) { |
| double cvtui32tod(uint32_t value) { |
| double cvtsi64tod(int64_t value) { |
| double cvtui64tod(uint64_t value) { |