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

Side by Side Diff: src/globals.h

Issue 9638: More automaton translation (Closed)
Patch Set: Created 12 years, 1 month 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
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 class LookupResult; 175 class LookupResult;
176 class MacroAssembler; 176 class MacroAssembler;
177 class Map; 177 class Map;
178 class MapSpace; 178 class MapSpace;
179 class MarkCompactCollector; 179 class MarkCompactCollector;
180 class NewSpace; 180 class NewSpace;
181 class Object; 181 class Object;
182 class OldSpace; 182 class OldSpace;
183 class Property; 183 class Property;
184 class Proxy; 184 class Proxy;
185 class RegExpNode;
186 class RegExpParseResult;
185 class RegExpTree; 187 class RegExpTree;
188 class RegExpCompiler;
189 class RegExpVisitor;
186 class Scope; 190 class Scope;
187 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; 191 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo;
188 class Script; 192 class Script;
189 class Slot; 193 class Slot;
190 class Smi; 194 class Smi;
191 class Statement; 195 class Statement;
192 class String; 196 class String;
193 class Struct; 197 class Struct;
194 class SwitchStatement; 198 class SwitchStatement;
195 class Visitor; 199 class Visitor;
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 502
499 Dest dest; 503 Dest dest;
500 memcpy(&dest, &source, sizeof(dest)); 504 memcpy(&dest, &source, sizeof(dest));
501 return dest; 505 return dest;
502 } 506 }
503 507
504 508
505 } } // namespace v8::internal 509 } } // namespace v8::internal
506 510
507 #endif // V8_GLOBALS_H_ 511 #endif // V8_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698