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

Side by Side Diff: src/objects.cc

Issue 9963055: Merged r11208 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 8 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 | « no previous file | src/version.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 7853 matching lines...) Expand 10 before | Expand all | Expand 10 after
7864 ASSERT_EQ(builtins->builtin(Builtins::kJSConstructStubGeneric), 7864 ASSERT_EQ(builtins->builtin(Builtins::kJSConstructStubGeneric),
7865 *RawField(this, kConstructStubOffset)); 7865 *RawField(this, kConstructStubOffset));
7866 set_construct_stub(builtins->builtin(Builtins::kJSConstructStubCountdown)); 7866 set_construct_stub(builtins->builtin(Builtins::kJSConstructStubCountdown));
7867 // The map survived the gc, so there may be objects referencing it. 7867 // The map survived the gc, so there may be objects referencing it.
7868 set_live_objects_may_exist(true); 7868 set_live_objects_may_exist(true);
7869 } 7869 }
7870 7870
7871 7871
7872 void SharedFunctionInfo::ResetForNewContext(int new_ic_age) { 7872 void SharedFunctionInfo::ResetForNewContext(int new_ic_age) {
7873 code()->ClearInlineCaches(); 7873 code()->ClearInlineCaches();
7874 code()->set_profiler_ticks(0);
7875 set_ic_age(new_ic_age); 7874 set_ic_age(new_ic_age);
7876 if (optimization_disabled() && opt_count() >= Compiler::kDefaultMaxOptCount) { 7875 if (code()->kind() == Code::FUNCTION) {
7877 // Re-enable optimizations if they were disabled due to opt_count limit. 7876 code()->set_profiler_ticks(0);
7878 set_optimization_disabled(false); 7877 if (optimization_disabled() &&
7879 code()->set_optimizable(true); 7878 opt_count() >= Compiler::kDefaultMaxOptCount) {
7879 // Re-enable optimizations if they were disabled due to opt_count limit.
7880 set_optimization_disabled(false);
7881 code()->set_optimizable(true);
7882 }
7883 set_opt_count(0);
7880 } 7884 }
7881 set_opt_count(0);
7882 } 7885 }
7883 7886
7884 7887
7885 static void GetMinInobjectSlack(Map* map, void* data) { 7888 static void GetMinInobjectSlack(Map* map, void* data) {
7886 int slack = map->unused_property_fields(); 7889 int slack = map->unused_property_fields();
7887 if (*reinterpret_cast<int*>(data) > slack) { 7890 if (*reinterpret_cast<int*>(data) > slack) {
7888 *reinterpret_cast<int*>(data) = slack; 7891 *reinterpret_cast<int*>(data) = slack;
7889 } 7892 }
7890 } 7893 }
7891 7894
(...skipping 5073 matching lines...) Expand 10 before | Expand all | Expand 10 after
12965 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); 12968 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER);
12966 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); 12969 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER);
12967 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); 12970 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER);
12968 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); 12971 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER);
12969 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); 12972 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER);
12970 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); 12973 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER);
12971 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); 12974 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER);
12972 } 12975 }
12973 12976
12974 } } // namespace v8::internal 12977 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698