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

Side by Side Diff: src/v8globals.h

Issue 9190001: Backport @10366 to 3.6 Base URL: http://v8.googlecode.com/svn/branches/3.6/
Patch Set: '' Created 8 years, 11 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
« src/objects.h ('K') | « src/utils.h ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 class Debugger; 124 class Debugger;
125 class DebugInfo; 125 class DebugInfo;
126 class Descriptor; 126 class Descriptor;
127 class DescriptorArray; 127 class DescriptorArray;
128 class Expression; 128 class Expression;
129 class ExternalReference; 129 class ExternalReference;
130 class FixedArray; 130 class FixedArray;
131 class FunctionEntry; 131 class FunctionEntry;
132 class FunctionLiteral; 132 class FunctionLiteral;
133 class FunctionTemplateInfo; 133 class FunctionTemplateInfo;
134 class NumberDictionary; 134 class SeededNumberDictionary;
135 class UnseededNumberDictionary;
135 class StringDictionary; 136 class StringDictionary;
136 template <typename T> class Handle; 137 template <typename T> class Handle;
137 class Heap; 138 class Heap;
138 class HeapObject; 139 class HeapObject;
139 class IC; 140 class IC;
140 class InterceptorInfo; 141 class InterceptorInfo;
141 class IterationStatement; 142 class IterationStatement;
142 class JSArray; 143 class JSArray;
143 class JSFunction; 144 class JSFunction;
144 class JSObject; 145 class JSObject;
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000; 507 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000;
507 508
508 const uint64_t kHoleNanInt64 = 509 const uint64_t kHoleNanInt64 =
509 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32; 510 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32;
510 const uint64_t kLastNonNaNInt64 = 511 const uint64_t kLastNonNaNInt64 =
511 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32); 512 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32);
512 513
513 } } // namespace v8::internal 514 } } // namespace v8::internal
514 515
515 #endif // V8_V8GLOBALS_H_ 516 #endif // V8_V8GLOBALS_H_
OLDNEW
« src/objects.h ('K') | « src/utils.h ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698