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

Side by Side Diff: src/accessors.cc

Issue 385035: Restore info needed to register profile ticks in functions from... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 1 month 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 | « no previous file | src/factory.cc » ('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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 308
309 // 309 //
310 // Accessors::ScriptGetLineEnds 310 // Accessors::ScriptGetLineEnds
311 // 311 //
312 312
313 313
314 Object* Accessors::ScriptGetLineEnds(Object* object, void*) { 314 Object* Accessors::ScriptGetLineEnds(Object* object, void*) {
315 HandleScope scope; 315 HandleScope scope;
316 Handle<Script> script(Script::cast(JSValue::cast(object)->value())); 316 Handle<Script> script(Script::cast(JSValue::cast(object)->value()));
317 InitScriptLineEnds(script); 317 InitScriptLineEnds(script);
318 return script->line_ends(); 318 if (script->line_ends_js_array()->IsUndefined()) {
319 Handle<FixedArray> line_ends_fixed_array(
320 FixedArray::cast(script->line_ends_fixed_array()));
321 Handle<FixedArray> copy = Factory::CopyFixedArray(line_ends_fixed_array);
322 Handle<JSArray> js_array = Factory::NewJSArrayWithElements(copy);
323 script->set_line_ends_js_array(*js_array);
324 }
325 return script->line_ends_js_array();
319 } 326 }
320 327
321 328
322 const AccessorDescriptor Accessors::ScriptLineEnds = { 329 const AccessorDescriptor Accessors::ScriptLineEnds = {
323 ScriptGetLineEnds, 330 ScriptGetLineEnds,
324 IllegalSetter, 331 IllegalSetter,
325 0 332 0
326 }; 333 };
327 334
328 335
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 } 652 }
646 653
647 654
648 const AccessorDescriptor Accessors::ObjectPrototype = { 655 const AccessorDescriptor Accessors::ObjectPrototype = {
649 ObjectGetPrototype, 656 ObjectGetPrototype,
650 ObjectSetPrototype, 657 ObjectSetPrototype,
651 0 658 0
652 }; 659 };
653 660
654 } } // namespace v8::internal 661 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698