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

Side by Side Diff: src/factory.cc

Issue 10827040: Limit initial size of hidden properties and store identity hashes inline. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 8 years, 4 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/factory.h ('k') | src/objects.h » ('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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 1004
1005 1005
1006 void Factory::BecomeJSFunction(Handle<JSReceiver> object) { 1006 void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
1007 CALL_HEAP_FUNCTION_VOID( 1007 CALL_HEAP_FUNCTION_VOID(
1008 isolate(), 1008 isolate(),
1009 isolate()->heap()->ReinitializeJSReceiver( 1009 isolate()->heap()->ReinitializeJSReceiver(
1010 *object, JS_FUNCTION_TYPE, JSFunction::kSize)); 1010 *object, JS_FUNCTION_TYPE, JSFunction::kSize));
1011 } 1011 }
1012 1012
1013 1013
1014 void Factory::SetIdentityHash(Handle<JSObject> object, Object* hash) { 1014 void Factory::SetIdentityHash(Handle<JSObject> object, Smi* hash) {
1015 CALL_HEAP_FUNCTION_VOID( 1015 CALL_HEAP_FUNCTION_VOID(
1016 isolate(), 1016 isolate(),
1017 object->SetIdentityHash(hash, ALLOW_CREATION)); 1017 object->SetIdentityHash(hash, ALLOW_CREATION));
1018 } 1018 }
1019 1019
1020 1020
1021 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo( 1021 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
1022 Handle<String> name, 1022 Handle<String> name,
1023 int number_of_literals, 1023 int number_of_literals,
1024 Handle<Code> code, 1024 Handle<Code> code,
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 1401
1402 1402
1403 Handle<Object> Factory::ToBoolean(bool value) { 1403 Handle<Object> Factory::ToBoolean(bool value) {
1404 return Handle<Object>(value 1404 return Handle<Object>(value
1405 ? isolate()->heap()->true_value() 1405 ? isolate()->heap()->true_value()
1406 : isolate()->heap()->false_value()); 1406 : isolate()->heap()->false_value());
1407 } 1407 }
1408 1408
1409 1409
1410 } } // namespace v8::internal 1410 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/factory.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698