Chromium Code Reviews| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 ; Breakpad-like exception filter. | 132 ; Breakpad-like exception filter. |
| 133 asan_CrashForException | 133 asan_CrashForException |
| 134 | 134 |
| 135 ; Functions exposed to enable/disable the deferred trimming mechanism. | 135 ; Functions exposed to enable/disable the deferred trimming mechanism. |
| 136 asan_EnableDeferredFreeThread | 136 asan_EnableDeferredFreeThread |
| 137 asan_DisableDeferredFreeThread | 137 asan_DisableDeferredFreeThread |
| 138 | 138 |
| 139 ; Exposed to allow the user to enumerate runtime experiments. | 139 ; Exposed to allow the user to enumerate runtime experiments. |
| 140 asan_EnumExperiments | 140 asan_EnumExperiments |
| 141 | 141 |
| 142 ; Reinitialize the SyzyAsan crash reporter. | |
|
chrisha
2016/12/15 18:48:49
This is initializing the crash reporter, not reini
| |
| 143 asan_ReinitializeCrashHandler | |
| 144 | |
| 142 ; Clang-Asan access checking functions. | 145 ; Clang-Asan access checking functions. |
| 143 __asan_load1=asan_redirect_load1 | 146 __asan_load1=asan_redirect_load1 |
| 144 __asan_load2=asan_redirect_load2 | 147 __asan_load2=asan_redirect_load2 |
| 145 __asan_load4=asan_redirect_load4 | 148 __asan_load4=asan_redirect_load4 |
| 146 __asan_load8=asan_redirect_load8 | 149 __asan_load8=asan_redirect_load8 |
| 147 __asan_load16=asan_redirect_load16 | 150 __asan_load16=asan_redirect_load16 |
| 148 __asan_load32=asan_redirect_load32 | 151 __asan_load32=asan_redirect_load32 |
| 149 __asan_store1=asan_redirect_store1 | 152 __asan_store1=asan_redirect_store1 |
| 150 __asan_store2=asan_redirect_store2 | 153 __asan_store2=asan_redirect_store2 |
| 151 __asan_store4=asan_redirect_store4 | 154 __asan_store4=asan_redirect_store4 |
| 152 __asan_store8=asan_redirect_store8 | 155 __asan_store8=asan_redirect_store8 |
| 153 __asan_store16=asan_redirect_store16 | 156 __asan_store16=asan_redirect_store16 |
| 154 __asan_store32=asan_redirect_store32 | 157 __asan_store32=asan_redirect_store32 |
| 155 | 158 |
| 156 ; Generated system intercepts | 159 ; Generated system intercepts |
| 157 asan_ReadFile | 160 asan_ReadFile |
| 158 asan_ReadFileEx | 161 asan_ReadFileEx |
| 159 asan_WriteFile | 162 asan_WriteFile |
| 160 asan_WriteFileEx | 163 asan_WriteFileEx |
| 161 asan_InterlockedCompareExchange | 164 asan_InterlockedCompareExchange |
| 162 asan_InterlockedIncrement | 165 asan_InterlockedIncrement |
| 163 asan_InterlockedDecrement | 166 asan_InterlockedDecrement |
| 164 asan_InterlockedExchange | 167 asan_InterlockedExchange |
| 165 asan_InterlockedExchangeAdd | 168 asan_InterlockedExchangeAdd |
| OLD | NEW |