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

Side by Side Diff: src/ia32/macro-assembler-ia32.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/ia32/codegen-ia32.cc ('k') | src/ia32/macro-assembler-ia32.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 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 // --------------------------------------------------------------------------- 62 // ---------------------------------------------------------------------------
63 // Debugger Support 63 // Debugger Support
64 64
65 void SaveRegistersToMemory(RegList regs); 65 void SaveRegistersToMemory(RegList regs);
66 void RestoreRegistersFromMemory(RegList regs); 66 void RestoreRegistersFromMemory(RegList regs);
67 void PushRegistersFromMemory(RegList regs); 67 void PushRegistersFromMemory(RegList regs);
68 void PopRegistersToMemory(RegList regs); 68 void PopRegistersToMemory(RegList regs);
69 void CopyRegistersFromStackToMemory(Register base, 69 void CopyRegistersFromStackToMemory(Register base,
70 Register scratch, 70 Register scratch,
71 RegList regs); 71 RegList regs);
72 void DebugBreak();
72 #endif 73 #endif
73 74
74 // --------------------------------------------------------------------------- 75 // ---------------------------------------------------------------------------
75 // Stack limit support 76 // Stack limit support
76 77
77 // Do simple test for stack overflow. This doesn't handle an overflow. 78 // Do simple test for stack overflow. This doesn't handle an overflow.
78 void StackLimitCheck(Label* on_stack_limit_hit); 79 void StackLimitCheck(Label* on_stack_limit_hit);
79 80
80 // --------------------------------------------------------------------------- 81 // ---------------------------------------------------------------------------
81 // Activation frames 82 // Activation frames
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 } \ 541 } \
541 masm-> 542 masm->
542 #else 543 #else
543 #define ACCESS_MASM(masm) masm-> 544 #define ACCESS_MASM(masm) masm->
544 #endif 545 #endif
545 546
546 547
547 } } // namespace v8::internal 548 } } // namespace v8::internal
548 549
549 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 550 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698