OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 PrintF("\n - name: "); | 1129 PrintF("\n - name: "); |
1130 name()->ShortPrint(); | 1130 name()->ShortPrint(); |
1131 PrintF("\n - line_offset: "); | 1131 PrintF("\n - line_offset: "); |
1132 line_offset()->ShortPrint(); | 1132 line_offset()->ShortPrint(); |
1133 PrintF("\n - column_offset: "); | 1133 PrintF("\n - column_offset: "); |
1134 column_offset()->ShortPrint(); | 1134 column_offset()->ShortPrint(); |
1135 PrintF("\n - type: "); | 1135 PrintF("\n - type: "); |
1136 type()->ShortPrint(); | 1136 type()->ShortPrint(); |
1137 PrintF("\n - id: "); | 1137 PrintF("\n - id: "); |
1138 id()->ShortPrint(); | 1138 id()->ShortPrint(); |
| 1139 PrintF("\n - data: "); |
| 1140 data()->ShortPrint(); |
| 1141 PrintF("\n - context data: "); |
| 1142 context_data()->ShortPrint(); |
| 1143 PrintF("\n - wrapper: "); |
| 1144 wrapper()->ShortPrint(); |
| 1145 PrintF("\n - compilation type: "); |
| 1146 compilation_type()->ShortPrint(); |
| 1147 PrintF("\n - line ends fixed array: "); |
| 1148 line_ends_fixed_array()->ShortPrint(); |
| 1149 PrintF("\n - line ends js array: "); |
| 1150 line_ends_js_array()->ShortPrint(); |
| 1151 PrintF("\n - eval from function: "); |
| 1152 eval_from_function()->ShortPrint(); |
| 1153 PrintF("\n - eval from instructions offset: "); |
| 1154 eval_from_instructions_offset()->ShortPrint(); |
1139 PrintF("\n"); | 1155 PrintF("\n"); |
1140 } | 1156 } |
1141 | 1157 |
1142 | 1158 |
1143 #ifdef ENABLE_DEBUGGER_SUPPORT | 1159 #ifdef ENABLE_DEBUGGER_SUPPORT |
1144 void DebugInfo::DebugInfoVerify() { | 1160 void DebugInfo::DebugInfoVerify() { |
1145 CHECK(IsDebugInfo()); | 1161 CHECK(IsDebugInfo()); |
1146 VerifyPointer(shared()); | 1162 VerifyPointer(shared()); |
1147 VerifyPointer(original_code()); | 1163 VerifyPointer(original_code()); |
1148 VerifyPointer(code()); | 1164 VerifyPointer(code()); |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1296 } | 1312 } |
1297 current = hash; | 1313 current = hash; |
1298 } | 1314 } |
1299 return true; | 1315 return true; |
1300 } | 1316 } |
1301 | 1317 |
1302 | 1318 |
1303 #endif // DEBUG | 1319 #endif // DEBUG |
1304 | 1320 |
1305 } } // namespace v8::internal | 1321 } } // namespace v8::internal |
OLD | NEW |