mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 14:32:24 +00:00
6a1749edbc
TEST=local Change-Id: I50f0a848cfd973389a7e903aa89e650aa7420aaf Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/247503 Reviewed-by: Siva Annamalai <asiva@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com>
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_VM_CONSTANTS_BASE_H_
|
|
#define RUNTIME_VM_CONSTANTS_BASE_H_
|
|
|
|
namespace dart {
|
|
|
|
// Alignment strategies for how to align values.
|
|
enum AlignmentStrategy {
|
|
// Align to the size of the value.
|
|
kAlignedToValueSize,
|
|
// Align to the size of the value, but align 8 byte-sized values to 4 bytes.
|
|
// Both double and int64.
|
|
kAlignedToValueSizeBut8AlignedTo4,
|
|
// Align to the architecture size.
|
|
kAlignedToWordSize,
|
|
// Align to the greater of architecture size or value size.
|
|
kAlignedToWordSizeAndValueSize,
|
|
};
|
|
|
|
// Minimum size strategies for how to store values.
|
|
enum ExtensionStrategy {
|
|
// Values can have arbitrary small size with the upper bits undefined.
|
|
kNotExtended,
|
|
// Values smaller than 4 bytes are passed around zero- or signextended to
|
|
// 4 bytes.
|
|
kExtendedTo4,
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_CONSTANTS_BASE_H_
|