2005-10-21 19:00:04 +00:00
|
|
|
//===- SubtargetEmitter.h - Generate subtarget enumerations -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by James M. Laskey and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend emits subtarget enumerations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SUBTARGET_EMITTER_H
|
|
|
|
#define SUBTARGET_EMITTER_H
|
|
|
|
|
|
|
|
#include "TableGenBackend.h"
|
2005-10-27 19:47:21 +00:00
|
|
|
#include "llvm/Target/TargetInstrItineraries.h"
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
2005-10-21 19:00:04 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class SubtargetEmitter : public TableGenBackend {
|
2005-10-27 19:47:21 +00:00
|
|
|
|
2005-10-21 19:00:04 +00:00
|
|
|
RecordKeeper &Records;
|
2005-10-26 17:30:34 +00:00
|
|
|
std::string Target;
|
2005-11-01 20:06:59 +00:00
|
|
|
bool HasItineraries;
|
2005-10-25 15:16:36 +00:00
|
|
|
|
2005-10-26 17:30:34 +00:00
|
|
|
void Enumeration(std::ostream &OS, const char *ClassName, bool isBits);
|
2005-10-25 15:16:36 +00:00
|
|
|
void FeatureKeyValues(std::ostream &OS);
|
|
|
|
void CPUKeyValues(std::ostream &OS);
|
2005-11-01 20:06:59 +00:00
|
|
|
unsigned CollectAllItinClasses(std::ostream &OS,
|
|
|
|
std::map<std::string, unsigned> &ItinClassesMap);
|
2005-10-27 19:47:21 +00:00
|
|
|
void FormItineraryString(Record *ItinData, std::string &ItinString,
|
2005-10-28 21:47:29 +00:00
|
|
|
unsigned &NStages);
|
|
|
|
void EmitStageData(std::ostream &OS, unsigned NItinClasses,
|
|
|
|
std::map<std::string, unsigned> &ItinClassesMap,
|
|
|
|
std::vector<std::vector<InstrItinerary> > &ProcList);
|
2005-10-31 17:16:01 +00:00
|
|
|
void EmitProcessorData(std::ostream &OS,
|
2005-10-28 21:47:29 +00:00
|
|
|
std::vector<std::vector<InstrItinerary> > &ProcList);
|
2005-10-31 17:16:01 +00:00
|
|
|
void EmitProcessorLookup(std::ostream &OS);
|
2005-10-27 19:47:21 +00:00
|
|
|
void EmitData(std::ostream &OS);
|
|
|
|
void ParseFeaturesFunction(std::ostream &OS);
|
2005-10-25 15:16:36 +00:00
|
|
|
|
2005-10-21 19:00:04 +00:00
|
|
|
public:
|
2005-11-01 20:06:59 +00:00
|
|
|
SubtargetEmitter(RecordKeeper &R) : Records(R), HasItineraries(false) {}
|
2005-10-21 19:00:04 +00:00
|
|
|
|
|
|
|
// run - Output the subtarget enumerations, returning true on failure.
|
|
|
|
void run(std::ostream &o);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|