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

Side by Side Diff: src/globals.h

Issue 394007: * Remove old snapshot implementation (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 | Annotate | Revision Log
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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 class Smi; 245 class Smi;
246 class Statement; 246 class Statement;
247 class String; 247 class String;
248 class Struct; 248 class Struct;
249 class SwitchStatement; 249 class SwitchStatement;
250 class AstVisitor; 250 class AstVisitor;
251 class Variable; 251 class Variable;
252 class VariableProxy; 252 class VariableProxy;
253 class RelocInfo; 253 class RelocInfo;
254 class Deserializer; 254 class Deserializer;
255 class GenericDeserializer; // TODO(erikcorry): Get rid of this.
256 class MessageLocation; 255 class MessageLocation;
257 class ObjectGroup; 256 class ObjectGroup;
258 class TickSample; 257 class TickSample;
259 class VirtualMemory; 258 class VirtualMemory;
260 class Mutex; 259 class Mutex;
261 class ZoneScopeInfo; 260 class ZoneScopeInfo;
262 261
263 typedef bool (*WeakSlotCallback)(Object** pointer); 262 typedef bool (*WeakSlotCallback)(Object** pointer);
264 263
265 // ----------------------------------------------------------------------------- 264 // -----------------------------------------------------------------------------
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 SSE2 = 26, // x86 582 SSE2 = 26, // x86
584 CMOV = 15, // x86 583 CMOV = 15, // x86
585 RDTSC = 4, // x86 584 RDTSC = 4, // x86
586 CPUID = 10, // x86 585 CPUID = 10, // x86
587 VFP3 = 1, // ARM 586 VFP3 = 1, // ARM
588 SAHF = 0}; // x86 587 SAHF = 0}; // x86
589 588
590 } } // namespace v8::internal 589 } } // namespace v8::internal
591 590
592 #endif // V8_GLOBALS_H_ 591 #endif // V8_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698