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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 561049: Using RelocInfo instead of DebuggerStatementStub (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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 | « src/x64/codegen-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // --------------------------------------------------------------------------- 91 // ---------------------------------------------------------------------------
92 // Debugger Support 92 // Debugger Support
93 93
94 void SaveRegistersToMemory(RegList regs); 94 void SaveRegistersToMemory(RegList regs);
95 void RestoreRegistersFromMemory(RegList regs); 95 void RestoreRegistersFromMemory(RegList regs);
96 void PushRegistersFromMemory(RegList regs); 96 void PushRegistersFromMemory(RegList regs);
97 void PopRegistersToMemory(RegList regs); 97 void PopRegistersToMemory(RegList regs);
98 void CopyRegistersFromStackToMemory(Register base, 98 void CopyRegistersFromStackToMemory(Register base,
99 Register scratch, 99 Register scratch,
100 RegList regs); 100 RegList regs);
101 void DebugBreak();
101 #endif 102 #endif
102 103
103 // --------------------------------------------------------------------------- 104 // ---------------------------------------------------------------------------
104 // Stack limit support 105 // Stack limit support
105 106
106 // Do simple test for stack overflow. This doesn't handle an overflow. 107 // Do simple test for stack overflow. This doesn't handle an overflow.
107 void StackLimitCheck(Label* on_stack_limit_hit); 108 void StackLimitCheck(Label* on_stack_limit_hit);
108 109
109 // --------------------------------------------------------------------------- 110 // ---------------------------------------------------------------------------
110 // Activation frames 111 // Activation frames
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 } \ 813 } \
813 masm-> 814 masm->
814 #else 815 #else
815 #define ACCESS_MASM(masm) masm-> 816 #define ACCESS_MASM(masm) masm->
816 #endif 817 #endif
817 818
818 819
819 } } // namespace v8::internal 820 } } // namespace v8::internal
820 821
821 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 822 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/codegen-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698