OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG | 67 || tag == Logger::NATIVE_LAZY_COMPILE_TAG |
68 || tag == Logger::NATIVE_SCRIPT_TAG; | 68 || tag == Logger::NATIVE_SCRIPT_TAG; |
69 } | 69 } |
70 | 70 |
71 | 71 |
72 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry) | 72 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry) |
73 : tree_(tree), | 73 : tree_(tree), |
74 entry_(entry), | 74 entry_(entry), |
75 total_ticks_(0), | 75 total_ticks_(0), |
76 self_ticks_(0), | 76 self_ticks_(0), |
77 children_(CodeEntriesMatch) { | 77 children_(CodeEntriesMatch), |
| 78 id_(tree->next_node_id()) { |
78 } | 79 } |
79 | 80 |
80 | 81 |
81 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { | 82 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { |
82 switch (tag) { | 83 switch (tag) { |
83 case GC: | 84 case GC: |
84 return gc_entry_; | 85 return gc_entry_; |
85 case JS: | 86 case JS: |
86 case COMPILER: | 87 case COMPILER: |
87 case PARALLEL_COMPILER: | 88 case PARALLEL_COMPILER: |
88 // DOM events handlers are reported as OTHER / EXTERNAL entries. | 89 // DOM events handlers are reported as OTHER / EXTERNAL entries. |
89 // To avoid confusing people, let's put all these entries into | 90 // To avoid confusing people, let's put all these entries into |
90 // one bucket. | 91 // one bucket. |
91 case OTHER: | 92 case OTHER: |
92 case EXTERNAL: | 93 case EXTERNAL: |
93 return program_entry_; | 94 return program_entry_; |
94 default: return NULL; | 95 default: return NULL; |
95 } | 96 } |
96 } | 97 } |
97 | 98 |
98 } } // namespace v8::internal | 99 } } // namespace v8::internal |
99 | 100 |
100 #endif // V8_PROFILE_GENERATOR_INL_H_ | 101 #endif // V8_PROFILE_GENERATOR_INL_H_ |
OLD | NEW |