mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
Move example plugins to the example/ directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65939 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
//===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Test plugin for LLVMC. Shows how to write plugins without using TableGen.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||
#include "llvm/CompilerDriver/Plugin.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
namespace {
|
||||
struct MyPlugin : public llvmc::BasePlugin {
|
||||
void PopulateLanguageMap(llvmc::LanguageMap&) const
|
||||
{ std::cout << "Hello!\n"; }
|
||||
|
||||
void PopulateCompilationGraph(llvmc::CompilationGraph&) const
|
||||
{}
|
||||
};
|
||||
|
||||
static llvmc::RegisterPlugin<MyPlugin> RP("Hello", "Hello World plugin");
|
||||
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
##===- tools/llvmc/plugins/Hello/Makefile ------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file is distributed under the University of Illinois Open Source
|
||||
# License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../../../..
|
||||
|
||||
LLVMC_PLUGIN = Hello
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
@@ -1,15 +0,0 @@
|
||||
##===- tools/llvmc/plugins/Simple/Makefile -----------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file is distributed under the University of Illinois Open Source
|
||||
# License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../../../..
|
||||
|
||||
LLVMC_PLUGIN = Simple
|
||||
BUILT_SOURCES = AutoGenerated.inc
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
@@ -1 +0,0 @@
|
||||
#include "AutoGenerated.inc"
|
@@ -1,30 +0,0 @@
|
||||
// A simple wrapper for gcc.
|
||||
// To compile, use this command:
|
||||
//
|
||||
// $ cd $LLVMC2_DIR
|
||||
// $ make DRIVER_NAME=mygcc BUILTIN_PLUGINS=Simple
|
||||
//
|
||||
// To build this plugin as a dynamic library:
|
||||
//
|
||||
// $ cd $LLVMC2_DIR
|
||||
// $ make BUILTIN_PLUGINS=""
|
||||
// $ cd plugins/Simple
|
||||
// $ make
|
||||
//
|
||||
// Run as:
|
||||
//
|
||||
// $ llvmc2 -load $LLVM_DIR/Release/lib/LLVMCSimple.so
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
||||
def gcc : Tool<
|
||||
[(in_language "c"),
|
||||
(out_language "executable"),
|
||||
(output_suffix "out"),
|
||||
(cmd_line "gcc $INFILE -o $OUTFILE"),
|
||||
(sink)
|
||||
]>;
|
||||
|
||||
def LanguageMap : LanguageMap<[LangToSuffixes<"c", ["c"]>]>;
|
||||
|
||||
def CompilationGraph : CompilationGraph<[Edge<"root", "gcc">]>;
|
Reference in New Issue
Block a user