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

Side by Side Diff: src/v8globals.h

Issue 10878047: Revert to code state of 3.13.1 plus r12350 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 3 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/v8.cc ('k') | src/version.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const uint64_t kFreeListZapValue = 0xfeed1eaffeed1eaf; 87 const uint64_t kFreeListZapValue = 0xfeed1eaffeed1eaf;
88 #else 88 #else
89 const Address kZapValue = reinterpret_cast<Address>(0xdeadbeef); 89 const Address kZapValue = reinterpret_cast<Address>(0xdeadbeef);
90 const Address kHandleZapValue = reinterpret_cast<Address>(0xbaddeaf); 90 const Address kHandleZapValue = reinterpret_cast<Address>(0xbaddeaf);
91 const Address kFromSpaceZapValue = reinterpret_cast<Address>(0xbeefdaf); 91 const Address kFromSpaceZapValue = reinterpret_cast<Address>(0xbeefdaf);
92 const uint32_t kSlotsZapValue = 0xbeefdeef; 92 const uint32_t kSlotsZapValue = 0xbeefdeef;
93 const uint32_t kDebugZapValue = 0xbadbaddb; 93 const uint32_t kDebugZapValue = 0xbadbaddb;
94 const uint32_t kFreeListZapValue = 0xfeed1eaf; 94 const uint32_t kFreeListZapValue = 0xfeed1eaf;
95 #endif 95 #endif
96 96
97 const int kCodeZapValue = 0xbadc0de;
98 97
99 // Number of bits to represent the page size for paged spaces. The value of 20 98 // Number of bits to represent the page size for paged spaces. The value of 20
100 // gives 1Mb bytes per page. 99 // gives 1Mb bytes per page.
101 const int kPageSizeBits = 20; 100 const int kPageSizeBits = 20;
102 101
103 // On Intel architecture, cache line size is 64 bytes. 102 // On Intel architecture, cache line size is 64 bytes.
104 // On ARM it may be less (32 bytes), but as far this constant is 103 // On ARM it may be less (32 bytes), but as far this constant is
105 // used for aligning data, it doesn't hurt to align on a greater value. 104 // used for aligning data, it doesn't hurt to align on a greater value.
106 const int kProcessorCacheLineSize = 64; 105 const int kProcessorCacheLineSize = 64;
107 106
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 548
550 enum ClearExceptionFlag { 549 enum ClearExceptionFlag {
551 KEEP_EXCEPTION, 550 KEEP_EXCEPTION,
552 CLEAR_EXCEPTION 551 CLEAR_EXCEPTION
553 }; 552 };
554 553
555 554
556 } } // namespace v8::internal 555 } } // namespace v8::internal
557 556
558 #endif // V8_V8GLOBALS_H_ 557 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698