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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 __asan_load8=asan_redirect_load8 | 149 __asan_load8=asan_redirect_load8 |
| 150 __asan_load16=asan_redirect_load16 | 150 __asan_load16=asan_redirect_load16 |
| 151 __asan_load32=asan_redirect_load32 | 151 __asan_load32=asan_redirect_load32 |
| 152 __asan_store1=asan_redirect_store1 | 152 __asan_store1=asan_redirect_store1 |
| 153 __asan_store2=asan_redirect_store2 | 153 __asan_store2=asan_redirect_store2 |
| 154 __asan_store4=asan_redirect_store4 | 154 __asan_store4=asan_redirect_store4 |
| 155 __asan_store8=asan_redirect_store8 | 155 __asan_store8=asan_redirect_store8 |
| 156 __asan_store16=asan_redirect_store16 | 156 __asan_store16=asan_redirect_store16 |
| 157 __asan_store32=asan_redirect_store32 | 157 __asan_store32=asan_redirect_store32 |
| 158 | 158 |
| 159 __asan_init=asan_init | |
| 160 __asan_get_shadow_memory_dynamic_address=asan_get_shadow_memory_dynamic_addres s | |
| 161 __asan_set_seh_filter=asan_set_seh_filter | |
| 162 __asan_should_detect_stack_use_after_return=asan_should_detect_stack_use_after _return | |
| 163 __asan_version_mismatch_check_v8=asan_version_mismatch_check_v8 | |
| 164 __asan_memset=asan_memset | |
| 165 __asan_memcpy=asan_memcpy | |
| 166 __asan_memmove=asan_memmove | |
| 167 __asan_handle_no_return=asan_handle_no_return | |
|
Sébastien Marchand
2017/06/20 22:06:14
Nit: Add a blank line after this.
njanevsk
2017/06/21 14:39:30
Done.
Sébastien Marchand
2017/06/21 14:55:41
Nop, the BL is still missing.
| |
| 159 ; Generated system intercepts | 168 ; Generated system intercepts |
| 160 asan_ReadFile | 169 asan_ReadFile |
| 161 asan_ReadFileEx | 170 asan_ReadFileEx |
| 162 asan_WriteFile | 171 asan_WriteFile |
| 163 asan_WriteFileEx | 172 asan_WriteFileEx |
| 164 asan_InterlockedCompareExchange | 173 asan_InterlockedCompareExchange |
| 165 asan_InterlockedIncrement | 174 asan_InterlockedIncrement |
| 166 asan_InterlockedDecrement | 175 asan_InterlockedDecrement |
| 167 asan_InterlockedExchange | 176 asan_InterlockedExchange |
| 168 asan_InterlockedExchangeAdd | 177 asan_InterlockedExchangeAdd |
| OLD | NEW |