| 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 20 matching lines...) Expand all Loading... |
| 31 #include "arguments.h" | 31 #include "arguments.h" |
| 32 #include "bootstrapper.h" | 32 #include "bootstrapper.h" |
| 33 #include "codegen.h" | 33 #include "codegen.h" |
| 34 #include "debug.h" | 34 #include "debug.h" |
| 35 #include "deoptimizer.h" | 35 #include "deoptimizer.h" |
| 36 #include "execution.h" | 36 #include "execution.h" |
| 37 #include "full-codegen.h" | 37 #include "full-codegen.h" |
| 38 #include "hydrogen.h" | 38 #include "hydrogen.h" |
| 39 #include "objects-inl.h" | 39 #include "objects-inl.h" |
| 40 #include "objects-visiting.h" | 40 #include "objects-visiting.h" |
| 41 #include "objects-visiting-inl.h" |
| 41 #include "macro-assembler.h" | 42 #include "macro-assembler.h" |
| 42 #include "mark-compact.h" | 43 #include "mark-compact.h" |
| 43 #include "safepoint-table.h" | 44 #include "safepoint-table.h" |
| 44 #include "scanner-base.h" | 45 #include "scanner-base.h" |
| 45 #include "string-stream.h" | 46 #include "string-stream.h" |
| 46 #include "utils.h" | 47 #include "utils.h" |
| 47 #include "vm-state-inl.h" | 48 #include "vm-state-inl.h" |
| 48 | 49 |
| 49 #ifdef ENABLE_DISASSEMBLER | 50 #ifdef ENABLE_DISASSEMBLER |
| 50 #include "disasm.h" | 51 #include "disasm.h" |
| (...skipping 10570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10621 if (break_point_objects()->IsUndefined()) return 0; | 10622 if (break_point_objects()->IsUndefined()) return 0; |
| 10622 // Single beak point. | 10623 // Single beak point. |
| 10623 if (!break_point_objects()->IsFixedArray()) return 1; | 10624 if (!break_point_objects()->IsFixedArray()) return 1; |
| 10624 // Multiple break points. | 10625 // Multiple break points. |
| 10625 return FixedArray::cast(break_point_objects())->length(); | 10626 return FixedArray::cast(break_point_objects())->length(); |
| 10626 } | 10627 } |
| 10627 #endif | 10628 #endif |
| 10628 | 10629 |
| 10629 | 10630 |
| 10630 } } // namespace v8::internal | 10631 } } // namespace v8::internal |
| OLD | NEW |