| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 class HPhi; | 43 class HPhi; |
| 44 class HTracer; | 44 class HTracer; |
| 45 class HValue; | 45 class HValue; |
| 46 class BitVector; | 46 class BitVector; |
| 47 class StringStream; | 47 class StringStream; |
| 48 | 48 |
| 49 class LArgument; | 49 class LArgument; |
| 50 class LChunk; | 50 class LChunk; |
| 51 class LConstantOperand; | 51 class LConstantOperand; |
| 52 class LGap; | 52 class LGap; |
| 53 class LInstruction; | |
| 54 class LParallelMove; | 53 class LParallelMove; |
| 55 class LPointerMap; | 54 class LPointerMap; |
| 56 class LStackSlot; | 55 class LStackSlot; |
| 57 class LRegister; | 56 class LRegister; |
| 58 | 57 |
| 59 | 58 |
| 60 // This class represents a single point of a LOperand's lifetime. | 59 // This class represents a single point of a LOperand's lifetime. |
| 61 // For each lithium instruction there are exactly two lifetime positions: | 60 // For each lithium instruction there are exactly two lifetime positions: |
| 62 // the beginning and the end of the instruction. Lifetime positions for | 61 // the beginning and the end of the instruction. Lifetime positions for |
| 63 // different lithium instructions are disjoint. | 62 // different lithium instructions are disjoint. |
| (...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1028 | 1027 |
| 1029 bool has_osr_entry_; | 1028 bool has_osr_entry_; |
| 1030 | 1029 |
| 1031 DISALLOW_COPY_AND_ASSIGN(LAllocator); | 1030 DISALLOW_COPY_AND_ASSIGN(LAllocator); |
| 1032 }; | 1031 }; |
| 1033 | 1032 |
| 1034 | 1033 |
| 1035 } } // namespace v8::internal | 1034 } } // namespace v8::internal |
| 1036 | 1035 |
| 1037 #endif // V8_LITHIUM_ALLOCATOR_H_ | 1036 #endif // V8_LITHIUM_ALLOCATOR_H_ |
| OLD | NEW |