Home | History | Annotate | Download | only in runtime

Lines Matching defs:InstructionSet

29 enum InstructionSet {
39 std::ostream& operator<<(std::ostream& os, const InstructionSet& rhs);
42 static constexpr InstructionSet kRuntimeISA = kArm;
44 static constexpr InstructionSet kRuntimeISA = kArm64;
46 static constexpr InstructionSet kRuntimeISA = kMips;
48 static constexpr InstructionSet kRuntimeISA = kX86;
50 static constexpr InstructionSet kRuntimeISA = kX86_64;
52 static constexpr InstructionSet kRuntimeISA = kNone;
77 const char* GetInstructionSetString(InstructionSet isa);
80 InstructionSet GetInstructionSetFromString(const char* instruction_set);
82 static inline size_t GetInstructionSetPointerSize(InstructionSet isa) {
105 size_t GetInstructionSetAlignment(InstructionSet isa);
107 static inline bool Is64BitInstructionSet(InstructionSet isa) {
128 static inline size_t GetBytesPerGprSpillLocation(InstructionSet isa) {
151 static inline size_t GetBytesPerFprSpillLocation(InstructionSet isa) {
174 size_t GetStackOverflowReservedBytes(InstructionSet isa);