OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 10445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10456 } | 10456 } |
10457 } | 10457 } |
10458 | 10458 |
10459 | 10459 |
10460 bool Code::IsOld() { | 10460 bool Code::IsOld() { |
10461 byte* sequence = FindCodeAgeSequence(); | 10461 byte* sequence = FindCodeAgeSequence(); |
10462 if (sequence == NULL) return false; | 10462 if (sequence == NULL) return false; |
10463 Age age; | 10463 Age age; |
10464 MarkingParity parity; | 10464 MarkingParity parity; |
10465 GetCodeAgeAndParity(sequence, &age, &parity); | 10465 GetCodeAgeAndParity(sequence, &age, &parity); |
10466 return age >= kSexagenarianCodeAge; | 10466 return age >= kIsOldCodeAge; |
10467 } | 10467 } |
10468 | 10468 |
10469 | 10469 |
10470 byte* Code::FindCodeAgeSequence() { | 10470 byte* Code::FindCodeAgeSequence() { |
10471 return FLAG_age_code && | 10471 return FLAG_age_code && |
10472 prologue_offset() != kPrologueOffsetNotSet && | 10472 prologue_offset() != kPrologueOffsetNotSet && |
10473 (kind() == OPTIMIZED_FUNCTION || | 10473 (kind() == OPTIMIZED_FUNCTION || |
10474 (kind() == FUNCTION && !has_debug_break_slots())) | 10474 (kind() == FUNCTION && !has_debug_break_slots())) |
10475 ? instruction_start() + prologue_offset() | 10475 ? instruction_start() + prologue_offset() |
10476 : NULL; | 10476 : NULL; |
(...skipping 5673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
16150 #define ERROR_MESSAGES_TEXTS(C, T) T, | 16150 #define ERROR_MESSAGES_TEXTS(C, T) T, |
16151 static const char* error_messages_[] = { | 16151 static const char* error_messages_[] = { |
16152 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 16152 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
16153 }; | 16153 }; |
16154 #undef ERROR_MESSAGES_TEXTS | 16154 #undef ERROR_MESSAGES_TEXTS |
16155 return error_messages_[reason]; | 16155 return error_messages_[reason]; |
16156 } | 16156 } |
16157 | 16157 |
16158 | 16158 |
16159 } } // namespace v8::internal | 16159 } } // namespace v8::internal |
OLD | NEW |