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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 src->GetElementsTransitionMap(i, elements_kind), | 518 src->GetElementsTransitionMap(i, elements_kind), |
519 Map); | 519 Map); |
520 } | 520 } |
521 | 521 |
522 | 522 |
523 Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) { | 523 Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) { |
524 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray); | 524 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray); |
525 } | 525 } |
526 | 526 |
527 | 527 |
528 Handle<FixedArray> Factory::CopySizeFixedArray(Handle<FixedArray> array, | |
529 int new_length) { | |
530 CALL_HEAP_FUNCTION(isolate(), array->CopySize(new_length), FixedArray); | |
531 } | |
532 | |
533 | |
534 Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray( | 528 Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray( |
535 Handle<FixedDoubleArray> array) { | 529 Handle<FixedDoubleArray> array) { |
536 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray); | 530 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray); |
537 } | 531 } |
538 | 532 |
539 | 533 |
540 Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo( | 534 Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo( |
541 Handle<SharedFunctionInfo> function_info, | 535 Handle<SharedFunctionInfo> function_info, |
542 Handle<Map> function_map, | 536 Handle<Map> function_map, |
543 PretenureFlag pretenure) { | 537 PretenureFlag pretenure) { |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 | 863 |
870 | 864 |
871 Handle<ScopeInfo> Factory::NewScopeInfo(int length) { | 865 Handle<ScopeInfo> Factory::NewScopeInfo(int length) { |
872 CALL_HEAP_FUNCTION( | 866 CALL_HEAP_FUNCTION( |
873 isolate(), | 867 isolate(), |
874 isolate()->heap()->AllocateScopeInfo(length), | 868 isolate()->heap()->AllocateScopeInfo(length), |
875 ScopeInfo); | 869 ScopeInfo); |
876 } | 870 } |
877 | 871 |
878 | 872 |
879 Handle<JSObject> Factory::NewExternal(void* value) { | |
880 CALL_HEAP_FUNCTION(isolate(), | |
881 isolate()->heap()->AllocateExternal(value), | |
882 JSObject); | |
883 } | |
884 | |
885 | |
886 Handle<Code> Factory::NewCode(const CodeDesc& desc, | 873 Handle<Code> Factory::NewCode(const CodeDesc& desc, |
887 Code::Flags flags, | 874 Code::Flags flags, |
888 Handle<Object> self_ref, | 875 Handle<Object> self_ref, |
889 bool immovable) { | 876 bool immovable) { |
890 CALL_HEAP_FUNCTION(isolate(), | 877 CALL_HEAP_FUNCTION(isolate(), |
891 isolate()->heap()->CreateCode( | 878 isolate()->heap()->CreateCode( |
892 desc, flags, self_ref, immovable), | 879 desc, flags, self_ref, immovable), |
893 Code); | 880 Code); |
894 } | 881 } |
895 | 882 |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1439 | 1426 |
1440 | 1427 |
1441 Handle<Object> Factory::ToBoolean(bool value) { | 1428 Handle<Object> Factory::ToBoolean(bool value) { |
1442 return Handle<Object>(value | 1429 return Handle<Object>(value |
1443 ? isolate()->heap()->true_value() | 1430 ? isolate()->heap()->true_value() |
1444 : isolate()->heap()->false_value()); | 1431 : isolate()->heap()->false_value()); |
1445 } | 1432 } |
1446 | 1433 |
1447 | 1434 |
1448 } } // namespace v8::internal | 1435 } } // namespace v8::internal |
OLD | NEW |