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

Side by Side Diff: src/globals.h

Issue 1150593003: Clean up aligned allocation code in preparation for SIMD alignments. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Handle filler after object. Created 5 years, 7 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
« no previous file with comments | « no previous file | src/heap/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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_GLOBALS_H_ 5 #ifndef V8_GLOBALS_H_
6 #define V8_GLOBALS_H_ 6 #define V8_GLOBALS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 LO_SPACE, // Promoted large objects. 431 LO_SPACE, // Promoted large objects.
432 432
433 FIRST_SPACE = NEW_SPACE, 433 FIRST_SPACE = NEW_SPACE,
434 LAST_SPACE = LO_SPACE, 434 LAST_SPACE = LO_SPACE,
435 FIRST_PAGED_SPACE = OLD_SPACE, 435 FIRST_PAGED_SPACE = OLD_SPACE,
436 LAST_PAGED_SPACE = MAP_SPACE 436 LAST_PAGED_SPACE = MAP_SPACE
437 }; 437 };
438 const int kSpaceTagSize = 3; 438 const int kSpaceTagSize = 3;
439 const int kSpaceTagMask = (1 << kSpaceTagSize) - 1; 439 const int kSpaceTagMask = (1 << kSpaceTagSize) - 1;
440 440
441 enum AllocationAlignment { kWordAligned, kDoubleAligned, kDoubleUnaligned }; 441 enum AllocationAlignment { kWordAligned, kDoubleAligned, kDoubleValueAligned };
Hannes Payer (out of office) 2015/05/22 10:56:15 I called it kDoubleUnaligned because it is general
442 442
443 // A flag that indicates whether objects should be pretenured when 443 // A flag that indicates whether objects should be pretenured when
444 // allocated (allocated directly into the old generation) or not 444 // allocated (allocated directly into the old generation) or not
445 // (allocated in the young generation if the object size and type 445 // (allocated in the young generation if the object size and type
446 // allows). 446 // allows).
447 enum PretenureFlag { NOT_TENURED, TENURED }; 447 enum PretenureFlag { NOT_TENURED, TENURED };
448 448
449 enum MinimumCapacity { 449 enum MinimumCapacity {
450 USE_DEFAULT_MINIMUM_CAPACITY, 450 USE_DEFAULT_MINIMUM_CAPACITY,
451 USE_CUSTOM_MINIMUM_CAPACITY 451 USE_CUSTOM_MINIMUM_CAPACITY
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { 928 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) {
929 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); 929 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral);
930 DCHECK(IsValidFunctionKind(kind)); 930 DCHECK(IsValidFunctionKind(kind));
931 return kind; 931 return kind;
932 } 932 }
933 } } // namespace v8::internal 933 } } // namespace v8::internal
934 934
935 namespace i = v8::internal; 935 namespace i = v8::internal;
936 936
937 #endif // V8_GLOBALS_H_ 937 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698