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 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 PrintF(out, "\n - type: "); | 1195 PrintF(out, "\n - type: "); |
1196 type()->ShortPrint(out); | 1196 type()->ShortPrint(out); |
1197 PrintF(out, "\n - id: "); | 1197 PrintF(out, "\n - id: "); |
1198 id()->ShortPrint(out); | 1198 id()->ShortPrint(out); |
1199 PrintF(out, "\n - data: "); | 1199 PrintF(out, "\n - data: "); |
1200 data()->ShortPrint(out); | 1200 data()->ShortPrint(out); |
1201 PrintF(out, "\n - context data: "); | 1201 PrintF(out, "\n - context data: "); |
1202 context_data()->ShortPrint(out); | 1202 context_data()->ShortPrint(out); |
1203 PrintF(out, "\n - wrapper: "); | 1203 PrintF(out, "\n - wrapper: "); |
1204 wrapper()->ShortPrint(out); | 1204 wrapper()->ShortPrint(out); |
1205 PrintF(out, "\n - compilation type: %d", compilation_type()); | 1205 PrintF(out, "\n - compilation type: "); |
| 1206 compilation_type()->ShortPrint(out); |
1206 PrintF(out, "\n - line ends: "); | 1207 PrintF(out, "\n - line ends: "); |
1207 line_ends()->ShortPrint(out); | 1208 line_ends()->ShortPrint(out); |
1208 PrintF(out, "\n - eval from shared: "); | 1209 PrintF(out, "\n - eval from shared: "); |
1209 eval_from_shared()->ShortPrint(out); | 1210 eval_from_shared()->ShortPrint(out); |
1210 PrintF(out, "\n - eval from instructions offset: "); | 1211 PrintF(out, "\n - eval from instructions offset: "); |
1211 eval_from_instructions_offset()->ShortPrint(out); | 1212 eval_from_instructions_offset()->ShortPrint(out); |
1212 PrintF(out, "\n"); | 1213 PrintF(out, "\n"); |
1213 } | 1214 } |
1214 | 1215 |
1215 | 1216 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 } | 1279 } |
1279 } | 1280 } |
1280 PrintF(out, "\n"); | 1281 PrintF(out, "\n"); |
1281 } | 1282 } |
1282 | 1283 |
1283 | 1284 |
1284 #endif // OBJECT_PRINT | 1285 #endif // OBJECT_PRINT |
1285 | 1286 |
1286 | 1287 |
1287 } } // namespace v8::internal | 1288 } } // namespace v8::internal |
OLD | NEW |