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

Unified Diff: src/assembler.h

Issue 1576093004: [Interpreter] Add ForInPrepare runtime function which returns a ObjectTriple. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comment and variable name tweaks Created 4 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
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index 08c6b38541cf9a12802e2eb5dc9b0146192f6c01..9849527f920c59298a446630a2f43e761d564803 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -816,9 +816,14 @@ class ExternalReference BASE_EMBEDDED {
// Used in the simulator to support different native api calls.
enum Type {
// Builtin call.
- // Object* f(v8::internal::Arguments).
+ // Object* f(v8::internal::Arguments) or
+ // ObjectPair f(v8::internal::Arguments).
BUILTIN_CALL, // default
+ // Builtin call that returns .
+ // ObjectTriple f(v8::internal::Arguments).
+ BUILTIN_CALL_TRIPLE,
+
// Builtin that takes float arguments and returns an int.
// int f(double, double).
BUILTIN_COMPARE_CALL,
« no previous file with comments | « src/arm64/simulator-arm64.cc ('k') | src/assembler.cc » ('j') | src/runtime/runtime-forin.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698