Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/objects-debug.cc

Issue 460013: Merge revisions r3393 - r3394 to trunk... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 PrintF("\n - data: "); 1162 PrintF("\n - data: ");
1163 data()->ShortPrint(); 1163 data()->ShortPrint();
1164 PrintF("\n - context data: "); 1164 PrintF("\n - context data: ");
1165 context_data()->ShortPrint(); 1165 context_data()->ShortPrint();
1166 PrintF("\n - wrapper: "); 1166 PrintF("\n - wrapper: ");
1167 wrapper()->ShortPrint(); 1167 wrapper()->ShortPrint();
1168 PrintF("\n - compilation type: "); 1168 PrintF("\n - compilation type: ");
1169 compilation_type()->ShortPrint(); 1169 compilation_type()->ShortPrint();
1170 PrintF("\n - line ends: "); 1170 PrintF("\n - line ends: ");
1171 line_ends()->ShortPrint(); 1171 line_ends()->ShortPrint();
1172 PrintF("\n - eval from function: "); 1172 PrintF("\n - eval from shared: ");
1173 eval_from_function()->ShortPrint(); 1173 eval_from_shared()->ShortPrint();
1174 PrintF("\n - eval from instructions offset: "); 1174 PrintF("\n - eval from instructions offset: ");
1175 eval_from_instructions_offset()->ShortPrint(); 1175 eval_from_instructions_offset()->ShortPrint();
1176 PrintF("\n"); 1176 PrintF("\n");
1177 } 1177 }
1178 1178
1179 1179
1180 #ifdef ENABLE_DEBUGGER_SUPPORT 1180 #ifdef ENABLE_DEBUGGER_SUPPORT
1181 void DebugInfo::DebugInfoVerify() { 1181 void DebugInfo::DebugInfoVerify() {
1182 CHECK(IsDebugInfo()); 1182 CHECK(IsDebugInfo());
1183 VerifyPointer(shared()); 1183 VerifyPointer(shared());
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 } 1333 }
1334 current = hash; 1334 current = hash;
1335 } 1335 }
1336 return true; 1336 return true;
1337 } 1337 }
1338 1338
1339 1339
1340 #endif // DEBUG 1340 #endif // DEBUG
1341 1341
1342 } } // namespace v8::internal 1342 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698