mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48982 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 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 <fstream>
 | 
						|
#include <cstring>
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
int LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
 | 
						|
                     char **OutMessages) {
 | 
						|
  std::string Messages;
 | 
						|
  
 | 
						|
  int Result = verifyModule(*unwrap(M),
 | 
						|
                            static_cast<VerifierFailureAction>(Action),
 | 
						|
                            OutMessages? &Messages : 0);
 | 
						|
  
 | 
						|
  if (OutMessages)
 | 
						|
    *OutMessages = strdup(Messages.c_str());
 | 
						|
  
 | 
						|
  return Result;
 | 
						|
}
 | 
						|
 | 
						|
int 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();
 | 
						|
}
 |