| Index: syzygy/agent/asan/gen/memory_redirectors.asm
|
| diff --git a/syzygy/agent/asan/gen/memory_redirectors.asm b/syzygy/agent/asan/gen/memory_redirectors.asm
|
| index 47e777e2d427b694d5489a1949a31a0f77328303..37e3ce029d7d860a792ca9fe894053d39db85ac9 100644
|
| --- a/syzygy/agent/asan/gen/memory_redirectors.asm
|
| +++ b/syzygy/agent/asan/gen/memory_redirectors.asm
|
| @@ -60,6 +60,12 @@ PUBLIC asan_redirect_repz_1_byte_cmps_access
|
| PUBLIC asan_redirect_4_byte_cmps_access
|
| PUBLIC asan_redirect_2_byte_cmps_access
|
| PUBLIC asan_redirect_1_byte_cmps_access
|
| +PUBLIC asan_redirect_repz_4_byte_lods_access
|
| +PUBLIC asan_redirect_repz_2_byte_lods_access
|
| +PUBLIC asan_redirect_repz_1_byte_lods_access
|
| +PUBLIC asan_redirect_4_byte_lods_access
|
| +PUBLIC asan_redirect_2_byte_lods_access
|
| +PUBLIC asan_redirect_1_byte_lods_access
|
| PUBLIC asan_redirect_repz_4_byte_movs_access
|
| PUBLIC asan_redirect_repz_2_byte_movs_access
|
| PUBLIC asan_redirect_repz_1_byte_movs_access
|
| @@ -147,6 +153,18 @@ asan_redirect_2_byte_cmps_access LABEL PROC
|
| call asan_redirect_tail
|
| asan_redirect_1_byte_cmps_access LABEL PROC
|
| call asan_redirect_tail
|
| +asan_redirect_repz_4_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| +asan_redirect_repz_2_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| +asan_redirect_repz_1_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| +asan_redirect_4_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| +asan_redirect_2_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| +asan_redirect_1_byte_lods_access LABEL PROC
|
| + call asan_redirect_tail
|
| asan_redirect_repz_4_byte_movs_access LABEL PROC
|
| call asan_redirect_tail
|
| asan_redirect_repz_2_byte_movs_access LABEL PROC
|
|
|