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

Side by Side Diff: src/v8globals.h

Issue 6812046: X64: Convert HeapNumbers that contain valid smi values to smis in binop-stub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 8 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 | « no previous file | src/x64/code-stubs-x64.cc » ('j') | src/x64/code-stubs-x64.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 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
11 // with the distribution. 11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its 12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived 13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission. 14 // from this software without specific prior written permission.
15 // 15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #ifndef V8_V8GLOBALS_H_ 28 #ifndef V8_V8GLOBALS_H_
29 #define V8_V8GLOBALS_H_ 29 #define V8_V8GLOBALS_H_
30 30
31 #include <string.h>
31 #include "globals.h" 32 #include "globals.h"
32 33
33 namespace v8 { 34 namespace v8 {
34 namespace internal { 35 namespace internal {
35 36
36 // This file contains constants and global declarations related to the 37 // This file contains constants and global declarations related to the
37 // V8 system. 38 // V8 system.
38 39
39 // Mask for the sign bit in a smi. 40 // Mask for the sign bit in a smi.
40 const intptr_t kSmiSignMask = kIntptrSignBit; 41 const intptr_t kSmiSignMask = kIntptrSignBit;
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 339
339 // Whether to remove map transitions and constant transitions from a 340 // Whether to remove map transitions and constant transitions from a
340 // DescriptorArray. 341 // DescriptorArray.
341 enum TransitionFlag { 342 enum TransitionFlag {
342 REMOVE_TRANSITIONS, 343 REMOVE_TRANSITIONS,
343 KEEP_TRANSITIONS 344 KEEP_TRANSITIONS
344 }; 345 };
345 346
346 347
347 // Union used for fast testing of specific double values. 348 // Union used for fast testing of specific double values.
348 union DoubleRepresentation { 349 struct DoubleRepresentation {
349 double value; 350 explicit DoubleRepresentation(double x) { memcpy(&bits, &x, sizeof(bits)); }
William Hesse 2011/04/08 09:27:58 Leave as is, or use BitCast - we don't want yet a
Lasse Reichstein 2011/04/08 11:18:10 agree. Removed.
350 int64_t bits; 351 int64_t bits;
351 DoubleRepresentation(double x) { value = x; }
352 }; 352 };
353 353
354 354
355 // Union used for customized checking of the IEEE double types 355 // Union used for customized checking of the IEEE double types
356 // inlined within v8 runtime, rather than going to the underlying 356 // inlined within v8 runtime, rather than going to the underlying
357 // platform headers and libraries 357 // platform headers and libraries
358 union IeeeDoubleLittleEndianArchType { 358 union IeeeDoubleLittleEndianArchType {
359 double d; 359 double d;
360 struct { 360 struct {
361 unsigned int man_low :32; 361 unsigned int man_low :32;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 kStrictMode, 477 kStrictMode,
478 // This value is never used, but is needed to prevent GCC 4.5 from failing 478 // This value is never used, but is needed to prevent GCC 4.5 from failing
479 // to compile when we assert that a flag is either kNonStrictMode or 479 // to compile when we assert that a flag is either kNonStrictMode or
480 // kStrictMode. 480 // kStrictMode.
481 kInvalidStrictFlag 481 kInvalidStrictFlag
482 }; 482 };
483 483
484 } } // namespace v8::internal 484 } } // namespace v8::internal
485 485
486 #endif // V8_V8GLOBALS_H_ 486 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/code-stubs-x64.cc » ('j') | src/x64/code-stubs-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698