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

Unified Diff: src/code-stub-assembler.cc

Issue 2647833004: [turbofan] Properly implement %_ClassOf intrinsic. (Closed)
Patch Set: Created 3 years, 11 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 | « src/code-stub-assembler.h ('k') | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.cc
diff --git a/src/code-stub-assembler.cc b/src/code-stub-assembler.cc
index 2469e2cc4871154fe57fe0973bc6c63118491c4c..fc73d66c1b89945239913e51b0d3c68bf40f22b5 100644
--- a/src/code-stub-assembler.cc
+++ b/src/code-stub-assembler.cc
@@ -7764,6 +7764,57 @@ Node* CodeStubAssembler::HasProperty(
return result.value();
}
+Node* CodeStubAssembler::ClassOf(Node* value) {
+ Variable var_result(this, MachineRepresentation::kTaggedPointer);
+ Label if_function(this, Label::kDeferred), if_object(this, Label::kDeferred),
+ if_primitive(this, Label::kDeferred), return_result(this);
+
+ // Check if {value} is a Smi.
+ GotoIf(TaggedIsSmi(value), &if_primitive);
+
+ Node* value_map = LoadMap(value);
+ Node* value_instance_type = LoadMapInstanceType(value_map);
+
+ // Check if {value} is a JSFunction or JSBoundFunction.
+ STATIC_ASSERT(LAST_TYPE == LAST_FUNCTION_TYPE);
+ GotoIf(Uint32LessThanOrEqual(Int32Constant(FIRST_FUNCTION_TYPE),
+ value_instance_type),
+ &if_function);
+
+ // Check if {value} is a primitive HeapObject.
+ STATIC_ASSERT(LAST_TYPE == LAST_JS_RECEIVER_TYPE);
+ GotoIf(Uint32LessThan(value_instance_type,
+ Int32Constant(FIRST_JS_RECEIVER_TYPE)),
+ &if_primitive);
+
+ // Load the {value}s constructor, and check that it's a JSFunction.
+ Node* constructor = LoadMapConstructor(value_map);
+ GotoUnless(IsJSFunction(constructor), &if_object);
+
+ // Return the instance class name for the {constructor}.
+ Node* shared_info =
+ LoadObjectField(constructor, JSFunction::kSharedFunctionInfoOffset);
+ Node* instance_class_name = LoadObjectField(
+ shared_info, SharedFunctionInfo::kInstanceClassNameOffset);
+ var_result.Bind(instance_class_name);
+ Goto(&return_result);
+
+ Bind(&if_function);
+ var_result.Bind(LoadRoot(Heap::kFunction_stringRootIndex));
+ Goto(&return_result);
+
+ Bind(&if_object);
+ var_result.Bind(LoadRoot(Heap::kObject_stringRootIndex));
+ Goto(&return_result);
+
+ Bind(&if_primitive);
+ var_result.Bind(NullConstant());
+ Goto(&return_result);
+
+ Bind(&return_result);
+ return var_result.value();
+}
+
Node* CodeStubAssembler::Typeof(Node* value, Node* context) {
Variable result_var(this, MachineRepresentation::kTagged);
« no previous file with comments | « src/code-stub-assembler.h ('k') | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698