summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/llvm-c-test/module.c
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
commitb64793999546ed8adebaeebd9d8345d18db8927d (patch)
tree4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/tools/llvm-c-test/module.c
parentAdd support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff)
downloadwireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz
wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/tools/llvm-c-test/module.c')
-rw-r--r--gnu/llvm/tools/llvm-c-test/module.c138
1 files changed, 0 insertions, 138 deletions
diff --git a/gnu/llvm/tools/llvm-c-test/module.c b/gnu/llvm/tools/llvm-c-test/module.c
deleted file mode 100644
index cbb44d0bd15..00000000000
--- a/gnu/llvm/tools/llvm-c-test/module.c
+++ /dev/null
@@ -1,138 +0,0 @@
-/*===-- module.c - tool for testing libLLVM and llvm-c API ----------------===*\
-|* *|
-|* 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 --module-dump, --module-list-functions and *|
-|* --module-list-globals commands in llvm-c-test. *|
-|* *|
-\*===----------------------------------------------------------------------===*/
-
-#include "llvm-c-test.h"
-#include "llvm-c/BitReader.h"
-#include <stdio.h>
-#include <stdlib.h>
-
-static void diagnosticHandler(LLVMDiagnosticInfoRef DI, void *C) {
- char *CErr = LLVMGetDiagInfoDescription(DI);
- fprintf(stderr, "Error with new bitcode parser: %s\n", CErr);
- LLVMDisposeMessage(CErr);
- exit(1);
-}
-
-LLVMModuleRef llvm_load_module(bool Lazy, bool New) {
- LLVMMemoryBufferRef MB;
- LLVMModuleRef M;
- char *msg = NULL;
-
- if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
- fprintf(stderr, "Error reading file: %s\n", msg);
- exit(1);
- }
-
- LLVMBool Ret;
- if (New) {
- LLVMContextRef C = LLVMGetGlobalContext();
- LLVMContextSetDiagnosticHandler(C, diagnosticHandler, NULL);
- if (Lazy)
- Ret = LLVMGetBitcodeModule2(MB, &M);
- else
- Ret = LLVMParseBitcode2(MB, &M);
- } else {
- if (Lazy)
- Ret = LLVMGetBitcodeModule(MB, &M, &msg);
- else
- Ret = LLVMParseBitcode(MB, &M, &msg);
- }
-
- if (Ret) {
- fprintf(stderr, "Error parsing bitcode: %s\n", msg);
- LLVMDisposeMemoryBuffer(MB);
- exit(1);
- }
-
- if (!Lazy)
- LLVMDisposeMemoryBuffer(MB);
-
- return M;
-}
-
-int llvm_module_dump(bool Lazy, bool New) {
- LLVMModuleRef M = llvm_load_module(Lazy, New);
-
- char *irstr = LLVMPrintModuleToString(M);
- puts(irstr);
- LLVMDisposeMessage(irstr);
-
- LLVMDisposeModule(M);
-
- return 0;
-}
-
-int llvm_module_list_functions(void) {
- LLVMModuleRef M = llvm_load_module(false, false);
- LLVMValueRef f;
-
- f = LLVMGetFirstFunction(M);
- while (f) {
- if (LLVMIsDeclaration(f)) {
- printf("FunctionDeclaration: %s\n", LLVMGetValueName(f));
- } else {
- LLVMBasicBlockRef bb;
- LLVMValueRef isn;
- unsigned nisn = 0;
- unsigned nbb = 0;
-
- printf("FunctionDefinition: %s [#bb=%u]\n", LLVMGetValueName(f),
- LLVMCountBasicBlocks(f));
-
- for (bb = LLVMGetFirstBasicBlock(f); bb;
- bb = LLVMGetNextBasicBlock(bb)) {
- nbb++;
- for (isn = LLVMGetFirstInstruction(bb); isn;
- isn = LLVMGetNextInstruction(isn)) {
- nisn++;
- if (LLVMIsACallInst(isn)) {
- LLVMValueRef callee =
- LLVMGetOperand(isn, LLVMGetNumOperands(isn) - 1);
- printf(" calls: %s\n", LLVMGetValueName(callee));
- }
- }
- }
- printf(" #isn: %u\n", nisn);
- printf(" #bb: %u\n\n", nbb);
- }
- f = LLVMGetNextFunction(f);
- }
-
- LLVMDisposeModule(M);
-
- return 0;
-}
-
-int llvm_module_list_globals(void) {
- LLVMModuleRef M = llvm_load_module(false, false);
- LLVMValueRef g;
-
- g = LLVMGetFirstGlobal(M);
- while (g) {
- LLVMTypeRef T = LLVMTypeOf(g);
- char *s = LLVMPrintTypeToString(T);
-
- printf("Global%s: %s %s\n",
- LLVMIsDeclaration(g) ? "Declaration" : "Definition",
- LLVMGetValueName(g), s);
-
- LLVMDisposeMessage(s);
-
- g = LLVMGetNextGlobal(g);
- }
-
- LLVMDisposeModule(M);
-
- return 0;
-}