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

Side by Side Diff: src/heap/heap.h

Issue 1542963002: [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: [arm64] Poke does not preserve flags with --debug-code. Created 4 years, 12 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
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/heap/objects-visiting.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 STRONG_ROOT_LIST(V) \ 208 STRONG_ROOT_LIST(V) \
209 SMI_ROOT_LIST(V) \ 209 SMI_ROOT_LIST(V) \
210 V(StringTable, string_table, StringTable) 210 V(StringTable, string_table, StringTable)
211 211
212 #define INTERNALIZED_STRING_LIST(V) \ 212 #define INTERNALIZED_STRING_LIST(V) \
213 V(anonymous_string, "anonymous") \ 213 V(anonymous_string, "anonymous") \
214 V(apply_string, "apply") \ 214 V(apply_string, "apply") \
215 V(arguments_string, "arguments") \ 215 V(arguments_string, "arguments") \
216 V(Arguments_string, "Arguments") \ 216 V(Arguments_string, "Arguments") \
217 V(Array_string, "Array") \ 217 V(Array_string, "Array") \
218 V(bind_string, "bind") \
218 V(bool16x8_string, "bool16x8") \ 219 V(bool16x8_string, "bool16x8") \
219 V(Bool16x8_string, "Bool16x8") \ 220 V(Bool16x8_string, "Bool16x8") \
220 V(bool32x4_string, "bool32x4") \ 221 V(bool32x4_string, "bool32x4") \
221 V(Bool32x4_string, "Bool32x4") \ 222 V(Bool32x4_string, "Bool32x4") \
222 V(bool8x16_string, "bool8x16") \ 223 V(bool8x16_string, "bool8x16") \
223 V(Bool8x16_string, "Bool8x16") \ 224 V(Bool8x16_string, "Bool8x16") \
224 V(boolean_string, "boolean") \ 225 V(boolean_string, "boolean") \
225 V(Boolean_string, "Boolean") \ 226 V(Boolean_string, "Boolean") \
227 V(bound__string, "bound ") \
226 V(byte_length_string, "byteLength") \ 228 V(byte_length_string, "byteLength") \
227 V(byte_offset_string, "byteOffset") \ 229 V(byte_offset_string, "byteOffset") \
228 V(call_string, "call") \ 230 V(call_string, "call") \
229 V(callee_string, "callee") \ 231 V(callee_string, "callee") \
230 V(caller_string, "caller") \ 232 V(caller_string, "caller") \
231 V(cell_value_string, "%cell_value") \ 233 V(cell_value_string, "%cell_value") \
232 V(char_at_string, "CharAt") \ 234 V(char_at_string, "CharAt") \
233 V(closure_string, "(closure)") \ 235 V(closure_string, "(closure)") \
234 V(compare_ic_string, "==") \ 236 V(compare_ic_string, "==") \
235 V(configurable_string, "configurable") \ 237 V(configurable_string, "configurable") \
(...skipping 2514 matching lines...) Expand 10 before | Expand all | Expand 10 after
2750 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2752 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2751 2753
2752 private: 2754 private:
2753 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2755 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2754 }; 2756 };
2755 #endif // DEBUG 2757 #endif // DEBUG
2756 } // namespace internal 2758 } // namespace internal
2757 } // namespace v8 2759 } // namespace v8
2758 2760
2759 #endif // V8_HEAP_HEAP_H_ 2761 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/heap/objects-visiting.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698