mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
953394de82
Patch by James Y Knight! llvm-svn: 93079
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
//===-- Analysis.cpp ------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm-c/Analysis.h"
|
|
#include "llvm/Analysis/Verifier.h"
|
|
#include <cstring>
|
|
|
|
using namespace llvm;
|
|
|
|
LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
|
|
char **OutMessages) {
|
|
std::string Messages;
|
|
|
|
LLVMBool Result = verifyModule(*unwrap(M),
|
|
static_cast<VerifierFailureAction>(Action),
|
|
OutMessages? &Messages : 0);
|
|
|
|
if (OutMessages)
|
|
*OutMessages = strdup(Messages.c_str());
|
|
|
|
return Result;
|
|
}
|
|
|
|
LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) {
|
|
return verifyFunction(*unwrap<Function>(Fn),
|
|
static_cast<VerifierFailureAction>(Action));
|
|
}
|
|
|
|
void LLVMViewFunctionCFG(LLVMValueRef Fn) {
|
|
Function *F = unwrap<Function>(Fn);
|
|
F->viewCFG();
|
|
}
|
|
|
|
void LLVMViewFunctionCFGOnly(LLVMValueRef Fn) {
|
|
Function *F = unwrap<Function>(Fn);
|
|
F->viewCFGOnly();
|
|
}
|