Index: src/runtime/runtime-interpreter.cc |
diff --git a/src/runtime/runtime-interpreter.cc b/src/runtime/runtime-interpreter.cc |
index 17b7fb5e165b2a2dcda9cd375a57a8cf51d79c55..f1525f1a88e7675d3d70a473157756cf0df47661 100644 |
--- a/src/runtime/runtime-interpreter.cc |
+++ b/src/runtime/runtime-interpreter.cc |
@@ -16,62 +16,6 @@ |
namespace v8 { |
namespace internal { |
-RUNTIME_FUNCTION(Runtime_InterpreterLessThan) { |
- HandleScope scope(isolate); |
- DCHECK_EQ(2, args.length()); |
- CONVERT_ARG_HANDLE_CHECKED(Object, x, 0); |
- CONVERT_ARG_HANDLE_CHECKED(Object, y, 1); |
- Maybe<bool> result = Object::LessThan(x, y); |
- if (result.IsJust()) { |
- return isolate->heap()->ToBoolean(result.FromJust()); |
- } else { |
- return isolate->heap()->exception(); |
- } |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_InterpreterGreaterThan) { |
- HandleScope scope(isolate); |
- DCHECK_EQ(2, args.length()); |
- CONVERT_ARG_HANDLE_CHECKED(Object, x, 0); |
- CONVERT_ARG_HANDLE_CHECKED(Object, y, 1); |
- Maybe<bool> result = Object::GreaterThan(x, y); |
- if (result.IsJust()) { |
- return isolate->heap()->ToBoolean(result.FromJust()); |
- } else { |
- return isolate->heap()->exception(); |
- } |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_InterpreterLessThanOrEqual) { |
- HandleScope scope(isolate); |
- DCHECK_EQ(2, args.length()); |
- CONVERT_ARG_HANDLE_CHECKED(Object, x, 0); |
- CONVERT_ARG_HANDLE_CHECKED(Object, y, 1); |
- Maybe<bool> result = Object::LessThanOrEqual(x, y); |
- if (result.IsJust()) { |
- return isolate->heap()->ToBoolean(result.FromJust()); |
- } else { |
- return isolate->heap()->exception(); |
- } |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_InterpreterGreaterThanOrEqual) { |
- HandleScope scope(isolate); |
- DCHECK_EQ(2, args.length()); |
- CONVERT_ARG_HANDLE_CHECKED(Object, x, 0); |
- CONVERT_ARG_HANDLE_CHECKED(Object, y, 1); |
- Maybe<bool> result = Object::GreaterThanOrEqual(x, y); |
- if (result.IsJust()) { |
- return isolate->heap()->ToBoolean(result.FromJust()); |
- } else { |
- return isolate->heap()->exception(); |
- } |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_InterpreterToBoolean) { |
SealHandleScope shs(isolate); |
DCHECK_EQ(1, args.length()); |