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

Unified Diff: src/builtins/builtins.h

Issue 2259883002: [turbofan] Inline calls to CPP builtins (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@builtin-descriptors
Patch Set: Comments and API builtins Created 4 years, 4 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 | « no previous file | src/builtins/x64/builtins-x64.cc » ('j') | src/compiler/js-graph.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins.h
diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
index 68fd84ec0dd0aa7a973afaca5f4e123e3a86d41e..9ec48a678dfbadd199d4f4246adb93be09566a96 100644
--- a/src/builtins/builtins.h
+++ b/src/builtins/builtins.h
@@ -615,6 +615,16 @@ class Builtins {
TailCallMode tail_call_mode,
CallableType function_type = CallableType::kAny);
+ bool IsCppBuiltin(Name name) const {
+ DCHECK(name < BUILTIN_COUNT);
+ return (builtins_[name].kind == CPP || builtins_[name].kind == API);
+ }
+
+ const Descriptor* DescriptorFor(Name name) const {
+ DCHECK(name < BUILTIN_COUNT);
+ return &builtins_[name];
+ }
+
Code* builtin(Name name) {
// Code::cast cannot be used here since we access builtins
// during the marking phase of mark sweep. See IC::Clear.
« no previous file with comments | « no previous file | src/builtins/x64/builtins-x64.cc » ('j') | src/compiler/js-graph.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698