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

Side by Side Diff: chrome_frame/exception_barrier_lowlevel.asm

Issue 6352023: MASM 10.0 fixes a problem introduced in 8.0 with extra underscore added.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 ; Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 ; Use of this source code is governed by a BSD-style license that can be 2 ; Use of this source code is governed by a BSD-style license that can be
3 ; found in the LICENSE file. 3 ; found in the LICENSE file.
4 ; 4 ;
5 ; Tag the exception handler as an SEH handler in case the executable 5 ; Tag the exception handler as an SEH handler in case the executable
6 ; is linked with /SAFESEH (which is the default). 6 ; is linked with /SAFESEH (which is the default).
7 ; 7 ;
8 ; MASM 8.0 inserts an additional leading underscore in front of names 8 ; MASM 8.0 inserts an additional leading underscore in front of names
9 ; and this is an attempted fix until we understand why. 9 ; and this is an attempted fix until we understand why.
10 IF @version LT 800 10 ; MASM 10.0 fixed this.
11 IF @version LT 800 OR @version GE 1000
11 _ExceptionBarrierHandler PROTO 12 _ExceptionBarrierHandler PROTO
12 .SAFESEH _ExceptionBarrierHandler 13 .SAFESEH _ExceptionBarrierHandler
13 _ExceptionBarrierReportOnlyModuleHandler PROTO 14 _ExceptionBarrierReportOnlyModuleHandler PROTO
14 .SAFESEH _ExceptionBarrierReportOnlyModuleHandler 15 .SAFESEH _ExceptionBarrierReportOnlyModuleHandler
15 _ExceptionBarrierCallCustomHandler PROTO 16 _ExceptionBarrierCallCustomHandler PROTO
16 .SAFESEH _ExceptionBarrierCallCustomHandler 17 .SAFESEH _ExceptionBarrierCallCustomHandler
17 ELSE 18 ELSE
18 ExceptionBarrierHandler PROTO 19 ExceptionBarrierHandler PROTO
19 .SAFESEH ExceptionBarrierHandler 20 .SAFESEH ExceptionBarrierHandler
20 ExceptionBarrierReportOnlyModuleHandler PROTO 21 ExceptionBarrierReportOnlyModuleHandler PROTO
(...skipping 30 matching lines...) Expand all
51 OPTION EPILOGUE:None 52 OPTION EPILOGUE:None
52 53
53 mov edx, DWORD PTR [esp + 4] 54 mov edx, DWORD PTR [esp + 4]
54 mov eax, [edx] 55 mov eax, [edx]
55 mov FS:[0], eax 56 mov FS:[0], eax
56 ret 4 57 ret 4
57 58
58 UnregisterExceptionRecord ENDP 59 UnregisterExceptionRecord ENDP
59 60
60 END 61 END
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698