| 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 7965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7976 set_ic_age(new_ic_age); | 7976 set_ic_age(new_ic_age); |
| 7977 if (code()->kind() == Code::FUNCTION) { | 7977 if (code()->kind() == Code::FUNCTION) { |
| 7978 code()->set_profiler_ticks(0); | 7978 code()->set_profiler_ticks(0); |
| 7979 if (optimization_disabled() && | 7979 if (optimization_disabled() && |
| 7980 opt_count() >= Compiler::kDefaultMaxOptCount) { | 7980 opt_count() >= Compiler::kDefaultMaxOptCount) { |
| 7981 // Re-enable optimizations if they were disabled due to opt_count limit. | 7981 // Re-enable optimizations if they were disabled due to opt_count limit. |
| 7982 set_optimization_disabled(false); | 7982 set_optimization_disabled(false); |
| 7983 code()->set_optimizable(true); | 7983 code()->set_optimizable(true); |
| 7984 } | 7984 } |
| 7985 set_opt_count(0); | 7985 set_opt_count(0); |
| 7986 set_deopt_count(0); |
| 7986 } | 7987 } |
| 7987 } | 7988 } |
| 7988 | 7989 |
| 7989 | 7990 |
| 7990 static void GetMinInobjectSlack(Map* map, void* data) { | 7991 static void GetMinInobjectSlack(Map* map, void* data) { |
| 7991 int slack = map->unused_property_fields(); | 7992 int slack = map->unused_property_fields(); |
| 7992 if (*reinterpret_cast<int*>(data) > slack) { | 7993 if (*reinterpret_cast<int*>(data) > slack) { |
| 7993 *reinterpret_cast<int*>(data) = slack; | 7994 *reinterpret_cast<int*>(data) = slack; |
| 7994 } | 7995 } |
| 7995 } | 7996 } |
| (...skipping 5187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13183 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); | 13184 set_year(Smi::FromInt(year), SKIP_WRITE_BARRIER); |
| 13184 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); | 13185 set_month(Smi::FromInt(month), SKIP_WRITE_BARRIER); |
| 13185 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); | 13186 set_day(Smi::FromInt(day), SKIP_WRITE_BARRIER); |
| 13186 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); | 13187 set_weekday(Smi::FromInt(weekday), SKIP_WRITE_BARRIER); |
| 13187 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); | 13188 set_hour(Smi::FromInt(hour), SKIP_WRITE_BARRIER); |
| 13188 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); | 13189 set_min(Smi::FromInt(min), SKIP_WRITE_BARRIER); |
| 13189 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); | 13190 set_sec(Smi::FromInt(sec), SKIP_WRITE_BARRIER); |
| 13190 } | 13191 } |
| 13191 | 13192 |
| 13192 } } // namespace v8::internal | 13193 } } // namespace v8::internal |
| OLD | NEW |