OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
9 #include "src/compiler.h" | 9 #include "src/compiler.h" |
10 #include "src/cpu-profiler.h" | 10 #include "src/cpu-profiler.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 | 69 |
70 | 70 |
71 static Handle<String> NameToFunctionName(Handle<Name> name) { | 71 static Handle<String> NameToFunctionName(Handle<Name> name) { |
72 Handle<String> stringName(name->GetHeap()->empty_string()); | 72 Handle<String> stringName(name->GetHeap()->empty_string()); |
73 | 73 |
74 // TODO(caitp): Follow proper rules in section 9.2.11 (SetFunctionName) | 74 // TODO(caitp): Follow proper rules in section 9.2.11 (SetFunctionName) |
75 if (name->IsSymbol()) { | 75 if (name->IsSymbol()) { |
76 Handle<Object> description(Handle<Symbol>::cast(name)->name(), | 76 Handle<Object> description(Handle<Symbol>::cast(name)->name(), |
77 name->GetIsolate()); | 77 name->GetIsolate()); |
78 if (description->IsString()) { | 78 if (description->IsString()) { |
79 stringName = Handle<String>::cast(description); | 79 return Handle<String>::cast(description); |
80 } | 80 } |
81 } else { | 81 } else { |
82 stringName = Handle<String>::cast(name); | 82 return String::Flatten(Handle<String>::cast(name)); |
83 } | 83 } |
84 | 84 |
85 return stringName; | 85 return stringName; |
86 } | 86 } |
87 | 87 |
88 | 88 |
89 RUNTIME_FUNCTION(Runtime_FunctionSetName) { | 89 RUNTIME_FUNCTION(Runtime_FunctionSetName) { |
90 HandleScope scope(isolate); | 90 HandleScope scope(isolate); |
91 DCHECK(args.length() == 2); | 91 DCHECK(args.length() == 2); |
92 | 92 |
93 CONVERT_ARG_HANDLE_CHECKED(JSFunction, f, 0); | 93 CONVERT_ARG_HANDLE_CHECKED(JSFunction, f, 0); |
94 CONVERT_ARG_HANDLE_CHECKED(Name, name, 1); | 94 CONVERT_ARG_HANDLE_CHECKED(Name, name, 1); |
95 | 95 |
96 f->shared()->set_name(*NameToFunctionName(name)); | 96 // NameToFunctionName may cause allocations so we need to be careful about |
adamk
2015/04/24 16:29:07
Not sure this comment adds much, I'd tend to expec
| |
97 // execution order here. | |
98 name = NameToFunctionName(name); | |
99 f->shared()->set_name(*name); | |
97 return isolate->heap()->undefined_value(); | 100 return isolate->heap()->undefined_value(); |
98 } | 101 } |
99 | 102 |
100 | 103 |
101 RUNTIME_FUNCTION(Runtime_FunctionNameShouldPrintAsAnonymous) { | 104 RUNTIME_FUNCTION(Runtime_FunctionNameShouldPrintAsAnonymous) { |
102 SealHandleScope shs(isolate); | 105 SealHandleScope shs(isolate); |
103 DCHECK(args.length() == 1); | 106 DCHECK(args.length() == 1); |
104 CONVERT_ARG_CHECKED(JSFunction, f, 0); | 107 CONVERT_ARG_CHECKED(JSFunction, f, 0); |
105 return isolate->heap()->ToBoolean( | 108 return isolate->heap()->ToBoolean( |
106 f->shared()->name_should_print_as_anonymous()); | 109 f->shared()->name_should_print_as_anonymous()); |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
642 | 645 |
643 | 646 |
644 RUNTIME_FUNCTION(Runtime_IsFunction) { | 647 RUNTIME_FUNCTION(Runtime_IsFunction) { |
645 SealHandleScope shs(isolate); | 648 SealHandleScope shs(isolate); |
646 DCHECK(args.length() == 1); | 649 DCHECK(args.length() == 1); |
647 CONVERT_ARG_CHECKED(Object, obj, 0); | 650 CONVERT_ARG_CHECKED(Object, obj, 0); |
648 return isolate->heap()->ToBoolean(obj->IsJSFunction()); | 651 return isolate->heap()->ToBoolean(obj->IsJSFunction()); |
649 } | 652 } |
650 } | 653 } |
651 } // namespace v8::internal | 654 } // namespace v8::internal |
OLD | NEW |