File tree
80 files changed
+4978
-246
lines changed- src
- bootstrap
- libpanic_abort
- libpanic_unwind
- libstd
- io
- net
- sys
- cloudabi
- shims
- redox
- net
- sgx
- abi
- usercalls
- unix
- wasm
- windows
- sys_common
- thread
- libtest
- libunwind
- rustc/fortanix-sgx-abi_shim
- tools/tidy/src
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
80 files changed
+4978
-246
lines changed+3-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
61 | 61 |
| |
62 | 62 |
| |
63 | 63 |
| |
64 |
| - | |
65 | 64 |
| |
66 | 65 |
| |
67 | 66 |
| |
68 | 67 |
| |
69 | 68 |
| |
70 | 69 |
| |
| 70 | + | |
| 71 | + | |
| 72 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
797 | 797 |
| |
798 | 798 |
| |
799 | 799 |
| |
| 800 | + | |
| 801 | + | |
| 802 | + | |
| 803 | + | |
| 804 | + | |
| 805 | + | |
| 806 | + | |
| 807 | + | |
800 | 808 |
| |
801 | 809 |
| |
802 | 810 |
| |
| |||
2773 | 2781 |
| |
2774 | 2782 |
| |
2775 | 2783 |
| |
| 2784 | + | |
2776 | 2785 |
| |
2777 | 2786 |
| |
2778 | 2787 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
874 | 874 |
| |
875 | 875 |
| |
876 | 876 |
| |
| 877 | + | |
877 | 878 |
| |
878 | 879 |
| |
879 | 880 |
| |
|
Submodule libcompiler_builtins updated from fe74674 to 10f4f35
- .travis.yml+46-54
- Cargo.lock+3-3
- Cargo.toml+2-1
- README.md+1-2
- appveyor.yml+2-2
- build.rs+1-1
- ci/android-install-ndk.sh+3-3
- ci/android-install-sdk.sh+2-2
- ci/android-sysimage.sh+22-18
- ci/dox.sh+8-8
- ci/emscripten-entry.sh+1
- ci/emscripten.sh+4-2
- ci/linux-s390x.sh+2
- ci/linux-sparc64.sh+2
- ci/run-docker.sh+18-13
- ci/run-qemu.sh+7-5
- ci/run.sh+33-32
- ci/style.rs+4-1
- libc-test/Cargo.toml+1-1
- libc-test/build.rs+173-121
- src/cloudabi/mod.rs+152
- src/dox.rs+27-17
- src/fuchsia/mod.rs+158-1
- src/lib.rs+150-271
- src/macros.rs+4-1
- src/redox/mod.rs+154
- src/sgx.rs+54
- src/switch.rs+22-1
- src/unix/bsd/apple/mod.rs+18-2
- src/unix/bsd/freebsdlike/dragonfly/mod.rs+8
- src/unix/bsd/freebsdlike/freebsd/mod.rs+76
- src/unix/bsd/freebsdlike/mod.rs+153-136
- src/unix/bsd/mod.rs+43
- src/unix/bsd/netbsdlike/mod.rs+16
- src/unix/bsd/netbsdlike/netbsd/aarch64.rs+1
- src/unix/bsd/netbsdlike/netbsd/arm.rs+1
- src/unix/bsd/netbsdlike/netbsd/mod.rs+74-7
- src/unix/bsd/netbsdlike/netbsd/powerpc.rs+1
- src/unix/bsd/netbsdlike/netbsd/sparc64.rs+1
- src/unix/bsd/netbsdlike/netbsd/x86.rs+1
- src/unix/bsd/netbsdlike/netbsd/x86_64.rs+1
- src/unix/bsd/netbsdlike/openbsdlike/mod.rs+2
- src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs+2
- src/unix/haiku/mod.rs+12
- src/unix/hermit/mod.rs+6
- src/unix/mod.rs+178
- src/unix/newlib/mod.rs+6
- src/unix/notbsd/android/mod.rs+9-1
- src/unix/notbsd/emscripten.rs+12-1
- src/unix/notbsd/linux/mod.rs+12-1
- src/unix/notbsd/linux/musl/b32/arm.rs+3
- src/unix/notbsd/linux/musl/b32/mips.rs+3
- src/unix/notbsd/linux/musl/b32/powerpc.rs+3
- src/unix/notbsd/linux/musl/b32/x86.rs+3
- src/unix/notbsd/linux/musl/b64/aarch64.rs+3
- src/unix/notbsd/linux/musl/b64/powerpc64.rs+47-44
- src/unix/notbsd/linux/musl/mod.rs+4
- src/unix/notbsd/linux/other/b32/mod.rs+4
- src/unix/notbsd/linux/other/b64/aarch64.rs+4
- src/unix/notbsd/linux/other/b64/powerpc64.rs+4
- src/unix/notbsd/linux/other/b64/sparc64.rs+4
- src/unix/notbsd/mod.rs+37
- src/unix/solaris/mod.rs+8
- src/unix/uclibc/mod.rs+13-2
- src/windows.rs+152
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
66 | 66 |
| |
67 | 67 |
| |
68 | 68 |
| |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
69 | 75 |
| |
70 | 76 |
| |
71 | 77 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
62 | 62 |
| |
63 | 63 |
| |
64 | 64 |
| |
65 |
| - | |
| 65 | + | |
66 | 66 |
| |
67 | 67 |
| |
68 | 68 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
38 |
| - | |
| 38 | + | |
39 | 39 |
| |
40 | 40 |
| |
| 41 | + | |
| 42 | + | |
| 43 | + | |
41 | 44 |
| |
42 | 45 |
| |
43 | 46 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
184 | 184 |
| |
185 | 185 |
| |
186 | 186 |
| |
187 |
| - | |
| 187 | + | |
188 | 188 |
| |
189 | 189 |
| |
190 | 190 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
| 29 | + | |
29 | 30 |
| |
30 | 31 |
| |
31 | 32 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
312 | 312 |
| |
313 | 313 |
| |
314 | 314 |
| |
| 315 | + | |
| 316 | + | |
315 | 317 |
| |
316 | 318 |
| |
317 | 319 |
| |
| |||
354 | 356 |
| |
355 | 357 |
| |
356 | 358 |
| |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
357 | 365 |
| |
358 | 366 |
| |
359 | 367 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 |
| - | |
| 19 | + | |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
| 23 | + | |
23 | 24 |
| |
24 | 25 |
| |
25 | 26 |
| |
| |||
863 | 864 |
| |
864 | 865 |
| |
865 | 866 |
| |
866 |
| - | |
867 |
| - | |
868 |
| - | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
869 | 870 |
| |
870 | 871 |
| |
871 | 872 |
| |
| |||
885 | 886 |
| |
886 | 887 |
| |
887 | 888 |
| |
888 |
| - | |
| 889 | + | |
889 | 890 |
| |
890 | 891 |
| |
891 | 892 |
| |
| |||
899 | 900 |
| |
900 | 901 |
| |
901 | 902 |
| |
902 |
| - | |
903 |
| - | |
904 |
| - | |
905 |
| - | |
906 |
| - | |
907 |
| - | |
908 |
| - | |
909 |
| - | |
910 |
| - | |
911 |
| - | |
912 |
| - | |
913 |
| - | |
914 |
| - | |
915 |
| - | |
916 |
| - | |
917 |
| - | |
| 903 | + | |
918 | 904 |
| |
919 | 905 |
| |
920 | 906 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
112 | 112 |
| |
113 | 113 |
| |
114 | 114 |
| |
115 |
| - | |
| 115 | + | |
116 | 116 |
| |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
117 | 121 |
| |
118 |
| - | |
119 |
| - | |
| 122 | + | |
| 123 | + | |
120 | 124 |
| |
121 | 125 |
| |
122 | 126 |
| |
|
+11-15
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
32 |
| - | |
| 32 | + | |
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
| |||
193 | 193 |
| |
194 | 194 |
| |
195 | 195 |
| |
196 |
| - | |
197 | 196 |
| |
198 | 197 |
| |
199 | 198 |
| |
| |||
215 | 214 |
| |
216 | 215 |
| |
217 | 216 |
| |
218 |
| - | |
219 |
| - | |
220 |
| - | |
221 |
| - | |
222 |
| - | |
223 |
| - | |
224 |
| - | |
225 |
| - | |
226 |
| - | |
227 |
| - | |
228 |
| - | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
229 | 225 |
| |
230 | 226 |
| |
231 | 227 |
| |
| |||
485 | 481 |
| |
486 | 482 |
| |
487 | 483 |
| |
488 |
| - | |
| 484 | + | |
489 | 485 |
| |
490 | 486 |
| |
491 | 487 |
| |
| |||
494 | 490 |
| |
495 | 491 |
| |
496 | 492 |
| |
497 |
| - | |
| 493 | + | |
498 | 494 |
| |
499 | 495 |
| |
500 | 496 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
| 16 | + | |
16 | 17 |
| |
17 | 18 |
| |
18 | 19 |
| |
19 | 20 |
| |
20 | 21 |
| |
21 | 22 |
| |
22 |
| - | |
| 23 | + | |
23 | 24 |
| |
24 | 25 |
| |
25 | 26 |
| |
| |||
105 | 106 |
| |
106 | 107 |
| |
107 | 108 |
| |
108 |
| - | |
| 109 | + | |
109 | 110 |
| |
110 | 111 |
| |
111 | 112 |
| |
| |||
155 | 156 |
| |
156 | 157 |
| |
157 | 158 |
| |
158 |
| - | |
| 159 | + | |
159 | 160 |
| |
160 | 161 |
| |
161 | 162 |
| |
| |||
271 | 272 |
| |
272 | 273 |
| |
273 | 274 |
| |
274 |
| - | |
| 275 | + | |
275 | 276 |
| |
276 | 277 |
| |
277 | 278 |
| |
| |||
284 | 285 |
| |
285 | 286 |
| |
286 | 287 |
| |
| 288 | + | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
287 | 294 |
| |
288 | 295 |
| |
289 | 296 |
| |
290 | 297 |
| |
291 | 298 |
| |
292 | 299 |
| |
293 | 300 |
| |
294 |
| - | |
295 |
| - | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
296 | 315 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
78 | 78 |
| |
79 | 79 |
| |
80 | 80 |
| |
81 |
| - | |
82 |
| - | |
| 81 | + | |
| 82 | + | |
83 | 83 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
35 |
| - | |
| 35 | + | |
| 36 | + | |
36 | 37 |
| |
37 | 38 |
| |
38 | 39 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
48 | 48 |
| |
49 | 49 |
| |
50 | 50 |
| |
| 51 | + | |
| 52 | + | |
| 53 | + | |
51 | 54 |
| |
52 | 55 |
| |
53 | 56 |
| |
|
0 commit comments