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

Side by Side Diff: src/runtime.h

Issue 203463011: Add option to run ScopeIterator faster giving up nested scope chain. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: debug test was failing Created 6 years, 9 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 F(DebugPropertyAttributesFromDetails, 1, 1) \ 488 F(DebugPropertyAttributesFromDetails, 1, 1) \
489 F(DebugPropertyIndexFromDetails, 1, 1) \ 489 F(DebugPropertyIndexFromDetails, 1, 1) \
490 F(DebugNamedInterceptorPropertyValue, 2, 1) \ 490 F(DebugNamedInterceptorPropertyValue, 2, 1) \
491 F(DebugIndexedInterceptorElementValue, 2, 1) \ 491 F(DebugIndexedInterceptorElementValue, 2, 1) \
492 F(CheckExecutionState, 1, 1) \ 492 F(CheckExecutionState, 1, 1) \
493 F(GetFrameCount, 1, 1) \ 493 F(GetFrameCount, 1, 1) \
494 F(GetFrameDetails, 2, 1) \ 494 F(GetFrameDetails, 2, 1) \
495 F(GetScopeCount, 2, 1) \ 495 F(GetScopeCount, 2, 1) \
496 F(GetStepInPositions, 2, 1) \ 496 F(GetStepInPositions, 2, 1) \
497 F(GetScopeDetails, 4, 1) \ 497 F(GetScopeDetails, 4, 1) \
498 F(GetAllScopesDetails, 3, 1) \ 498 F(GetAllScopesDetails, 4, 1) \
499 F(GetFunctionScopeCount, 1, 1) \ 499 F(GetFunctionScopeCount, 1, 1) \
500 F(GetFunctionScopeDetails, 2, 1) \ 500 F(GetFunctionScopeDetails, 2, 1) \
501 F(SetScopeVariableValue, 6, 1) \ 501 F(SetScopeVariableValue, 6, 1) \
502 F(DebugPrintScopes, 0, 1) \ 502 F(DebugPrintScopes, 0, 1) \
503 F(GetThreadCount, 1, 1) \ 503 F(GetThreadCount, 1, 1) \
504 F(GetThreadDetails, 2, 1) \ 504 F(GetThreadDetails, 2, 1) \
505 F(SetDisableBreak, 1, 1) \ 505 F(SetDisableBreak, 1, 1) \
506 F(GetBreakLocations, 2, 1) \ 506 F(GetBreakLocations, 2, 1) \
507 F(SetFunctionBreakPoint, 3, 1) \ 507 F(SetFunctionBreakPoint, 3, 1) \
508 F(SetScriptBreakPoint, 4, 1) \ 508 F(SetScriptBreakPoint, 4, 1) \
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 870 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
871 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 871 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
872 872
873 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 873 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
874 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 874 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
875 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; 875 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {};
876 876
877 } } // namespace v8::internal 877 } } // namespace v8::internal
878 878
879 #endif // V8_RUNTIME_H_ 879 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime.cc » ('j') | src/runtime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698