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

Side by Side Diff: runtime/vm/code_patcher.h

Issue 14858033: Implement breakpoint for closure calls (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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 | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_patcher_arm.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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // Class for patching compiled code. 4 // Class for patching compiled code.
5 5
6 #ifndef VM_CODE_PATCHER_H_ 6 #ifndef VM_CODE_PATCHER_H_
7 #define VM_CODE_PATCHER_H_ 7 #define VM_CODE_PATCHER_H_
8 8
9 #include "vm/allocation.h" 9 #include "vm/allocation.h"
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 static uword GetStaticCallTargetAt(uword return_address, const Code& code); 49 static uword GetStaticCallTargetAt(uword return_address, const Code& code);
50 50
51 // Get instance call information. Returns the call target and sets each 51 // Get instance call information. Returns the call target and sets each
52 // of the output parameters ic_data and arguments_descriptor if they are 52 // of the output parameters ic_data and arguments_descriptor if they are
53 // non-NULL. 53 // non-NULL.
54 static uword GetInstanceCallAt(uword return_address, 54 static uword GetInstanceCallAt(uword return_address,
55 const Code& code, 55 const Code& code,
56 ICData* ic_data, 56 ICData* ic_data,
57 Array* arguments_descriptor); 57 Array* arguments_descriptor);
58 58
59 // Return the arguments descriptor array of the closure call
60 // before the given return address.
61 static RawArray* GetClosureArgDescAt(uword return_address,
62 const Code& code);
63
59 static intptr_t InstanceCallSizeInBytes(); 64 static intptr_t InstanceCallSizeInBytes();
60 65
61 static void InsertCallAt(uword start, uword target); 66 static void InsertCallAt(uword start, uword target);
62 }; 67 };
63 68
64 } // namespace dart 69 } // namespace dart
65 70
66 #endif // VM_CODE_PATCHER_H_ 71 #endif // VM_CODE_PATCHER_H_
OLDNEW
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_patcher_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698