freebsd-dev/contrib/llvm/lib/Support/Disassembler.cpp
Dimitry Andric f785676f2a Upgrade our copy of llvm/clang to 3.4 release. This version supports
all of the features in the current working draft of the upcoming C++
standard, provisionally named C++1y.

The code generator's performance is greatly increased, and the loop
auto-vectorizer is now enabled at -Os and -O2 in addition to -O3.  The
PowerPC backend has made several major improvements to code generation
quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ
backends have all seen major feature work.

Release notes for llvm and clang can be found here:
<http://llvm.org/releases/3.4/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html>

MFC after:	1 month
2014-02-16 19:44:07 +00:00

75 lines
1.7 KiB
C++

//===- lib/Support/Disassembler.cpp -----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the necessary glue to call external disassembler
// libraries.
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/Disassembler.h"
#include "llvm/Config/config.h"
#include <cassert>
#include <iomanip>
#include <sstream>
#include <string>
#if USE_UDIS86
#include <udis86.h>
#endif
using namespace llvm;
bool llvm::sys::hasDisassembler()
{
#if defined (__i386__) || defined (__amd64__) || defined (__x86_64__)
// We have option to enable udis86 library.
# if USE_UDIS86
return true;
#else
return false;
#endif
#else
return false;
#endif
}
std::string llvm::sys::disassembleBuffer(uint8_t* start, size_t length,
uint64_t pc) {
#if (defined (__i386__) || defined (__amd64__) || defined (__x86_64__)) \
&& USE_UDIS86
std::stringstream res;
unsigned bits;
# if defined(__i386__)
bits = 32;
# else
bits = 64;
# endif
ud_t ud_obj;
ud_init(&ud_obj);
ud_set_input_buffer(&ud_obj, start, length);
ud_set_mode(&ud_obj, bits);
ud_set_pc(&ud_obj, pc);
ud_set_syntax(&ud_obj, UD_SYN_ATT);
res << std::setbase(16)
<< std::setw(bits/4);
while (ud_disassemble(&ud_obj)) {
res << ud_insn_off(&ud_obj) << ":\t" << ud_insn_asm(&ud_obj) << "\n";
}
return res.str();
#else
return "No disassembler available. See configure help for options.\n";
#endif
}