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

Side by Side Diff: src/factory.h

Issue 196343021: Revert "Continued fix for 351257. Reusing the feedback vector is too complex." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 510
511 Handle<String> hidden_string() { 511 Handle<String> hidden_string() {
512 return Handle<String>(&isolate()->heap()->hidden_string_); 512 return Handle<String>(&isolate()->heap()->hidden_string_);
513 } 513 }
514 514
515 Handle<SharedFunctionInfo> NewSharedFunctionInfo( 515 Handle<SharedFunctionInfo> NewSharedFunctionInfo(
516 Handle<String> name, 516 Handle<String> name,
517 int number_of_literals, 517 int number_of_literals,
518 bool is_generator, 518 bool is_generator,
519 Handle<Code> code, 519 Handle<Code> code,
520 Handle<ScopeInfo> scope_info, 520 Handle<ScopeInfo> scope_info);
521 Handle<FixedArray> feedback_vector);
522 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name); 521 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name);
523 522
524 Handle<JSMessageObject> NewJSMessageObject( 523 Handle<JSMessageObject> NewJSMessageObject(
525 Handle<String> type, 524 Handle<String> type,
526 Handle<JSArray> arguments, 525 Handle<JSArray> arguments,
527 int start_position, 526 int start_position,
528 int end_position, 527 int end_position,
529 Handle<Object> script, 528 Handle<Object> script,
530 Handle<Object> stack_frames); 529 Handle<Object> stack_frames);
531 530
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 isolate()); 598 isolate());
600 } else { 599 } else {
601 return NewNumber(static_cast<double>(value), pretenure); 600 return NewNumber(static_cast<double>(value), pretenure);
602 } 601 }
603 } 602 }
604 603
605 604
606 } } // namespace v8::internal 605 } } // namespace v8::internal
607 606
608 #endif // V8_FACTORY_H_ 607 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698