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

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

Issue 6219001: Split LInstruction into multiple variant to make our LIR more compact.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698