Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: syzygy/agent/memprof/memory_interceptors.cc

Issue 2321423002: Merge the latest changes to master in the vs2015 branch. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « syzygy/agent/asan/syzyasan_rtl.def.template ('k') | syzygy/agent/memprof/memprof.def » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 Google Inc. All Rights Reserved. 1 // Copyright 2012 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 DEFINE_NULL_MEMORY_PROBE(asan_check_1_byte_write_access_no_flags); 61 DEFINE_NULL_MEMORY_PROBE(asan_check_1_byte_write_access_no_flags);
62 DEFINE_NULL_MEMORY_PROBE(asan_check_2_byte_write_access_no_flags); 62 DEFINE_NULL_MEMORY_PROBE(asan_check_2_byte_write_access_no_flags);
63 DEFINE_NULL_MEMORY_PROBE(asan_check_4_byte_write_access_no_flags); 63 DEFINE_NULL_MEMORY_PROBE(asan_check_4_byte_write_access_no_flags);
64 DEFINE_NULL_MEMORY_PROBE(asan_check_8_byte_write_access_no_flags); 64 DEFINE_NULL_MEMORY_PROBE(asan_check_8_byte_write_access_no_flags);
65 DEFINE_NULL_MEMORY_PROBE(asan_check_10_byte_write_access_no_flags); 65 DEFINE_NULL_MEMORY_PROBE(asan_check_10_byte_write_access_no_flags);
66 DEFINE_NULL_MEMORY_PROBE(asan_check_16_byte_write_access_no_flags); 66 DEFINE_NULL_MEMORY_PROBE(asan_check_16_byte_write_access_no_flags);
67 DEFINE_NULL_MEMORY_PROBE(asan_check_32_byte_write_access_no_flags); 67 DEFINE_NULL_MEMORY_PROBE(asan_check_32_byte_write_access_no_flags);
68 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_cmps_access); 68 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_cmps_access);
69 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_cmps_access); 69 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_cmps_access);
70 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_cmps_access); 70 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_cmps_access);
71 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_lods_access);
72 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_lods_access);
73 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_lods_access);
71 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_movs_access); 74 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_movs_access);
72 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_movs_access); 75 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_movs_access);
73 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_movs_access); 76 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_movs_access);
74 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_stos_access); 77 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_1_byte_stos_access);
75 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_stos_access); 78 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_2_byte_stos_access);
76 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_stos_access); 79 DEFINE_NULL_SPECIAL_PROBE(asan_check_repz_4_byte_stos_access);
77 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_cmps_access); 80 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_cmps_access);
78 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_cmps_access); 81 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_cmps_access);
79 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_cmps_access); 82 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_cmps_access);
83 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_lods_access);
84 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_lods_access);
85 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_lods_access);
80 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_movs_access); 86 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_movs_access);
81 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_movs_access); 87 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_movs_access);
82 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_movs_access); 88 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_movs_access);
83 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_stos_access); 89 DEFINE_NULL_SPECIAL_PROBE(asan_check_1_byte_stos_access);
84 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_stos_access); 90 DEFINE_NULL_SPECIAL_PROBE(asan_check_2_byte_stos_access);
85 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_stos_access); 91 DEFINE_NULL_SPECIAL_PROBE(asan_check_4_byte_stos_access);
86 #undef DEFINE_NULL_MEMORY_PROBE 92 #undef DEFINE_NULL_MEMORY_PROBE
87 #undef DEFINE_NULL_STRING_PROBE 93 #undef DEFINE_NULL_STRING_PROBE
88 94
89 } // extern "C" 95 } // extern "C"
OLDNEW
« no previous file with comments | « syzygy/agent/asan/syzyasan_rtl.def.template ('k') | syzygy/agent/memprof/memprof.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698