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

Side by Side Diff: src/v8.h

Issue 125141: Attempt to reduce performance penalty for logging and profiling (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 6 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 | « src/platform.h ('k') | tools/gyp/v8.gyp » ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "utils.h" 64 #include "utils.h"
65 #include "flags.h" 65 #include "flags.h"
66 66
67 // Objects & heap 67 // Objects & heap
68 #include "objects.h" 68 #include "objects.h"
69 #include "spaces.h" 69 #include "spaces.h"
70 #include "heap.h" 70 #include "heap.h"
71 #include "objects-inl.h" 71 #include "objects-inl.h"
72 #include "spaces-inl.h" 72 #include "spaces-inl.h"
73 #include "heap-inl.h" 73 #include "heap-inl.h"
74 #include "log-inl.h"
74 #include "messages.h" 75 #include "messages.h"
75 76
76 namespace v8 { 77 namespace v8 {
77 namespace internal { 78 namespace internal {
78 79
79 class V8 : public AllStatic { 80 class V8 : public AllStatic {
80 public: 81 public:
81 // Global actions. 82 // Global actions.
82 83
83 // If Initialize is called with des == NULL, the initial state is 84 // If Initialize is called with des == NULL, the initial state is
(...skipping 25 matching lines...) Expand all
109 // True if engine has been shut down 110 // True if engine has been shut down
110 // (reset if engine is restarted) 111 // (reset if engine is restarted)
111 static bool has_been_disposed_; 112 static bool has_been_disposed_;
112 }; 113 };
113 114
114 } } // namespace v8::internal 115 } } // namespace v8::internal
115 116
116 namespace i = v8::internal; 117 namespace i = v8::internal;
117 118
118 #endif // V8_V8_H_ 119 #endif // V8_V8_H_
OLDNEW
« no previous file with comments | « src/platform.h ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698