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

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

Issue 2828933002: [console] fast console.assert(true) (Closed)
Patch Set: addressed comments 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/builtins/builtins-definitions.h ('k') | src/inspector/v8-console.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index 5ff55fd751c84e9dff59414370d19964b700a6fd..3e20e6fb32042c729a9f4b3285cfe9fc92183f9f 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -1094,6 +1094,11 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler {
return CallStub(Builtins::CallableFor(isolate(), id), context, args...);
}
+ template <class... TArgs>
+ Node* TailCallBuiltin(Builtins::Name id, Node* context, TArgs... args) {
+ return TailCallStub(Builtins::CallableFor(isolate(), id), context, args...);
+ }
+
void LoadPropertyFromFastObject(Node* object, Node* map, Node* descriptors,
Node* name_index, Variable* var_details,
Variable* var_value);
« no previous file with comments | « src/builtins/builtins-definitions.h ('k') | src/inspector/v8-console.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698