Wang Nan | 00b8669 | 2016-11-26 07:03:34 +0000 | [diff] [blame^] | 1 | #include "clang.h" |
| 2 | #include "clang-c.h" |
| 3 | #include "llvm/IR/Function.h" |
| 4 | #include "llvm/IR/LLVMContext.h" |
| 5 | |
| 6 | class perf_clang_scope { |
| 7 | public: |
| 8 | explicit perf_clang_scope() {perf_clang__init();} |
| 9 | ~perf_clang_scope() {perf_clang__cleanup();} |
| 10 | }; |
| 11 | |
| 12 | extern "C" { |
| 13 | |
| 14 | int test__clang_to_IR(void) |
| 15 | { |
| 16 | perf_clang_scope _scope; |
| 17 | |
| 18 | std::unique_ptr<llvm::Module> M = |
| 19 | perf::getModuleFromSource("perf-test.c", |
| 20 | "int myfunc(void) {return 1;}"); |
| 21 | |
| 22 | if (!M) |
| 23 | return -1; |
| 24 | |
| 25 | for (llvm::Function& F : *M) |
| 26 | if (F.getName() == "myfunc") |
| 27 | return 0; |
| 28 | return -1; |
| 29 | } |
| 30 | |
| 31 | } |