| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 2595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2606 | 2606 |
| 2607 Object* search_target_; | 2607 Object* search_target_; |
| 2608 bool found_target_; | 2608 bool found_target_; |
| 2609 bool found_target_in_trace_; | 2609 bool found_target_in_trace_; |
| 2610 WhatToFind what_to_find_; | 2610 WhatToFind what_to_find_; |
| 2611 VisitMode visit_mode_; | 2611 VisitMode visit_mode_; |
| 2612 List<Object*> object_stack_; | 2612 List<Object*> object_stack_; |
| 2613 | 2613 |
| 2614 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 2614 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
| 2615 | 2615 |
| 2616 private: |
| 2616 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2617 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2617 }; | 2618 }; |
| 2618 #endif // DEBUG || LIVE_OBJECT_LIST | 2619 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2619 | 2620 |
| 2620 } } // namespace v8::internal | 2621 } } // namespace v8::internal |
| 2621 | 2622 |
| 2622 #undef HEAP | 2623 #undef HEAP |
| 2623 | 2624 |
| 2624 #endif // V8_HEAP_H_ | 2625 #endif // V8_HEAP_H_ |
| OLD | NEW |