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 29 matching lines...) Expand all Loading... |
40 // Forward declarations. | 40 // Forward declarations. |
41 class HBasicBlock; | 41 class HBasicBlock; |
42 class HGraph; | 42 class HGraph; |
43 class HInstruction; | 43 class HInstruction; |
44 class HPhi; | 44 class HPhi; |
45 class HTracer; | 45 class HTracer; |
46 class HValue; | 46 class HValue; |
47 class BitVector; | 47 class BitVector; |
48 class StringStream; | 48 class StringStream; |
49 | 49 |
50 class LArgument; | |
51 class LPlatformChunk; | 50 class LPlatformChunk; |
52 class LOperand; | 51 class LOperand; |
53 class LUnallocated; | 52 class LUnallocated; |
54 class LConstantOperand; | 53 class LConstantOperand; |
55 class LGap; | 54 class LGap; |
56 class LParallelMove; | 55 class LParallelMove; |
57 class LPointerMap; | 56 class LPointerMap; |
58 class LStackSlot; | 57 class LStackSlot; |
59 class LRegister; | 58 class LRegister; |
60 | 59 |
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 LAllocator* allocator_; | 651 LAllocator* allocator_; |
653 unsigned allocator_zone_start_allocation_size_; | 652 unsigned allocator_zone_start_allocation_size_; |
654 | 653 |
655 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase); | 654 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase); |
656 }; | 655 }; |
657 | 656 |
658 | 657 |
659 } } // namespace v8::internal | 658 } } // namespace v8::internal |
660 | 659 |
661 #endif // V8_LITHIUM_ALLOCATOR_H_ | 660 #endif // V8_LITHIUM_ALLOCATOR_H_ |
OLD | NEW |