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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 | 40 |
41 const char* StringsStorage::GetFunctionName(const char* name) { | 41 const char* StringsStorage::GetFunctionName(const char* name) { |
42 return strlen(name) > 0 ? name : ProfileGenerator::kAnonymousFunctionName; | 42 return strlen(name) > 0 ? name : ProfileGenerator::kAnonymousFunctionName; |
43 } | 43 } |
44 | 44 |
45 | 45 |
46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, | 46 CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, |
47 const char* name_prefix, | 47 const char* name_prefix, |
48 const char* name, | 48 const char* name, |
| 49 const int script_id, |
49 const char* resource_name, | 50 const char* resource_name, |
50 int line_number, | 51 int line_number, |
51 int security_token_id) | 52 int security_token_id) |
52 : tag_(tag), | 53 : tag_(tag), |
53 name_prefix_(name_prefix), | 54 name_prefix_(name_prefix), |
54 name_(name), | 55 name_(name), |
| 56 script_id_(script_id), |
55 resource_name_(resource_name), | 57 resource_name_(resource_name), |
56 line_number_(line_number), | 58 line_number_(line_number), |
57 shared_id_(0), | 59 shared_id_(0), |
58 security_token_id_(security_token_id), | 60 security_token_id_(security_token_id), |
59 no_frame_ranges_(NULL) { | 61 no_frame_ranges_(NULL) { |
60 } | 62 } |
61 | 63 |
62 | 64 |
63 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { | 65 bool CodeEntry::is_js_function_tag(Logger::LogEventsAndTags tag) { |
64 return tag == Logger::FUNCTION_TAG | 66 return tag == Logger::FUNCTION_TAG |
(...skipping 27 matching lines...) Expand all Loading... |
92 case OTHER: | 94 case OTHER: |
93 case EXTERNAL: | 95 case EXTERNAL: |
94 return program_entry_; | 96 return program_entry_; |
95 default: return NULL; | 97 default: return NULL; |
96 } | 98 } |
97 } | 99 } |
98 | 100 |
99 } } // namespace v8::internal | 101 } } // namespace v8::internal |
100 | 102 |
101 #endif // V8_PROFILE_GENERATOR_INL_H_ | 103 #endif // V8_PROFILE_GENERATOR_INL_H_ |
OLD | NEW |