Skip to content

Commit 0bf6394

Browse files
committed
Auto merge of #31669 - frewsxcv:llvm-function-pass-rmake-test, r=alexcrichton
Part of #31185. Similar to #31391.
2 parents 28bcafa + a60ec05 commit 0bf6394

File tree

6 files changed

+78
-17
lines changed

6 files changed

+78
-17
lines changed

src/test/run-make/llvm-module-pass/Makefile

-14
This file was deleted.

src/test/run-make/llvm-pass/Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
-include ../tools.mk
2+
3+
# Windows doesn't correctly handle include statements with escaping paths,
4+
# so this test will not get run on Windows.
5+
ifdef IS_WINDOWS
6+
all:
7+
else
8+
all: $(call NATIVE_STATICLIB,llvm-function-pass) $(call NATIVE_STATICLIB,llvm-module-pass)
9+
$(RUSTC) plugin.rs -C prefer-dynamic
10+
$(RUSTC) main.rs
11+
12+
$(TMPDIR)/libllvm-function-pass.o:
13+
$(CXX) $(CFLAGS) $(LLVM_CXXFLAGS) -c llvm-function-pass.so.cc -o $(TMPDIR)/libllvm-function-pass.o
14+
15+
$(TMPDIR)/libllvm-module-pass.o:
16+
$(CXX) $(CFLAGS) $(LLVM_CXXFLAGS) -c llvm-module-pass.so.cc -o $(TMPDIR)/libllvm-module-pass.o
17+
endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#include <stdio.h>
12+
#include <stdlib.h>
13+
#include <unistd.h>
14+
15+
#include "llvm/Pass.h"
16+
#include "llvm/IR/Function.h"
17+
18+
using namespace llvm;
19+
20+
namespace {
21+
22+
class TestLLVMPass : public FunctionPass {
23+
24+
public:
25+
26+
static char ID;
27+
TestLLVMPass() : FunctionPass(ID) { }
28+
29+
bool runOnFunction(Function &F) override;
30+
31+
const char *getPassName() const override {
32+
return "Some LLVM pass";
33+
}
34+
35+
};
36+
37+
}
38+
39+
bool TestLLVMPass::runOnFunction(Function &F) {
40+
// A couple examples of operations that previously caused segmentation faults
41+
// https://github.com/rust-lang/rust/issues/31067
42+
43+
for (auto N = F.begin(); N != F.end(); ++N) {
44+
/* code */
45+
}
46+
47+
LLVMContext &C = F.getContext();
48+
IntegerType *Int8Ty = IntegerType::getInt8Ty(C);
49+
PointerType::get(Int8Ty, 0);
50+
return true;
51+
}
52+
53+
char TestLLVMPass::ID = 0;
54+
55+
static RegisterPass<TestLLVMPass> RegisterAFLPass(
56+
"some-llvm-function-pass", "Some LLVM pass");

src/test/run-make/llvm-module-pass/llvm-pass.so.cc src/test/run-make/llvm-pass/llvm-module-pass.so.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ bool TestLLVMPass::runOnModule(Module &M) {
5252
char TestLLVMPass::ID = 0;
5353

5454
static RegisterPass<TestLLVMPass> RegisterAFLPass(
55-
"some-llvm-pass", "Some LLVM pass");
55+
"some-llvm-module-pass", "Some LLVM pass");
File renamed without changes.

src/test/run-make/llvm-module-pass/plugin.rs src/test/run-make/llvm-pass/plugin.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@
1515
extern crate rustc;
1616
extern crate rustc_plugin;
1717

18-
#[link(name = "llvm-pass", kind = "static")]
18+
#[link(name = "llvm-function-pass", kind = "static")]
19+
#[link(name = "llvm-module-pass", kind = "static")]
1920
extern {}
2021

2122
use rustc_plugin::registry::Registry;
2223

2324
#[plugin_registrar]
2425
pub fn plugin_registrar(reg: &mut Registry) {
25-
reg.register_llvm_pass("some-llvm-pass");
26+
reg.register_llvm_pass("some-llvm-function-pass");
27+
reg.register_llvm_pass("some-llvm-module-pass");
2628
}

0 commit comments

Comments
 (0)