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

Side by Side Diff: src/runtime/runtime.h

Issue 678843004: Use shared function info for eval cache key. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | « src/objects.cc ('k') | src/runtime/runtime-compiler.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 F(InitializeLegacyConstLookupSlot, 3, 1) \ 514 F(InitializeLegacyConstLookupSlot, 3, 1) \
515 \ 515 \
516 /* Maths */ \ 516 /* Maths */ \
517 F(MathPowSlow, 2, 1) \ 517 F(MathPowSlow, 2, 1) \
518 F(MathPowRT, 2, 1) 518 F(MathPowRT, 2, 1)
519 519
520 520
521 #define RUNTIME_FUNCTION_LIST_RETURN_PAIR(F) \ 521 #define RUNTIME_FUNCTION_LIST_RETURN_PAIR(F) \
522 F(LoadLookupSlot, 2, 2) \ 522 F(LoadLookupSlot, 2, 2) \
523 F(LoadLookupSlotNoReferenceError, 2, 2) \ 523 F(LoadLookupSlotNoReferenceError, 2, 2) \
524 F(ResolvePossiblyDirectEval, 5, 2) \ 524 F(ResolvePossiblyDirectEval, 6, 2) \
525 F(ForInInit, 2, 2) /* TODO(turbofan): Only temporary */ \ 525 F(ForInInit, 2, 2) /* TODO(turbofan): Only temporary */ \
526 F(ForInNext, 4, 2) /* TODO(turbofan): Only temporary */ 526 F(ForInNext, 4, 2) /* TODO(turbofan): Only temporary */
527 527
528 528
529 #define RUNTIME_FUNCTION_LIST_DEBUGGER(F) \ 529 #define RUNTIME_FUNCTION_LIST_DEBUGGER(F) \
530 /* Debugger support*/ \ 530 /* Debugger support*/ \
531 F(DebugBreak, 0, 1) \ 531 F(DebugBreak, 0, 1) \
532 F(SetDebugEventListener, 2, 1) \ 532 F(SetDebugEventListener, 2, 1) \
533 F(Break, 0, 1) \ 533 F(Break, 0, 1) \
534 F(DebugGetPropertyDetails, 2, 1) \ 534 F(DebugGetPropertyDetails, 2, 1) \
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; 878 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {};
879 879
880 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 880 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
881 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 881 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
882 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; 882 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {};
883 883
884 } // namespace internal 884 } // namespace internal
885 } // namespace v8 885 } // namespace v8
886 886
887 #endif // V8_RUNTIME_RUNTIME_H_ 887 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/runtime/runtime-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698