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

Unified Diff: runtime/szrt_ll.ll

Issue 961413002: Subzero: Clean up the runtime implementation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change static helper strings to be char* instead of IceString 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/szrt.c ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/szrt_ll.ll
diff --git a/runtime/szrt_ll.ll b/runtime/szrt_ll.ll
index 3a1712158fc362a57f0fb4fbc44a93e5767530f7..1ecfffedc6d56e2eb8081ec250c3800dd61627e6 100644
--- a/runtime/szrt_ll.ll
+++ b/runtime/szrt_ll.ll
@@ -14,14 +14,38 @@
;;
;;===----------------------------------------------------------------------===;;
-define <4 x float> @Sz_uitofp_v4i32(<4 x i32> %a) {
+define <4 x float> @__Sz_uitofp_4xi32_4xf32(<4 x i32> %a) {
entry:
%0 = uitofp <4 x i32> %a to <4 x float>
ret <4 x float> %0
}
-define <4 x i32> @Sz_fptoui_v4f32(<4 x float> %a) {
+define <4 x i32> @__Sz_fptoui_4xi32_f32(<4 x float> %a) {
entry:
%0 = fptoui <4 x float> %a to <4 x i32>
ret <4 x i32> %0
}
+
+define i8 @__Sz_bitcast_8xi1_i8(<8 x i1> %a) {
+entry:
+ %0 = bitcast <8 x i1> %a to i8
+ ret i8 %0
+}
+
+define i16 @__Sz_bitcast_16xi1_i16(<16 x i1> %a) {
+entry:
+ %0 = bitcast <16 x i1> %a to i16
+ ret i16 %0
+}
+
+define <8 x i1> @__Sz_bitcast_i8_8xi1(i8 %a) {
+entry:
+ %0 = bitcast i8 %a to <8 x i1>
+ ret <8 x i1> %0
+}
+
+define <16 x i1> @__Sz_bitcast_i16_16xi1(i16 %a) {
+entry:
+ %0 = bitcast i16 %a to <16 x i1>
+ ret <16 x i1> %0
+}
« no previous file with comments | « runtime/szrt.c ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698