Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef PERF_UTIL_CLANG_H
 3#define PERF_UTIL_CLANG_H
 4
 5#include "llvm/ADT/StringRef.h"
 6#include "llvm/IR/LLVMContext.h"
 7#include "llvm/IR/Module.h"
 8#include "llvm/Option/Option.h"
 9#include <memory>
10
11namespace perf {
12
13using namespace llvm;
14
15std::unique_ptr<Module>
16getModuleFromSource(opt::ArgStringList CFlags,
17		    StringRef Name, StringRef Content);
18
19std::unique_ptr<Module>
20getModuleFromSource(opt::ArgStringList CFlags,
21		    StringRef Path);
22
23std::unique_ptr<llvm::SmallVectorImpl<char>>
24getBPFObjectFromModule(llvm::Module *Module);
25
26}
27#endif
v4.10.11
 
 1#ifndef PERF_UTIL_CLANG_H
 2#define PERF_UTIL_CLANG_H
 3
 4#include "llvm/ADT/StringRef.h"
 5#include "llvm/IR/LLVMContext.h"
 6#include "llvm/IR/Module.h"
 7#include "llvm/Option/Option.h"
 8#include <memory>
 9
10namespace perf {
11
12using namespace llvm;
13
14std::unique_ptr<Module>
15getModuleFromSource(opt::ArgStringList CFlags,
16		    StringRef Name, StringRef Content);
17
18std::unique_ptr<Module>
19getModuleFromSource(opt::ArgStringList CFlags,
20		    StringRef Path);
21
22std::unique_ptr<llvm::SmallVectorImpl<char>>
23getBPFObjectFromModule(llvm::Module *Module);
24
25}
26#endif