Path: blob/main/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86InstComments.h
35294 views
//=- X86InstComments.h - Generate verbose-asm comments for instrs -*- C++ -*-=//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This defines functionality used to emit comments about X86 instructions to9// an output stream for -fverbose-asm.10//11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_X86_MCTARGETDESC_X86INSTCOMMENTS_H14#define LLVM_LIB_TARGET_X86_MCTARGETDESC_X86INSTCOMMENTS_H1516namespace llvm {1718class MCInst;19class MCInstrInfo;20class raw_ostream;21bool EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS,22const MCInstrInfo &MCII);23}2425#endif262728