Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: src/lithium-allocator.h

Issue 196133017: Experimental parser: merge r19949 (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/lithium.cc ('k') | src/lithium-codegen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
55 class LGap; 53 class LGap;
56 class LParallelMove; 54 class LParallelMove;
57 class LPointerMap; 55 class LPointerMap;
58 class LStackSlot;
59 class LRegister;
60 56
61 57
62 // This class represents a single point of a LOperand's lifetime. 58 // This class represents a single point of a LOperand's lifetime.
63 // For each lithium instruction there are exactly two lifetime positions: 59 // For each lithium instruction there are exactly two lifetime positions:
64 // the beginning and the end of the instruction. Lifetime positions for 60 // the beginning and the end of the instruction. Lifetime positions for
65 // different lithium instructions are disjoint. 61 // different lithium instructions are disjoint.
66 class LifetimePosition { 62 class LifetimePosition {
67 public: 63 public:
68 // Return the lifetime position that corresponds to the beginning of 64 // Return the lifetime position that corresponds to the beginning of
69 // the instruction with the given index. 65 // the instruction with the given index.
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 LAllocator* allocator_; 648 LAllocator* allocator_;
653 unsigned allocator_zone_start_allocation_size_; 649 unsigned allocator_zone_start_allocation_size_;
654 650
655 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase); 651 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase);
656 }; 652 };
657 653
658 654
659 } } // namespace v8::internal 655 } } // namespace v8::internal
660 656
661 #endif // V8_LITHIUM_ALLOCATOR_H_ 657 #endif // V8_LITHIUM_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « src/lithium.cc ('k') | src/lithium-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698