| OLD | NEW |
| 1 //===- subzero/runtime/szrt.c - Subzero runtime source ----------*- C++ -*-===// | 1 //===- subzero/runtime/szrt.c - Subzero runtime source ----------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file implements the runtime helper routines that are needed by | 10 // This file implements the runtime helper routines that are needed by |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 double cvtsi64tod(int64_t value) { | 62 double cvtsi64tod(int64_t value) { |
| 63 return (double) value; | 63 return (double) value; |
| 64 } | 64 } |
| 65 | 65 |
| 66 double cvtui64tod(uint64_t value) { | 66 double cvtui64tod(uint64_t value) { |
| 67 return (double) value; | 67 return (double) value; |
| 68 } | 68 } |
| 69 | 69 |
| 70 /* TODO(stichnot): | 70 /* TODO(stichnot): |
| 71 Sz_fptoui_v4f32 | |
| 72 Sz_uitofp_v4i32 | |
| 73 Sz_bitcast_v8i1_to_i8 | 71 Sz_bitcast_v8i1_to_i8 |
| 74 Sz_bitcast_v16i1_to_i16 | 72 Sz_bitcast_v16i1_to_i16 |
| 75 Sz_bitcast_i8_to_v8i1 | 73 Sz_bitcast_i8_to_v8i1 |
| 76 Sz_bitcast_i16_to_v16i1 | 74 Sz_bitcast_i16_to_v16i1 |
| 77 */ | 75 */ |
| OLD | NEW |