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

Side by Side Diff: src/objects.cc

Issue 7170012: Crankshaft support for polymorphic array handling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 6 months 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 7012 matching lines...) Expand 10 before | Expand all | Expand 10 after
7023 if (extra == kStrictMode) { 7023 if (extra == kStrictMode) {
7024 name = "STRICT"; 7024 name = "STRICT";
7025 } 7025 }
7026 break; 7026 break;
7027 default: 7027 default:
7028 break; 7028 break;
7029 } 7029 }
7030 if (name != NULL) { 7030 if (name != NULL) {
7031 PrintF(out, "extra_ic_state = %s\n", name); 7031 PrintF(out, "extra_ic_state = %s\n", name);
7032 } else { 7032 } else {
7033 PrintF(out, "etra_ic_state = %d\n", extra); 7033 PrintF(out, "extra_ic_state = %d\n", extra);
7034 } 7034 }
7035 } 7035 }
7036 7036
7037 7037
7038 void Code::Disassemble(const char* name, FILE* out) { 7038 void Code::Disassemble(const char* name, FILE* out) {
7039 PrintF(out, "kind = %s\n", Kind2String(kind())); 7039 PrintF(out, "kind = %s\n", Kind2String(kind()));
7040 if (is_inline_cache_stub()) { 7040 if (is_inline_cache_stub()) {
7041 PrintF(out, "ic_state = %s\n", ICState2String(ic_state())); 7041 PrintF(out, "ic_state = %s\n", ICState2String(ic_state()));
7042 PrintExtraICState(out, kind(), extra_ic_state()); 7042 PrintExtraICState(out, kind(), extra_ic_state());
7043 PrintF(out, "ic_in_loop = %d\n", ic_in_loop() == IN_LOOP); 7043 PrintF(out, "ic_in_loop = %d\n", ic_in_loop() == IN_LOOP);
(...skipping 4162 matching lines...) Expand 10 before | Expand all | Expand 10 after
11206 if (break_point_objects()->IsUndefined()) return 0; 11206 if (break_point_objects()->IsUndefined()) return 0;
11207 // Single beak point. 11207 // Single beak point.
11208 if (!break_point_objects()->IsFixedArray()) return 1; 11208 if (!break_point_objects()->IsFixedArray()) return 1;
11209 // Multiple break points. 11209 // Multiple break points.
11210 return FixedArray::cast(break_point_objects())->length(); 11210 return FixedArray::cast(break_point_objects())->length();
11211 } 11211 }
11212 #endif 11212 #endif
11213 11213
11214 11214
11215 } } // namespace v8::internal 11215 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698