OLD | NEW |
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...) Loading... |
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...) Loading... |
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 |
OLD | NEW |