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

Side by Side Diff: src/elements-kind.h

Issue 80643002: Merged r17800, r17801 into 3.22 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.22
Patch Set: Created 7 years, 1 month 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/d8.cc ('k') | src/elements-kind.cc » ('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 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 LAST_FAST_ELEMENTS_KIND = FAST_HOLEY_DOUBLE_ELEMENTS, 70 LAST_FAST_ELEMENTS_KIND = FAST_HOLEY_DOUBLE_ELEMENTS,
71 FIRST_EXTERNAL_ARRAY_ELEMENTS_KIND = EXTERNAL_BYTE_ELEMENTS, 71 FIRST_EXTERNAL_ARRAY_ELEMENTS_KIND = EXTERNAL_BYTE_ELEMENTS,
72 LAST_EXTERNAL_ARRAY_ELEMENTS_KIND = EXTERNAL_PIXEL_ELEMENTS, 72 LAST_EXTERNAL_ARRAY_ELEMENTS_KIND = EXTERNAL_PIXEL_ELEMENTS,
73 TERMINAL_FAST_ELEMENTS_KIND = FAST_HOLEY_ELEMENTS 73 TERMINAL_FAST_ELEMENTS_KIND = FAST_HOLEY_ELEMENTS
74 }; 74 };
75 75
76 const int kElementsKindCount = LAST_ELEMENTS_KIND - FIRST_ELEMENTS_KIND + 1; 76 const int kElementsKindCount = LAST_ELEMENTS_KIND - FIRST_ELEMENTS_KIND + 1;
77 const int kFastElementsKindCount = LAST_FAST_ELEMENTS_KIND - 77 const int kFastElementsKindCount = LAST_FAST_ELEMENTS_KIND -
78 FIRST_FAST_ELEMENTS_KIND + 1; 78 FIRST_FAST_ELEMENTS_KIND + 1;
79 79
80 int ElementsKindToShiftSize(ElementsKind elements_kind);
80 const char* ElementsKindToString(ElementsKind kind); 81 const char* ElementsKindToString(ElementsKind kind);
81 void PrintElementsKind(FILE* out, ElementsKind kind); 82 void PrintElementsKind(FILE* out, ElementsKind kind);
82 83
83 ElementsKind GetInitialFastElementsKind(); 84 ElementsKind GetInitialFastElementsKind();
84 85
85 ElementsKind GetFastElementsKindFromSequenceIndex(int sequence_index); 86 ElementsKind GetFastElementsKindFromSequenceIndex(int sequence_index);
86 87
87 int GetSequenceIndexFromFastElementsKind(ElementsKind elements_kind); 88 int GetSequenceIndexFromFastElementsKind(ElementsKind elements_kind);
88 89
89 90
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 bool allow_only_packed) { 226 bool allow_only_packed) {
226 return IsFastElementsKind(elements_kind) && 227 return IsFastElementsKind(elements_kind) &&
227 (elements_kind != TERMINAL_FAST_ELEMENTS_KIND && 228 (elements_kind != TERMINAL_FAST_ELEMENTS_KIND &&
228 (!allow_only_packed || elements_kind != FAST_ELEMENTS)); 229 (!allow_only_packed || elements_kind != FAST_ELEMENTS));
229 } 230 }
230 231
231 232
232 } } // namespace v8::internal 233 } } // namespace v8::internal
233 234
234 #endif // V8_ELEMENTS_KIND_H_ 235 #endif // V8_ELEMENTS_KIND_H_
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/elements-kind.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698