OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "debug.h" | 34 #include "debug.h" |
35 #include "deoptimizer.h" | 35 #include "deoptimizer.h" |
36 #include "elements.h" | 36 #include "elements.h" |
37 #include "execution.h" | 37 #include "execution.h" |
38 #include "full-codegen.h" | 38 #include "full-codegen.h" |
39 #include "hydrogen.h" | 39 #include "hydrogen.h" |
40 #include "objects-inl.h" | 40 #include "objects-inl.h" |
41 #include "objects-visiting.h" | 41 #include "objects-visiting.h" |
42 #include "macro-assembler.h" | 42 #include "macro-assembler.h" |
43 #include "safepoint-table.h" | 43 #include "safepoint-table.h" |
44 #include "scanner-base.h" | |
45 #include "string-stream.h" | 44 #include "string-stream.h" |
46 #include "utils.h" | 45 #include "utils.h" |
47 #include "vm-state-inl.h" | 46 #include "vm-state-inl.h" |
48 | 47 |
49 #ifdef ENABLE_DISASSEMBLER | 48 #ifdef ENABLE_DISASSEMBLER |
50 #include "disasm.h" | 49 #include "disasm.h" |
51 #include "disassembler.h" | 50 #include "disassembler.h" |
52 #endif | 51 #endif |
53 | 52 |
54 namespace v8 { | 53 namespace v8 { |
(...skipping 11544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11599 if (break_point_objects()->IsUndefined()) return 0; | 11598 if (break_point_objects()->IsUndefined()) return 0; |
11600 // Single break point. | 11599 // Single break point. |
11601 if (!break_point_objects()->IsFixedArray()) return 1; | 11600 if (!break_point_objects()->IsFixedArray()) return 1; |
11602 // Multiple break points. | 11601 // Multiple break points. |
11603 return FixedArray::cast(break_point_objects())->length(); | 11602 return FixedArray::cast(break_point_objects())->length(); |
11604 } | 11603 } |
11605 #endif | 11604 #endif |
11606 | 11605 |
11607 | 11606 |
11608 } } // namespace v8::internal | 11607 } } // namespace v8::internal |
OLD | NEW |