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

Side by Side Diff: runtime/szrt_ll.ll

Issue 944333002: Subzero: Update tests and build scripts for sandboxing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: More code review changes Created 5 years, 10 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 | « runtime/szrt_i686.ll ('k') | src/IceCfgNode.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ;;===- subzero/runtime/szrt_ll.ll - Subzero runtime source ----------------===;;
2 ;;
3 ;; The Subzero Code Generator
4 ;;
5 ;; This file is distributed under the University of Illinois Open Source
6 ;; License. See LICENSE.TXT for details.
7 ;;
8 ;;===----------------------------------------------------------------------===;;
9 ;;
10 ;; This file implements wrappers for particular bitcode instructions that are
11 ;; too uncommon and complex for a particular target to bother implementing
12 ;; directly in Subzero target lowering. This needs to be compiled by some
13 ;; non-Subzero compiler.
14 ;;
15 ;;===----------------------------------------------------------------------===;;
16
17 define <4 x float> @Sz_uitofp_v4i32(<4 x i32> %a) {
18 entry:
19 %0 = uitofp <4 x i32> %a to <4 x float>
20 ret <4 x float> %0
21 }
22
23 define <4 x i32> @Sz_fptoui_v4f32(<4 x float> %a) {
24 entry:
25 %0 = fptoui <4 x float> %a to <4 x i32>
26 ret <4 x i32> %0
27 }
OLDNEW
« no previous file with comments | « runtime/szrt_i686.ll ('k') | src/IceCfgNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698