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

Side by Side Diff: src/runtime.h

Issue 151145: Experimental: capture 10 frame stack trace by default. (Closed)
Patch Set: Created 11 years, 5 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/messages.js ('k') | src/runtime.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-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 F(FunctionSetLength, 2) \ 165 F(FunctionSetLength, 2) \
166 F(FunctionSetPrototype, 2) \ 166 F(FunctionSetPrototype, 2) \
167 F(FunctionGetName, 1) \ 167 F(FunctionGetName, 1) \
168 F(FunctionSetName, 2) \ 168 F(FunctionSetName, 2) \
169 F(FunctionGetSourceCode, 1) \ 169 F(FunctionGetSourceCode, 1) \
170 F(FunctionGetScript, 1) \ 170 F(FunctionGetScript, 1) \
171 F(FunctionGetScriptSourcePosition, 1) \ 171 F(FunctionGetScriptSourcePosition, 1) \
172 F(FunctionGetPositionForOffset, 2) \ 172 F(FunctionGetPositionForOffset, 2) \
173 F(FunctionIsAPIFunction, 1) \ 173 F(FunctionIsAPIFunction, 1) \
174 F(GetScript, 1) \ 174 F(GetScript, 1) \
175 F(CollectStackTrace, 1) \ 175 F(CollectStackTrace, 2) \
176 \ 176 \
177 F(ClassOf, 1) \ 177 F(ClassOf, 1) \
178 F(SetCode, 2) \ 178 F(SetCode, 2) \
179 \ 179 \
180 F(CreateApiFunction, 1) \ 180 F(CreateApiFunction, 1) \
181 F(IsTemplate, 1) \ 181 F(IsTemplate, 1) \
182 F(GetTemplateField, 2) \ 182 F(GetTemplateField, 2) \
183 F(DisableAccessChecks, 1) \ 183 F(DisableAccessChecks, 1) \
184 F(EnableAccessChecks, 1) \ 184 F(EnableAccessChecks, 1) \
185 \ 185 \
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 int position); 393 int position);
394 394
395 // Helper functions used stubs. 395 // Helper functions used stubs.
396 static void PerformGC(Object* result); 396 static void PerformGC(Object* result);
397 }; 397 };
398 398
399 399
400 } } // namespace v8::internal 400 } } // namespace v8::internal
401 401
402 #endif // V8_RUNTIME_H_ 402 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/messages.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698