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

Unified Diff: src/compiler/js-operator.h

Issue 1436493002: [builtins] Introduce specialized Call/CallFunction builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-operator.h
diff --git a/src/compiler/js-operator.h b/src/compiler/js-operator.h
index c1887db9b0f912df385277e7f54e7fc13f759072..b5ddace4bd6e64b71a7dd83a34ec347850cb3ec5 100644
--- a/src/compiler/js-operator.h
+++ b/src/compiler/js-operator.h
@@ -42,18 +42,7 @@ bool operator!=(VectorSlotPair const&, VectorSlotPair const&);
size_t hash_value(VectorSlotPair const&);
-// Defines hints about receiver values based on structural knowledge. This is
-// used as a parameter by JSConvertReceiver operators.
-enum class ConvertReceiverMode : unsigned {
- kNullOrUndefined, // Guaranteed to be null or undefined.
- kNotNullOrUndefined, // Guaranteed to never be null or undefined.
- kAny // No specific knowledge about receiver.
-};
-
-size_t hash_value(ConvertReceiverMode);
-
-std::ostream& operator<<(std::ostream&, ConvertReceiverMode);
-
+// The ConvertReceiverMode is used as parameter by JSConvertReceiver operators.
ConvertReceiverMode ConvertReceiverModeOf(const Operator* op);
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698