dart-sdk/runtime/vm/constants_base.h
Ryan Macnak 6a1749edbc [vm, ffi] Misc fixes for RV32 FFI.
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>
2022-06-08 19:41:52 +00:00

35 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_