| 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 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 Loading... |
| 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 |
| OLD | NEW |