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

Side by Side Diff: src/log-inl.h

Issue 7350014: Remove the ability to compile without logging and profiling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments Created 9 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 | Annotate | Revision Log
« no previous file with comments | « src/log.cc ('k') | src/log-utils.h » ('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-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 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 16 matching lines...) Expand all
27 27
28 #ifndef V8_LOG_INL_H_ 28 #ifndef V8_LOG_INL_H_
29 #define V8_LOG_INL_H_ 29 #define V8_LOG_INL_H_
30 30
31 #include "log.h" 31 #include "log.h"
32 #include "cpu-profiler.h" 32 #include "cpu-profiler.h"
33 33
34 namespace v8 { 34 namespace v8 {
35 namespace internal { 35 namespace internal {
36 36
37 #ifdef ENABLE_LOGGING_AND_PROFILING
38
39 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag, 37 Logger::LogEventsAndTags Logger::ToNativeByScript(Logger::LogEventsAndTags tag,
40 Script* script) { 38 Script* script) {
41 if ((tag == FUNCTION_TAG || tag == LAZY_COMPILE_TAG || tag == SCRIPT_TAG) 39 if ((tag == FUNCTION_TAG || tag == LAZY_COMPILE_TAG || tag == SCRIPT_TAG)
42 && script->type()->value() == Script::TYPE_NATIVE) { 40 && script->type()->value() == Script::TYPE_NATIVE) {
43 switch (tag) { 41 switch (tag) {
44 case FUNCTION_TAG: return NATIVE_FUNCTION_TAG; 42 case FUNCTION_TAG: return NATIVE_FUNCTION_TAG;
45 case LAZY_COMPILE_TAG: return NATIVE_LAZY_COMPILE_TAG; 43 case LAZY_COMPILE_TAG: return NATIVE_LAZY_COMPILE_TAG;
46 case SCRIPT_TAG: return NATIVE_SCRIPT_TAG; 44 case SCRIPT_TAG: return NATIVE_SCRIPT_TAG;
47 default: return tag; 45 default: return tag;
48 } 46 }
49 } else { 47 } else {
50 return tag; 48 return tag;
51 } 49 }
52 } 50 }
53 51
54 #endif // ENABLE_LOGGING_AND_PROFILING
55
56 52
57 } } // namespace v8::internal 53 } } // namespace v8::internal
58 54
59 #endif // V8_LOG_INL_H_ 55 #endif // V8_LOG_INL_H_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/log-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698