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

Unified Diff: Source/bindings/templates/methods.cpp

Issue 657523002: Skip expensive hasInstance() type-checks in overloads (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: minor updates Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/templates/interface.cpp ('k') | Source/bindings/tests/idls/core/TestObject.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/templates/methods.cpp
diff --git a/Source/bindings/templates/methods.cpp b/Source/bindings/templates/methods.cpp
index 94b70730869b707916dfc76315938738c13565d4..5726897ac7e85f378979afc0deed61991a912242 100644
--- a/Source/bindings/templates/methods.cpp
+++ b/Source/bindings/templates/methods.cpp
@@ -1,7 +1,7 @@
{##############################################################################}
{% macro generate_method(method, world_suffix) %}
{% filter conditional(method.conditional_string) %}
-static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const v8::FunctionCallbackInfo<v8::Value>& info)
+static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const v8::FunctionCallbackInfo<v8::Value>& info{% if method.overload_index %}, int typeCheckedArgumentIndex{% endif %})
{
{# Local variables #}
{% if method.has_exception_state %}
@@ -172,7 +172,18 @@ if (!isUndefinedOrNull(info[{{argument.index}}]) && !info[{{argument.index}}]->I
}
{{argument.v8_value_to_local_cpp_value}};
{% else %}{# argument.is_nullable #}
+{# Optionally do an "unsafe" type conversion if meaningful for this argument's
+ type and if this method is overloaded and the argument's type was checked as
+ part of overload resolution for this particular call. #}
+{% if argument.is_ever_distinguishing_argument and
+ argument.v8_value_to_local_cpp_value_without_type_check %}
+if (typeCheckedArgumentIndex == {{argument.index}})
+ {{argument.v8_value_to_local_cpp_value_without_type_check}};
+else
+ {{argument.v8_value_to_local_cpp_value}};
+{% else %}
{{argument.v8_value_to_local_cpp_value}};
+{% endif %}
{% endif %}{# argument.is_nullable #}
{# Type checking, possibly throw a TypeError, per:
http://www.w3.org/TR/WebIDL/#es-type-mapping #}
@@ -377,7 +388,7 @@ static void {{overloads.name}}Method{{world_suffix}}(const v8::FunctionCallbackI
{# 10. If i = d, then: #}
case {{length}}:
{# Then resolve by testing argument #}
- {% for test, method in tests_methods %}
+ {% for test, method, typed_checked_argument_index in tests_methods %}
{% filter runtime_enabled(not overloads.runtime_enabled_function_all and
method.runtime_enabled_function) %}
if ({{test}}) {
@@ -387,7 +398,7 @@ static void {{overloads.name}}Method{{world_suffix}}(const v8::FunctionCallbackI
{% if method.deprecate_as and not overloads.deprecate_all_as %}
UseCounter::countDeprecation(callingExecutionContext(info.GetIsolate()), UseCounter::{{method.deprecate_as}});
{% endif %}
- {{method.name}}{{method.overload_index}}Method{{world_suffix}}(info);
+ {{method.name}}{{method.overload_index}}Method{{world_suffix}}(info, {{typed_checked_argument_index}});
return;
}
{% endfilter %}
@@ -547,7 +558,7 @@ bool {{v8_class}}::PrivateScript::{{method.name}}Method({{method.argument_declar
{% set name = '%sConstructorCallback' % v8_class
if constructor.is_named_constructor else
'constructor%s' % (constructor.overload_index or '') %}
-static void {{name}}(const v8::FunctionCallbackInfo<v8::Value>& info)
+static void {{name}}(const v8::FunctionCallbackInfo<v8::Value>& info{% if constructor.overload_index %}, int typeCheckedArgumentIndex{% endif %})
{
{% if constructor.is_named_constructor %}
if (!info.IsConstructCall()) {
« no previous file with comments | « Source/bindings/templates/interface.cpp ('k') | Source/bindings/tests/idls/core/TestObject.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698