diff options
Diffstat (limited to 'runtime/instruction_set.h')
| -rw-r--r-- | runtime/instruction_set.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/instruction_set.h b/runtime/instruction_set.h index a08becfb76..c746e06307 100644 --- a/runtime/instruction_set.h +++ b/runtime/instruction_set.h @@ -35,6 +35,10 @@ enum InstructionSet { }; std::ostream& operator<<(std::ostream& os, const InstructionSet& rhs); +size_t GetInstructionSetPointerSize(InstructionSet isa); +size_t GetInstructionSetAlignment(InstructionSet isa); +bool Is64BitInstructionSet(InstructionSet isa); + #if defined(__arm__) static constexpr InstructionSet kRuntimeISA = kArm; #elif defined(__aarch64__) |