OLD | NEW |
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 7855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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); | 7874 code()->set_profiler_ticks(0); |
7875 set_ic_age(new_ic_age); | 7875 set_ic_age(new_ic_age); |
| 7876 if (optimization_disabled() && opt_count() >= Compiler::kDefaultMaxOptCount) { |
| 7877 // Re-enable optimizations if they were disabled due to opt_count limit. |
| 7878 set_optimization_disabled(false); |
| 7879 code()->set_optimizable(true); |
| 7880 } |
7876 set_opt_count(0); | 7881 set_opt_count(0); |
7877 } | 7882 } |
7878 | 7883 |
7879 | 7884 |
7880 static void GetMinInobjectSlack(Map* map, void* data) { | 7885 static void GetMinInobjectSlack(Map* map, void* data) { |
7881 int slack = map->unused_property_fields(); | 7886 int slack = map->unused_property_fields(); |
7882 if (*reinterpret_cast<int*>(data) > slack) { | 7887 if (*reinterpret_cast<int*>(data) > slack) { |
7883 *reinterpret_cast<int*>(data) = slack; | 7888 *reinterpret_cast<int*>(data) = slack; |
7884 } | 7889 } |
7885 } | 7890 } |
(...skipping 5074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12960 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); | 12965 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); |
12961 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); | 12966 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); |
12962 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); | 12967 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); |
12963 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); | 12968 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); |
12964 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); | 12969 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); |
12965 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); | 12970 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); |
12966 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); | 12971 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); |
12967 } | 12972 } |
12968 | 12973 |
12969 } } // namespace v8::internal | 12974 } } // namespace v8::internal |
OLD | NEW |