Current Path : /usr/src/contrib/llvm/include/llvm/MC/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/llvm/include/llvm/MC/EDInstInfo.h |
//===-- llvm/MC/EDInstInfo.h - EDis instruction info ------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef EDINSTINFO_H #define EDINSTINFO_H #include "llvm/Support/DataTypes.h" namespace llvm { #define EDIS_MAX_OPERANDS 13 #define EDIS_MAX_SYNTAXES 2 struct EDInstInfo { uint8_t instructionType; uint8_t numOperands; uint8_t operandTypes[EDIS_MAX_OPERANDS]; uint8_t operandFlags[EDIS_MAX_OPERANDS]; const signed char operandOrders[EDIS_MAX_SYNTAXES][EDIS_MAX_OPERANDS]; }; } // namespace llvm #endif