Diana Picus | 2227493 | 2016-11-11 08:27:37 +0000 | [diff] [blame] | 1 | //===- ARMLegalizerInfo.cpp --------------------------------------*- C++ -*-==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// \file |
| 10 | /// This file implements the targeting of the Machinelegalizer class for ARM. |
| 11 | /// \todo This should be generated by TableGen. |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ARMLegalizerInfo.h" |
| 15 | #include "llvm/CodeGen/ValueTypes.h" |
| 16 | #include "llvm/IR/DerivedTypes.h" |
| 17 | #include "llvm/IR/Type.h" |
| 18 | #include "llvm/Target/TargetOpcodes.h" |
| 19 | |
| 20 | using namespace llvm; |
| 21 | |
| 22 | #ifndef LLVM_BUILD_GLOBAL_ISEL |
| 23 | #error "You shouldn't build this" |
| 24 | #endif |
| 25 | |
| 26 | ARMLegalizerInfo::ARMLegalizerInfo() { |
Diana Picus | 812caee | 2016-12-16 12:54:46 +0000 | [diff] [blame] | 27 | using namespace TargetOpcode; |
Diana Picus | 5a72445 | 2016-12-19 14:07:56 +0000 | [diff] [blame] | 28 | |
Diana Picus | 519807f | 2016-12-19 11:26:31 +0000 | [diff] [blame] | 29 | const LLT p0 = LLT::pointer(0, 32); |
Diana Picus | 5a72445 | 2016-12-19 14:07:56 +0000 | [diff] [blame] | 30 | |
| 31 | const LLT s8 = LLT::scalar(8); |
| 32 | const LLT s16 = LLT::scalar(16); |
Diana Picus | 812caee | 2016-12-16 12:54:46 +0000 | [diff] [blame] | 33 | const LLT s32 = LLT::scalar(32); |
| 34 | |
Diana Picus | 519807f | 2016-12-19 11:26:31 +0000 | [diff] [blame] | 35 | setAction({G_FRAME_INDEX, p0}, Legal); |
| 36 | |
| 37 | setAction({G_LOAD, s32}, Legal); |
| 38 | setAction({G_LOAD, 1, p0}, Legal); |
| 39 | |
Diana Picus | 5a72445 | 2016-12-19 14:07:56 +0000 | [diff] [blame] | 40 | for (auto Ty : {s8, s16, s32}) |
| 41 | setAction({G_ADD, Ty}, Legal); |
Diana Picus | 812caee | 2016-12-16 12:54:46 +0000 | [diff] [blame] | 42 | |
Diana Picus | 2227493 | 2016-11-11 08:27:37 +0000 | [diff] [blame] | 43 | computeTables(); |
| 44 | } |