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

Side by Side Diff: src/v8globals.h

Issue 7374002: Refactor allocation policies. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 5 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/type-info.cc ('k') | src/x64/lithium-codegen-x64.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 class MaybeObject; 154 class MaybeObject;
155 class OldSpace; 155 class OldSpace;
156 class Property; 156 class Property;
157 class Foreign; 157 class Foreign;
158 class RegExpNode; 158 class RegExpNode;
159 struct RegExpCompileData; 159 struct RegExpCompileData;
160 class RegExpTree; 160 class RegExpTree;
161 class RegExpCompiler; 161 class RegExpCompiler;
162 class RegExpVisitor; 162 class RegExpVisitor;
163 class Scope; 163 class Scope;
164 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; 164 template<class Allocator = FreeStoreAllocator> class ScopeInfo;
165 class SerializedScopeInfo; 165 class SerializedScopeInfo;
166 class Script; 166 class Script;
167 class Slot; 167 class Slot;
168 class Smi; 168 class Smi;
169 template <typename Config, class Allocator = FreeStoreAllocationPolicy> 169 template <typename Config, class Allocator = FreeStoreAllocator>
170 class SplayTree; 170 class SplayTree;
171 class Statement; 171 class Statement;
172 class String; 172 class String;
173 class Struct; 173 class Struct;
174 class SwitchStatement; 174 class SwitchStatement;
175 class AstVisitor; 175 class AstVisitor;
176 class Variable; 176 class Variable;
177 class VariableProxy; 177 class VariableProxy;
178 class RelocInfo; 178 class RelocInfo;
179 class Deserializer; 179 class Deserializer;
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000; 512 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000;
513 513
514 const uint64_t kHoleNanInt64 = 514 const uint64_t kHoleNanInt64 =
515 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32; 515 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32;
516 const uint64_t kLastNonNaNInt64 = 516 const uint64_t kLastNonNaNInt64 =
517 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32); 517 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32);
518 518
519 } } // namespace v8::internal 519 } } // namespace v8::internal
520 520
521 #endif // V8_V8GLOBALS_H_ 521 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « src/type-info.cc ('k') | src/x64/lithium-codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698