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

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

Issue 2663453004: PPC/s390: [liveedit] reimplement frame restarting. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « src/s390/interface-descriptors-s390.cc ('k') | src/s390/macro-assembler-s390.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project 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 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_ 5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_
6 #define V8_S390_MACRO_ASSEMBLER_S390_H_ 6 #define V8_S390_MACRO_ASSEMBLER_S390_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 const CallWrapper& call_wrapper); 925 const CallWrapper& call_wrapper);
926 926
927 void IsObjectJSStringType(Register object, Register scratch, Label* fail); 927 void IsObjectJSStringType(Register object, Register scratch, Label* fail);
928 928
929 void IsObjectNameType(Register object, Register scratch, Label* fail); 929 void IsObjectNameType(Register object, Register scratch, Label* fail);
930 930
931 // --------------------------------------------------------------------------- 931 // ---------------------------------------------------------------------------
932 // Debugger Support 932 // Debugger Support
933 933
934 void DebugBreak(); 934 void DebugBreak();
935 void MaybeDropFrames();
935 936
936 // --------------------------------------------------------------------------- 937 // ---------------------------------------------------------------------------
937 // Exception handling 938 // Exception handling
938 939
939 // Push a new stack handler and link into stack handler chain. 940 // Push a new stack handler and link into stack handler chain.
940 void PushStackHandler(); 941 void PushStackHandler();
941 942
942 // Unlink the stack handler on top of the stack from the stack handler chain. 943 // Unlink the stack handler on top of the stack from the stack handler chain.
943 // Must preserve the result register. 944 // Must preserve the result register.
944 void PopStackHandler(); 945 void PopStackHandler();
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
1834 inline MemOperand NativeContextMemOperand() { 1835 inline MemOperand NativeContextMemOperand() {
1835 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1836 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1836 } 1837 }
1837 1838
1838 #define ACCESS_MASM(masm) masm-> 1839 #define ACCESS_MASM(masm) masm->
1839 1840
1840 } // namespace internal 1841 } // namespace internal
1841 } // namespace v8 1842 } // namespace v8
1842 1843
1843 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1844 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/s390/interface-descriptors-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698