2007-02-27 23:05:51 +01:00
|
|
|
//===- CallingConvEmitter.h - Generate calling conventions ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:37:13 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-02-27 23:05:51 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend is responsible for emitting descriptions of the calling
|
|
|
|
// conventions supported by this target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CALLINGCONV_EMITTER_H
|
|
|
|
#define CALLINGCONV_EMITTER_H
|
|
|
|
|
|
|
|
#include "TableGenBackend.h"
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class CallingConvEmitter : public TableGenBackend {
|
|
|
|
RecordKeeper &Records;
|
|
|
|
public:
|
2007-07-30 16:51:59 +02:00
|
|
|
explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
|
2007-02-27 23:05:51 +01:00
|
|
|
|
|
|
|
// run - Output the asmwriter, returning true on failure.
|
2009-07-03 02:10:29 +02:00
|
|
|
void run(raw_ostream &o);
|
2007-02-27 23:05:51 +01:00
|
|
|
|
|
|
|
private:
|
2009-07-03 02:10:29 +02:00
|
|
|
void EmitCallingConv(Record *CC, raw_ostream &O);
|
|
|
|
void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
|
2007-02-27 23:05:51 +01:00
|
|
|
unsigned Counter;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|