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

Side by Side Diff: src/globals.h

Issue 2918001: Move serialized scope info from Code object to SharedFunctionInfo. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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/frames.cc ('k') | 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 class AstVisitor; 338 class AstVisitor;
339 class Variable; 339 class Variable;
340 class VariableProxy; 340 class VariableProxy;
341 class RelocInfo; 341 class RelocInfo;
342 class Deserializer; 342 class Deserializer;
343 class MessageLocation; 343 class MessageLocation;
344 class ObjectGroup; 344 class ObjectGroup;
345 class TickSample; 345 class TickSample;
346 class VirtualMemory; 346 class VirtualMemory;
347 class Mutex; 347 class Mutex;
348 class ZoneScopeInfo;
349 348
350 typedef bool (*WeakSlotCallback)(Object** pointer); 349 typedef bool (*WeakSlotCallback)(Object** pointer);
351 350
352 // ----------------------------------------------------------------------------- 351 // -----------------------------------------------------------------------------
353 // Miscellaneous 352 // Miscellaneous
354 353
355 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being 354 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being
356 // consecutive. 355 // consecutive.
357 enum AllocationSpace { 356 enum AllocationSpace {
358 NEW_SPACE, // Semispaces collected with copying collector. 357 NEW_SPACE, // Semispaces collected with copying collector.
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 CMOV = 15, // x86 659 CMOV = 15, // x86
661 RDTSC = 4, // x86 660 RDTSC = 4, // x86
662 CPUID = 10, // x86 661 CPUID = 10, // x86
663 VFP3 = 1, // ARM 662 VFP3 = 1, // ARM
664 ARMv7 = 2, // ARM 663 ARMv7 = 2, // ARM
665 SAHF = 0}; // x86 664 SAHF = 0}; // x86
666 665
667 } } // namespace v8::internal 666 } } // namespace v8::internal
668 667
669 #endif // V8_GLOBALS_H_ 668 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698