//===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// It contains the tablegen backend that emits the decoder functions for// targets with fixed length instruction set.////===----------------------------------------------------------------------===//#define DEBUG_TYPE "decoder-emitter"#include"FixedLenDecoderEmitter.h"#include"CodeGenTarget.h"#include"llvm/TableGen/Record.h"#include"llvm/ADT/APInt.h"#include"llvm/ADT/StringExtras.h"#include"llvm/Support/Debug.h"#include"llvm/Support/raw_ostream.h"#include