blob: e78b5cb300f7677e8eeb398da44a3556e04f195e [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
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"
17using namespace llvm;
18
19MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
Bruno Cardoso Lopes6d32ca02007-08-18 02:18:07 +000020 const std::string &FS) :
21 IsMipsIII(false)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000022{
Bruno Cardoso Lopes000604a2007-11-06 03:15:20 +000023 std::string CPU = "mips1";
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000024
25 // Parse features string.
26 ParseSubtargetFeatures(FS, CPU);
27}