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

Unified Diff: src/arm64/macro-assembler-arm64.cc

Issue 2841913003: [WIP] Initial CallFunctionCallback builtin.
Patch Set: Fix wrong register for arm64. Created 3 years, 8 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/arm64/macro-assembler-arm64.h ('k') | src/assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/macro-assembler-arm64.cc
diff --git a/src/arm64/macro-assembler-arm64.cc b/src/arm64/macro-assembler-arm64.cc
index 59b2e249672376b2b3e8bca48fc6fc47fdbb43f0..d0b7f45374d0ef6d941deb7f50311e771c61525b 100644
--- a/src/arm64/macro-assembler-arm64.cc
+++ b/src/arm64/macro-assembler-arm64.cc
@@ -1688,6 +1688,33 @@ void MacroAssembler::AssertUndefinedOrAllocationSite(Register object,
}
}
+void MacroAssembler::AssertApiCallResult(Register object) {
+ if (emit_debug_code()) {
+ Label done_checking;
+ Push(object);
+
+ // Check for Smis.
+ JumpIfSmi(object, &done_checking);
+
+ // Check for valid Oddballs.
+ JumpIfRoot(object, Heap::kTrueValueRootIndex, &done_checking);
+ JumpIfRoot(object, Heap::kFalseValueRootIndex, &done_checking);
+ JumpIfRoot(object, Heap::kNullValueRootIndex, &done_checking);
+ JumpIfRoot(object, Heap::kUndefinedValueRootIndex, &done_checking);
+
+ // Check for other primitives (String, Symbol and HeapNumber).
+ STATIC_ASSERT(LAST_PRIMITIVE_TYPE == ODDBALL_TYPE);
+ CompareObjectType(object, object, object, LAST_PRIMITIVE_TYPE);
+ B(lo, &done_checking);
+
+ // Check for JSReceivers.
+ Cmp(object, FIRST_JS_RECEIVER_TYPE);
+ Check(hs, kAPICallReturnedInvalidObject);
+
+ Bind(&done_checking);
+ Pop(object);
+ }
+}
void MacroAssembler::AssertPositiveOrZero(Register value) {
if (emit_debug_code()) {
« no previous file with comments | « src/arm64/macro-assembler-arm64.h ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698