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

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

Issue 2672813002: 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 939
940 void InvokeFunction(Handle<JSFunction> function, 940 void InvokeFunction(Handle<JSFunction> function,
941 const ParameterCount& expected, 941 const ParameterCount& expected,
942 const ParameterCount& actual, InvokeFlag flag, 942 const ParameterCount& actual, InvokeFlag flag,
943 const CallWrapper& call_wrapper); 943 const CallWrapper& call_wrapper);
944 944
945 void IsObjectJSStringType(Register object, Register scratch, Label* fail); 945 void IsObjectJSStringType(Register object, Register scratch, Label* fail);
946 946
947 void IsObjectNameType(Register object, Register scratch, Label* fail); 947 void IsObjectNameType(Register object, Register scratch, Label* fail);
948 948
949 // --------------------------------------------------------------------------- 949 // Frame restart support
950 // Debugger Support
951
952 void DebugBreak();
953 void MaybeDropFrames(); 950 void MaybeDropFrames();
954 951
955 // ---------------------------------------------------------------------------
956 // Exception handling 952 // Exception handling
957 953
958 // Push a new stack handler and link into stack handler chain. 954 // Push a new stack handler and link into stack handler chain.
959 void PushStackHandler(); 955 void PushStackHandler();
960 956
961 // Unlink the stack handler on top of the stack from the stack handler chain. 957 // Unlink the stack handler on top of the stack from the stack handler chain.
962 // Must preserve the result register. 958 // Must preserve the result register.
963 void PopStackHandler(); 959 void PopStackHandler();
964 960
965 // --------------------------------------------------------------------------- 961 // ---------------------------------------------------------------------------
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1853 inline MemOperand NativeContextMemOperand() { 1849 inline MemOperand NativeContextMemOperand() {
1854 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1850 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1855 } 1851 }
1856 1852
1857 #define ACCESS_MASM(masm) masm-> 1853 #define ACCESS_MASM(masm) masm->
1858 1854
1859 } // namespace internal 1855 } // namespace internal
1860 } // namespace v8 1856 } // namespace v8
1861 1857
1862 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1858 #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