| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
| 8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/codegen.h" | 9 #include "src/codegen.h" |
| 10 #include "src/runtime/runtime-utils.h" | 10 #include "src/runtime/runtime-utils.h" |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 | 245 |
| 246 | 246 |
| 247 RUNTIME_FUNCTION(Runtime_IsMinusZero) { | 247 RUNTIME_FUNCTION(Runtime_IsMinusZero) { |
| 248 SealHandleScope shs(isolate); | 248 SealHandleScope shs(isolate); |
| 249 DCHECK(args.length() == 1); | 249 DCHECK(args.length() == 1); |
| 250 CONVERT_ARG_CHECKED(Object, obj, 0); | 250 CONVERT_ARG_CHECKED(Object, obj, 0); |
| 251 if (!obj->IsHeapNumber()) return isolate->heap()->false_value(); | 251 if (!obj->IsHeapNumber()) return isolate->heap()->false_value(); |
| 252 HeapNumber* number = HeapNumber::cast(obj); | 252 HeapNumber* number = HeapNumber::cast(obj); |
| 253 return isolate->heap()->ToBoolean(IsMinusZero(number->value())); | 253 return isolate->heap()->ToBoolean(IsMinusZero(number->value())); |
| 254 } | 254 } |
| 255 } | 255 } // namespace internal |
| 256 } // namespace v8::internal | 256 } // namespace v8 |
| OLD | NEW |