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

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

Issue 2704303006: PPC/s390: [debugger] remove debugger statement support from FCG/CS. (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/ppc/macro-assembler-ppc.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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 940
941 void InvokeFunction(Handle<JSFunction> function, 941 void InvokeFunction(Handle<JSFunction> function,
942 const ParameterCount& expected, 942 const ParameterCount& expected,
943 const ParameterCount& actual, InvokeFlag flag, 943 const ParameterCount& actual, InvokeFlag flag,
944 const CallWrapper& call_wrapper); 944 const CallWrapper& call_wrapper);
945 945
946 void IsObjectJSStringType(Register object, Register scratch, Label* fail); 946 void IsObjectJSStringType(Register object, Register scratch, Label* fail);
947 947
948 void IsObjectNameType(Register object, Register scratch, Label* fail); 948 void IsObjectNameType(Register object, Register scratch, Label* fail);
949 949
950 // --------------------------------------------------------------------------- 950 // Frame restart support
951 // Debugger Support
952
953 void DebugBreak();
954 void MaybeDropFrames(); 951 void MaybeDropFrames();
955 952
956 // ---------------------------------------------------------------------------
957 // Exception handling 953 // Exception handling
958 954
959 // Push a new stack handler and link into stack handler chain. 955 // Push a new stack handler and link into stack handler chain.
960 void PushStackHandler(); 956 void PushStackHandler();
961 957
962 // Unlink the stack handler on top of the stack from the stack handler chain. 958 // Unlink the stack handler on top of the stack from the stack handler chain.
963 // Must preserve the result register. 959 // Must preserve the result register.
964 void PopStackHandler(); 960 void PopStackHandler();
965 961
966 // --------------------------------------------------------------------------- 962 // ---------------------------------------------------------------------------
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1842 inline MemOperand NativeContextMemOperand() { 1838 inline MemOperand NativeContextMemOperand() {
1843 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1839 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1844 } 1840 }
1845 1841
1846 #define ACCESS_MASM(masm) masm-> 1842 #define ACCESS_MASM(masm) masm->
1847 1843
1848 } // namespace internal 1844 } // namespace internal
1849 } // namespace v8 1845 } // namespace v8
1850 1846
1851 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1847 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/ppc/macro-assembler-ppc.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698