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

Side by Side Diff: src/factory.cc

Issue 19537: Adding src_file_name:line_number into perf log entries for compiled JS functi... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 10 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/compiler.cc ('k') | src/log.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-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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 154
155 Handle<Script> Factory::NewScript(Handle<String> source) { 155 Handle<Script> Factory::NewScript(Handle<String> source) {
156 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); 156 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
157 script->set_source(*source); 157 script->set_source(*source);
158 script->set_name(Heap::undefined_value()); 158 script->set_name(Heap::undefined_value());
159 script->set_line_offset(Smi::FromInt(0)); 159 script->set_line_offset(Smi::FromInt(0));
160 script->set_column_offset(Smi::FromInt(0)); 160 script->set_column_offset(Smi::FromInt(0));
161 script->set_type(Smi::FromInt(SCRIPT_TYPE_NORMAL)); 161 script->set_type(Smi::FromInt(SCRIPT_TYPE_NORMAL));
162 script->set_wrapper(*Factory::NewProxy(0, TENURED)); 162 script->set_wrapper(*Factory::NewProxy(0, TENURED));
163 script->set_line_ends(Heap::undefined_value());
163 return script; 164 return script;
164 } 165 }
165 166
166 167
167 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) { 168 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) {
168 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy); 169 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy);
169 } 170 }
170 171
171 172
172 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) { 173 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 Execution::ConfigureInstance(instance, 861 Execution::ConfigureInstance(instance,
861 instance_template, 862 instance_template,
862 pending_exception); 863 pending_exception);
863 } else { 864 } else {
864 *pending_exception = false; 865 *pending_exception = false;
865 } 866 }
866 } 867 }
867 868
868 869
869 } } // namespace v8::internal 870 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698