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

Side by Side Diff: src/heap.h

Issue 23537067: Add support for keyed-call on arrays of fast elements (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ARM port and clean up frameless SP-relative argument fetching 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/frames.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 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 2105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2116 2116
2117 bool CreateInitialMaps(); 2117 bool CreateInitialMaps();
2118 bool CreateInitialObjects(); 2118 bool CreateInitialObjects();
2119 2119
2120 // These five Create*EntryStub functions are here and forced to not be inlined 2120 // These five Create*EntryStub functions are here and forced to not be inlined
2121 // because of a gcc-4.4 bug that assigns wrong vtable entries. 2121 // because of a gcc-4.4 bug that assigns wrong vtable entries.
2122 NO_INLINE(void CreateJSEntryStub()); 2122 NO_INLINE(void CreateJSEntryStub());
2123 NO_INLINE(void CreateJSConstructEntryStub()); 2123 NO_INLINE(void CreateJSConstructEntryStub());
2124 2124
2125 void CreateFixedStubs(); 2125 void CreateFixedStubs();
2126 void CreateStubsRequiringBuiltins();
2126 2127
2127 MUST_USE_RESULT MaybeObject* CreateOddball(const char* to_string, 2128 MUST_USE_RESULT MaybeObject* CreateOddball(const char* to_string,
2128 Object* to_number, 2129 Object* to_number,
2129 byte kind); 2130 byte kind);
2130 2131
2131 // Allocate a JSArray with no elements 2132 // Allocate a JSArray with no elements
2132 MUST_USE_RESULT MaybeObject* AllocateJSArray( 2133 MUST_USE_RESULT MaybeObject* AllocateJSArray(
2133 ElementsKind elements_kind, 2134 ElementsKind elements_kind,
2134 PretenureFlag pretenure = NOT_TENURED); 2135 PretenureFlag pretenure = NOT_TENURED);
2135 2136
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
3077 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3078 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3078 3079
3079 private: 3080 private:
3080 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3081 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3081 }; 3082 };
3082 #endif // DEBUG 3083 #endif // DEBUG
3083 3084
3084 } } // namespace v8::internal 3085 } } // namespace v8::internal
3085 3086
3086 #endif // V8_HEAP_H_ 3087 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698