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

Side by Side Diff: src/globals.h

Issue 660280: Parametrize C++ splay tree with allocator. (Closed)
Patch Set: P -> Allocator Created 10 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
« no previous file with comments | « no previous file | src/heap.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 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 class RegExpNode; 254 class RegExpNode;
255 struct RegExpCompileData; 255 struct RegExpCompileData;
256 class RegExpTree; 256 class RegExpTree;
257 class RegExpCompiler; 257 class RegExpCompiler;
258 class RegExpVisitor; 258 class RegExpVisitor;
259 class Scope; 259 class Scope;
260 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; 260 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo;
261 class Script; 261 class Script;
262 class Slot; 262 class Slot;
263 class Smi; 263 class Smi;
264 template <typename Config, class Allocator = FreeStoreAllocationPolicy>
265 class SplayTree;
264 class Statement; 266 class Statement;
265 class String; 267 class String;
266 class Struct; 268 class Struct;
267 class SwitchStatement; 269 class SwitchStatement;
268 class AstVisitor; 270 class AstVisitor;
269 class Variable; 271 class Variable;
270 class VariableProxy; 272 class VariableProxy;
271 class RelocInfo; 273 class RelocInfo;
272 class Deserializer; 274 class Deserializer;
273 class MessageLocation; 275 class MessageLocation;
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 CMOV = 15, // x86 613 CMOV = 15, // x86
612 RDTSC = 4, // x86 614 RDTSC = 4, // x86
613 CPUID = 10, // x86 615 CPUID = 10, // x86
614 VFP3 = 1, // ARM 616 VFP3 = 1, // ARM
615 ARMv7 = 2, // ARM 617 ARMv7 = 2, // ARM
616 SAHF = 0}; // x86 618 SAHF = 0}; // x86
617 619
618 } } // namespace v8::internal 620 } } // namespace v8::internal
619 621
620 #endif // V8_GLOBALS_H_ 622 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698