2011-06-29 01:14:12 +00:00
|
|
|
//===-- llvm/MC/SubtargetFeature.h - CPU characteristics --------*- C++ -*-===//
|
2005-09-01 21:36:18 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-09-01 21:36:18 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines and manages user or tool specified CPU characteristics.
|
|
|
|
// The intent is to be able to package specific features that should or should
|
|
|
|
// not be used on a specific target processor. A tool, such as llc, could, as
|
|
|
|
// as example, gather chip info from the command line, a long with features
|
|
|
|
// that should be used on that chip.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-06-29 01:14:12 +00:00
|
|
|
#ifndef LLVM_MC_SUBTARGETFEATURE_H
|
|
|
|
#define LLVM_MC_SUBTARGETFEATURE_H
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
#include <vector>
|
2009-11-18 20:20:05 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-23 21:41:43 +00:00
|
|
|
class raw_ostream;
|
2011-07-01 00:23:10 +00:00
|
|
|
class StringRef;
|
2009-08-23 21:41:43 +00:00
|
|
|
|
2005-09-01 21:36:18 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// SubtargetFeatureKV - Used to provide key value pairs for feature and
|
|
|
|
/// CPU bit flags.
|
|
|
|
//
|
|
|
|
struct SubtargetFeatureKV {
|
|
|
|
const char *Key; // K-V key string
|
2005-09-02 19:27:43 +00:00
|
|
|
const char *Desc; // Help descriptor
|
2011-04-15 19:35:46 +00:00
|
|
|
uint64_t Value; // K-V integer value
|
|
|
|
uint64_t Implies; // K-V bit mask
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
// Compare routine for std binary search
|
2006-01-26 20:41:32 +00:00
|
|
|
bool operator<(const SubtargetFeatureKV &S) const {
|
|
|
|
return strcmp(Key, S.Key) < 0;
|
2005-09-01 21:36:18 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-10-25 15:15:28 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
|
|
|
|
/// pointers.
|
|
|
|
//
|
|
|
|
struct SubtargetInfoKV {
|
|
|
|
const char *Key; // K-V key string
|
|
|
|
void *Value; // K-V pointer value
|
|
|
|
|
|
|
|
// Compare routine for std binary search
|
2006-01-26 20:41:32 +00:00
|
|
|
bool operator<(const SubtargetInfoKV &S) const {
|
|
|
|
return strcmp(Key, S.Key) < 0;
|
2005-10-25 15:15:28 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-09-01 21:36:18 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// SubtargetFeatures - Manages the enabling and disabling of subtarget
|
|
|
|
/// specific features. Features are encoded as a string of the form
|
|
|
|
/// "cpu,+attr1,+attr2,-attr3,...,+attrN"
|
|
|
|
/// A comma separates each feature from the next (all lowercase.)
|
|
|
|
/// The first feature is always the CPU subtype (eg. pentiumm). If the CPU
|
|
|
|
/// value is "generic" then the CPU subtype should be generic for the target.
|
|
|
|
/// Each of the remaining features is prefixed with + or - indicating whether
|
|
|
|
/// that feature should be enabled or disabled contrary to the cpu
|
|
|
|
/// specification.
|
|
|
|
///
|
|
|
|
|
|
|
|
class SubtargetFeatures {
|
|
|
|
std::vector<std::string> Features; // Subtarget features as a vector
|
|
|
|
public:
|
2011-07-01 00:23:10 +00:00
|
|
|
explicit SubtargetFeatures(const StringRef Initial = "");
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
/// Features string accessors.
|
2011-07-01 04:40:50 +00:00
|
|
|
std::string getString() const;
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
/// Adding Features.
|
2011-07-01 00:23:10 +00:00
|
|
|
void AddFeature(const StringRef String, bool IsEnabled = true);
|
2005-10-23 05:25:19 +00:00
|
|
|
|
2011-07-09 05:47:46 +00:00
|
|
|
/// ToggleFeature - Toggle a feature and returns the newly updated feature
|
|
|
|
/// bits.
|
|
|
|
uint64_t ToggleFeature(uint64_t Bits, const StringRef String,
|
|
|
|
const SubtargetFeatureKV *FeatureTable,
|
|
|
|
size_t FeatureTableSize);
|
|
|
|
|
2011-06-30 01:53:36 +00:00
|
|
|
/// Get feature bits of a CPU.
|
2011-07-01 00:23:10 +00:00
|
|
|
uint64_t getFeatureBits(const StringRef CPU,
|
2011-06-30 01:53:36 +00:00
|
|
|
const SubtargetFeatureKV *CPUTable,
|
|
|
|
size_t CPUTableSize,
|
|
|
|
const SubtargetFeatureKV *FeatureTable,
|
|
|
|
size_t FeatureTableSize);
|
2005-10-25 15:15:28 +00:00
|
|
|
|
2011-06-30 01:53:36 +00:00
|
|
|
/// Get scheduling itinerary of a CPU.
|
2011-07-01 00:23:10 +00:00
|
|
|
void *getItinerary(const StringRef CPU,
|
2011-06-30 01:53:36 +00:00
|
|
|
const SubtargetInfoKV *Table, size_t TableSize);
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
/// Print feature string.
|
2009-08-23 21:41:43 +00:00
|
|
|
void print(raw_ostream &OS) const;
|
2005-09-01 21:36:18 +00:00
|
|
|
|
|
|
|
// Dump feature info.
|
|
|
|
void dump() const;
|
2009-11-18 20:20:05 +00:00
|
|
|
|
2010-05-11 00:30:02 +00:00
|
|
|
/// Retrieve a formatted string of the default features for the specified
|
|
|
|
/// target triple.
|
2011-06-30 01:53:36 +00:00
|
|
|
void getDefaultSubtargetFeatures(const Triple& Triple);
|
2005-09-01 21:36:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace llvm
|
|
|
|
|
|
|
|
#endif
|