Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1 | //===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Bruno Cardoso Lopes and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Mips specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "MipsSubtarget.h" |
| 15 | #include "Mips.h" |
| 16 | #include "MipsGenSubtarget.inc" |
| 17 | using namespace llvm; |
| 18 | |
| 19 | MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, |
Bruno Cardoso Lopes | 6d32ca0 | 2007-08-18 02:18:07 +0000 | [diff] [blame] | 20 | const std::string &FS) : |
| 21 | IsMipsIII(false) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 22 | { |
| 23 | std::string CPU = "generic"; |
| 24 | |
| 25 | // Parse features string. |
| 26 | ParseSubtargetFeatures(FS, CPU); |
| 27 | } |