Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: runtime/szrt.c

Issue 639543002: Add cross test for vector itofp and fptoi casts. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: share more Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pydir/szbuild.py ('k') | runtime/szrt_i686.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 */
OLDNEW
« no previous file with comments | « pydir/szbuild.py ('k') | runtime/szrt_i686.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698