| 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 27 matching lines...) Expand all Loading... |
| 38 #include "debug.h" | 38 #include "debug.h" |
| 39 #include "deoptimizer.h" | 39 #include "deoptimizer.h" |
| 40 #include "date.h" | 40 #include "date.h" |
| 41 #include "elements.h" | 41 #include "elements.h" |
| 42 #include "execution.h" | 42 #include "execution.h" |
| 43 #include "full-codegen.h" | 43 #include "full-codegen.h" |
| 44 #include "hydrogen.h" | 44 #include "hydrogen.h" |
| 45 #include "isolate-inl.h" | 45 #include "isolate-inl.h" |
| 46 #include "log.h" | 46 #include "log.h" |
| 47 #include "objects-inl.h" | 47 #include "objects-inl.h" |
| 48 #include "objects-visiting.h" | |
| 49 #include "objects-visiting-inl.h" | 48 #include "objects-visiting-inl.h" |
| 50 #include "macro-assembler.h" | 49 #include "macro-assembler.h" |
| 51 #include "mark-compact.h" | 50 #include "mark-compact.h" |
| 52 #include "safepoint-table.h" | 51 #include "safepoint-table.h" |
| 53 #include "string-stream.h" | 52 #include "string-stream.h" |
| 54 #include "utils.h" | 53 #include "utils.h" |
| 55 | 54 |
| 56 #ifdef ENABLE_DISASSEMBLER | 55 #ifdef ENABLE_DISASSEMBLER |
| 57 #include "disasm.h" | 56 #include "disasm.h" |
| 58 #include "disassembler.h" | 57 #include "disassembler.h" |
| (...skipping 16581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16640 #define ERROR_MESSAGES_TEXTS(C, T) T, | 16639 #define ERROR_MESSAGES_TEXTS(C, T) T, |
| 16641 static const char* error_messages_[] = { | 16640 static const char* error_messages_[] = { |
| 16642 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 16641 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
| 16643 }; | 16642 }; |
| 16644 #undef ERROR_MESSAGES_TEXTS | 16643 #undef ERROR_MESSAGES_TEXTS |
| 16645 return error_messages_[reason]; | 16644 return error_messages_[reason]; |
| 16646 } | 16645 } |
| 16647 | 16646 |
| 16648 | 16647 |
| 16649 } } // namespace v8::internal | 16648 } } // namespace v8::internal |
| OLD | NEW |