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

Side by Side Diff: runtime/szrt.c

Issue 2682673002: [SubZero] Generate spin-lock for atomic load store (Closed)
Patch Set: Addressed review comments Created 3 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 | « no previous file | src/IceTargetLoweringMIPS32.h » ('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 wrappers for particular bitcode instructions 10 // This file implements wrappers for particular bitcode instructions
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // fmod - frem f64 57 // fmod - frem f64
58 // libc: 58 // libc:
59 // setjmp - call @llvm.nacl.setjmp 59 // setjmp - call @llvm.nacl.setjmp
60 // longjmp - call @llvm.nacl.longjmp 60 // longjmp - call @llvm.nacl.longjmp
61 // memcpy - call @llvm.memcpy.p0i8.p0i8.i32 61 // memcpy - call @llvm.memcpy.p0i8.p0i8.i32
62 // memmove - call @llvm.memmove.p0i8.p0i8.i32 62 // memmove - call @llvm.memmove.p0i8.p0i8.i32
63 // memset - call @llvm.memset.p0i8.i32 63 // memset - call @llvm.memset.p0i8.i32
64 // unsandboxed_irt: 64 // unsandboxed_irt:
65 // __nacl_read_tp 65 // __nacl_read_tp
66 // __aeabi_read_tp [arm32 only] 66 // __aeabi_read_tp [arm32 only]
67 // MIPS runtime library:
68 // __sync_fetch_and_add_8
69 // __sync_fetch_and_and_8
70 // __sync_fetch_and_or_8
71 // __sync_fetch_and_sub_8
72 // __sync_fetch_and_xor_8
73 // __sync_lock_test_and_set_8
74 // __sync_val_compare_and_swap_8
OLDNEW
« no previous file with comments | « no previous file | src/IceTargetLoweringMIPS32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698