OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/debug/debug-evaluate.h" | 5 #include "src/debug/debug-evaluate.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/compiler.h" | 8 #include "src/compiler.h" |
9 #include "src/contexts.h" | 9 #include "src/contexts.h" |
10 #include "src/debug/debug-frames.h" | 10 #include "src/debug/debug-frames.h" |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 // Array builtins. | 426 // Array builtins. |
427 case Builtins::kArrayCode: | 427 case Builtins::kArrayCode: |
428 case Builtins::kArrayIndexOf: | 428 case Builtins::kArrayIndexOf: |
429 case Builtins::kArrayPrototypeValues: | 429 case Builtins::kArrayPrototypeValues: |
430 case Builtins::kArrayIncludes: | 430 case Builtins::kArrayIncludes: |
431 case Builtins::kArrayPrototypeEntries: | 431 case Builtins::kArrayPrototypeEntries: |
432 case Builtins::kArrayPrototypeKeys: | 432 case Builtins::kArrayPrototypeKeys: |
433 case Builtins::kArrayForEach: | 433 case Builtins::kArrayForEach: |
434 case Builtins::kArrayEvery: | 434 case Builtins::kArrayEvery: |
435 case Builtins::kArraySome: | 435 case Builtins::kArraySome: |
| 436 case Builtins::kArrayReduce: |
436 // Math builtins. | 437 // Math builtins. |
437 case Builtins::kMathAbs: | 438 case Builtins::kMathAbs: |
438 case Builtins::kMathAcos: | 439 case Builtins::kMathAcos: |
439 case Builtins::kMathAcosh: | 440 case Builtins::kMathAcosh: |
440 case Builtins::kMathAsin: | 441 case Builtins::kMathAsin: |
441 case Builtins::kMathAsinh: | 442 case Builtins::kMathAsinh: |
442 case Builtins::kMathAtan: | 443 case Builtins::kMathAtan: |
443 case Builtins::kMathAtanh: | 444 case Builtins::kMathAtanh: |
444 case Builtins::kMathAtan2: | 445 case Builtins::kMathAtan2: |
445 case Builtins::kMathCeil: | 446 case Builtins::kMathCeil: |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 | 592 |
592 if (FLAG_trace_side_effect_free_debug_evaluate) { | 593 if (FLAG_trace_side_effect_free_debug_evaluate) { |
593 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", | 594 PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n", |
594 reinterpret_cast<void*>(function_addr)); | 595 reinterpret_cast<void*>(function_addr)); |
595 } | 596 } |
596 return false; | 597 return false; |
597 } | 598 } |
598 | 599 |
599 } // namespace internal | 600 } // namespace internal |
600 } // namespace v8 | 601 } // namespace v8 |
OLD | NEW |