| OLD | NEW |
| 1 ; Copyright 2015 Google Inc. All Rights Reserved. | 1 ; Copyright 2015 Google Inc. All Rights Reserved. |
| 2 ; | 2 ; |
| 3 ; Licensed under the Apache License, Version 2.0 (the "License"); | 3 ; Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 ; you may not use this file except in compliance with the License. | 4 ; you may not use this file except in compliance with the License. |
| 5 ; You may obtain a copy of the License at | 5 ; You may obtain a copy of the License at |
| 6 ; | 6 ; |
| 7 ; http://www.apache.org/licenses/LICENSE-2.0 | 7 ; http://www.apache.org/licenses/LICENSE-2.0 |
| 8 ; | 8 ; |
| 9 ; Unless required by applicable law or agreed to in writing, software | 9 ; Unless required by applicable law or agreed to in writing, software |
| 10 ; distributed under the License is distributed on an "AS IS" BASIS, | 10 ; distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 ; Breakpad-like exception filter. | 129 ; Breakpad-like exception filter. |
| 130 asan_CrashForException | 130 asan_CrashForException |
| 131 | 131 |
| 132 ; Functions exposed to enable/disable the deferred trimming mechanism. | 132 ; Functions exposed to enable/disable the deferred trimming mechanism. |
| 133 asan_EnableDeferredFreeThread | 133 asan_EnableDeferredFreeThread |
| 134 asan_DisableDeferredFreeThread | 134 asan_DisableDeferredFreeThread |
| 135 | 135 |
| 136 ; Exposed to allow the user to enumerate runtime experiments. | 136 ; Exposed to allow the user to enumerate runtime experiments. |
| 137 asan_EnumExperiments | 137 asan_EnumExperiments |
| 138 | 138 |
| 139 ; Initialize the SyzyAsan crash reporter. |
| 140 asan_InitializeCrashHandler |
| 141 |
| 139 ; Clang-Asan access checking functions. | 142 ; Clang-Asan access checking functions. |
| 140 __asan_load1=asan_redirect_load1 | 143 __asan_load1=asan_redirect_load1 |
| 141 __asan_load2=asan_redirect_load2 | 144 __asan_load2=asan_redirect_load2 |
| 142 __asan_load4=asan_redirect_load4 | 145 __asan_load4=asan_redirect_load4 |
| 143 __asan_load8=asan_redirect_load8 | 146 __asan_load8=asan_redirect_load8 |
| 144 __asan_load16=asan_redirect_load16 | 147 __asan_load16=asan_redirect_load16 |
| 145 __asan_load32=asan_redirect_load32 | 148 __asan_load32=asan_redirect_load32 |
| 146 __asan_store1=asan_redirect_store1 | 149 __asan_store1=asan_redirect_store1 |
| 147 __asan_store2=asan_redirect_store2 | 150 __asan_store2=asan_redirect_store2 |
| 148 __asan_store4=asan_redirect_store4 | 151 __asan_store4=asan_redirect_store4 |
| 149 __asan_store8=asan_redirect_store8 | 152 __asan_store8=asan_redirect_store8 |
| 150 __asan_store16=asan_redirect_store16 | 153 __asan_store16=asan_redirect_store16 |
| 151 __asan_store32=asan_redirect_store32 | 154 __asan_store32=asan_redirect_store32 |
| OLD | NEW |