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

Side by Side Diff: src/heap.h

Issue 14509012: HasOnlyAsciiChars can return incorrect results. Fixup usages and rename. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fixed typo Created 7 years, 8 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 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 V(Object, termination_exception, TerminationException) \ 88 V(Object, termination_exception, TerminationException) \
89 V(Smi, hash_seed, HashSeed) \ 89 V(Smi, hash_seed, HashSeed) \
90 V(Map, symbol_map, SymbolMap) \ 90 V(Map, symbol_map, SymbolMap) \
91 V(Map, string_map, StringMap) \ 91 V(Map, string_map, StringMap) \
92 V(Map, ascii_string_map, AsciiStringMap) \ 92 V(Map, ascii_string_map, AsciiStringMap) \
93 V(Map, cons_string_map, ConsStringMap) \ 93 V(Map, cons_string_map, ConsStringMap) \
94 V(Map, cons_ascii_string_map, ConsAsciiStringMap) \ 94 V(Map, cons_ascii_string_map, ConsAsciiStringMap) \
95 V(Map, sliced_string_map, SlicedStringMap) \ 95 V(Map, sliced_string_map, SlicedStringMap) \
96 V(Map, sliced_ascii_string_map, SlicedAsciiStringMap) \ 96 V(Map, sliced_ascii_string_map, SlicedAsciiStringMap) \
97 V(Map, external_string_map, ExternalStringMap) \ 97 V(Map, external_string_map, ExternalStringMap) \
98 V(Map, external_string_with_ascii_data_map, ExternalStringWithAsciiDataMap) \ 98 V(Map, \
99 external_string_with_one_byte_data_map, \
100 ExternalStringWithOneByteDataMap) \
99 V(Map, external_ascii_string_map, ExternalAsciiStringMap) \ 101 V(Map, external_ascii_string_map, ExternalAsciiStringMap) \
100 V(Map, short_external_string_map, ShortExternalStringMap) \ 102 V(Map, short_external_string_map, ShortExternalStringMap) \
101 V(Map, \ 103 V(Map, \
102 short_external_string_with_ascii_data_map, \ 104 short_external_string_with_one_byte_data_map, \
103 ShortExternalStringWithAsciiDataMap) \ 105 ShortExternalStringWithOneByteDataMap) \
104 V(Map, internalized_string_map, InternalizedStringMap) \ 106 V(Map, internalized_string_map, InternalizedStringMap) \
105 V(Map, ascii_internalized_string_map, AsciiInternalizedStringMap) \ 107 V(Map, ascii_internalized_string_map, AsciiInternalizedStringMap) \
106 V(Map, cons_internalized_string_map, ConsInternalizedStringMap) \ 108 V(Map, cons_internalized_string_map, ConsInternalizedStringMap) \
107 V(Map, cons_ascii_internalized_string_map, ConsAsciiInternalizedStringMap) \ 109 V(Map, cons_ascii_internalized_string_map, ConsAsciiInternalizedStringMap) \
108 V(Map, \ 110 V(Map, \
109 external_internalized_string_map, \ 111 external_internalized_string_map, \
110 ExternalInternalizedStringMap) \ 112 ExternalInternalizedStringMap) \
111 V(Map, \ 113 V(Map, \
112 external_internalized_string_with_ascii_data_map, \ 114 external_internalized_string_with_one_byte_data_map, \
113 ExternalInternalizedStringWithAsciiDataMap) \ 115 ExternalInternalizedStringWithOneByteDataMap) \
114 V(Map, \ 116 V(Map, \
115 external_ascii_internalized_string_map, \ 117 external_ascii_internalized_string_map, \
116 ExternalAsciiInternalizedStringMap) \ 118 ExternalAsciiInternalizedStringMap) \
117 V(Map, \ 119 V(Map, \
118 short_external_internalized_string_map, \ 120 short_external_internalized_string_map, \
119 ShortExternalInternalizedStringMap) \ 121 ShortExternalInternalizedStringMap) \
120 V(Map, \ 122 V(Map, \
121 short_external_internalized_string_with_ascii_data_map, \ 123 short_external_internalized_string_with_one_byte_data_map, \
122 ShortExternalInternalizedStringWithAsciiDataMap) \ 124 ShortExternalInternalizedStringWithOneByteDataMap) \
123 V(Map, \ 125 V(Map, \
124 short_external_ascii_internalized_string_map, \ 126 short_external_ascii_internalized_string_map, \
125 ShortExternalAsciiInternalizedStringMap) \ 127 ShortExternalAsciiInternalizedStringMap) \
126 V(Map, short_external_ascii_string_map, ShortExternalAsciiStringMap) \ 128 V(Map, short_external_ascii_string_map, ShortExternalAsciiStringMap) \
127 V(Map, undetectable_string_map, UndetectableStringMap) \ 129 V(Map, undetectable_string_map, UndetectableStringMap) \
128 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \ 130 V(Map, undetectable_ascii_string_map, UndetectableAsciiStringMap) \
129 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \ 131 V(Map, external_pixel_array_map, ExternalPixelArrayMap) \
130 V(Map, external_byte_array_map, ExternalByteArrayMap) \ 132 V(Map, external_byte_array_map, ExternalByteArrayMap) \
131 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \ 133 V(Map, external_unsigned_byte_array_map, ExternalUnsignedByteArrayMap) \
132 V(Map, external_short_array_map, ExternalShortArrayMap) \ 134 V(Map, external_short_array_map, ExternalShortArrayMap) \
(...skipping 2927 matching lines...) Expand 10 before | Expand all | Expand 10 after
3060 AssertNoAllocation no_alloc; // i.e. no gc allowed. 3062 AssertNoAllocation no_alloc; // i.e. no gc allowed.
3061 3063
3062 private: 3064 private:
3063 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3065 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3064 }; 3066 };
3065 #endif // DEBUG 3067 #endif // DEBUG
3066 3068
3067 } } // namespace v8::internal 3069 } } // namespace v8::internal
3068 3070
3069 #endif // V8_HEAP_H_ 3071 #endif // V8_HEAP_H_
OLDNEW
« include/v8.h ('K') | « src/arm/code-stubs-arm.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698