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

Side by Side Diff: src/heap.h

Issue 7976024: Add dynamic stack frame alignment to optimized functions with untagged doubles on the stack. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Incorporate code review comments. Created 9 years, 2 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
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.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 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 V(Map, one_pointer_filler_map, OnePointerFillerMap) \ 58 V(Map, one_pointer_filler_map, OnePointerFillerMap) \
59 V(Map, two_pointer_filler_map, TwoPointerFillerMap) \ 59 V(Map, two_pointer_filler_map, TwoPointerFillerMap) \
60 /* Cluster the most popular ones in a few cache lines here at the top. */ \ 60 /* Cluster the most popular ones in a few cache lines here at the top. */ \
61 V(Smi, store_buffer_top, StoreBufferTop) \ 61 V(Smi, store_buffer_top, StoreBufferTop) \
62 V(Object, undefined_value, UndefinedValue) \ 62 V(Object, undefined_value, UndefinedValue) \
63 V(Object, the_hole_value, TheHoleValue) \ 63 V(Object, the_hole_value, TheHoleValue) \
64 V(Object, null_value, NullValue) \ 64 V(Object, null_value, NullValue) \
65 V(Object, true_value, TrueValue) \ 65 V(Object, true_value, TrueValue) \
66 V(Object, false_value, FalseValue) \ 66 V(Object, false_value, FalseValue) \
67 V(Object, arguments_marker, ArgumentsMarker) \ 67 V(Object, arguments_marker, ArgumentsMarker) \
68 V(Object, frame_alignment_marker, FrameAlignmentMarker) \
68 V(Map, heap_number_map, HeapNumberMap) \ 69 V(Map, heap_number_map, HeapNumberMap) \
69 V(Map, global_context_map, GlobalContextMap) \ 70 V(Map, global_context_map, GlobalContextMap) \
70 V(Map, fixed_array_map, FixedArrayMap) \ 71 V(Map, fixed_array_map, FixedArrayMap) \
71 V(Map, serialized_scope_info_map, SerializedScopeInfoMap) \ 72 V(Map, serialized_scope_info_map, SerializedScopeInfoMap) \
72 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 73 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
73 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ 74 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \
74 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ 75 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \
75 V(Map, meta_map, MetaMap) \ 76 V(Map, meta_map, MetaMap) \
76 V(Map, hash_table_map, HashTableMap) \ 77 V(Map, hash_table_map, HashTableMap) \
77 V(Smi, stack_limit, StackLimit) \ 78 V(Smi, stack_limit, StackLimit) \
(...skipping 2404 matching lines...) Expand 10 before | Expand all | Expand 10 after
2482 2483
2483 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2484 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2484 }; 2485 };
2485 #endif // DEBUG || LIVE_OBJECT_LIST 2486 #endif // DEBUG || LIVE_OBJECT_LIST
2486 2487
2487 } } // namespace v8::internal 2488 } } // namespace v8::internal
2488 2489
2489 #undef HEAP 2490 #undef HEAP
2490 2491
2491 #endif // V8_HEAP_H_ 2492 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698