os-rust/src/test/incremental/hashes/extern_mods.rs

209 lines
5.4 KiB
Rust
Raw Normal View History

2016-12-19 17:52:18 -05:00
// This test case tests the incremental compilation hash (ICH) implementation
// for `extern` modules.
// The general pattern followed here is: Change one thing between rev1 and rev2
// and make sure that the hash has changed, then change nothing between rev2 and
// rev3 and make sure that the hash has not changed.
// build-pass (FIXME(62277): could be check-pass?)
2016-12-19 17:52:18 -05:00
// revisions: cfail1 cfail2 cfail3
// compile-flags: -Z query-dep-graph -Zincremental-ignore-spans
2016-12-19 17:52:18 -05:00
#![allow(warnings)]
#![feature(rustc_attrs)]
#![feature(unboxed_closures)]
#![feature(link_args)]
2020-11-23 18:05:36 +01:00
#![crate_type = "rlib"]
2016-12-19 17:52:18 -05:00
// Change function name --------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_function_name1(c: i64) -> i32;
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_function_name2(c: i64) -> i32;
}
// Change parameter name -------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_parameter_name(c: i64) -> i32;
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_parameter_name(d: i64) -> i32;
}
// Change parameter type -------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_parameter_type(c: i64) -> i32;
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_parameter_type(c: i32) -> i32;
}
// Change return type ----------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_return_type(c: i32) -> i32;
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_return_type(c: i32) -> i8;
}
// Add parameter ---------------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_parameter(c: i32) -> i32;
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_parameter(c: i32, d: i32) -> i32;
}
// Add return type -------------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_return_type(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_return_type(c: i32) -> i32;
}
// Make function variadic ------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn make_function_variadic(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn make_function_variadic(c: i32, ...);
}
// Change calling convention ---------------------------------------------------
#[cfg(cfail1)]
extern "C" {
pub fn change_calling_convention(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
2016-12-19 17:52:18 -05:00
extern "rust-call" {
pub fn change_calling_convention(c: i32);
}
// Make function public --------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
fn make_function_public(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn make_function_public(c: i32);
}
// Add function ----------------------------------------------------------------
#[cfg(cfail1)]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_function1(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn add_function1(c: i32);
pub fn add_function2();
}
// Change link-args ------------------------------------------------------------
#[cfg(cfail1)]
#[link_args = "-foo -bar"]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_link_args(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
2016-12-19 17:52:18 -05:00
#[link_args = "-foo -bar -baz"]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_link_args(c: i32);
}
// Change link-name ------------------------------------------------------------
#[cfg(cfail1)]
#[link(name = "foo")]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_link_name(c: i32);
}
#[cfg(not(cfail1))]
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
2016-12-19 17:52:18 -05:00
#[link(name = "bar")]
2020-11-23 18:05:36 +01:00
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn change_link_name(c: i32);
}
type c_i32 = i32;
type c_i64 = i64;
// Indirectly change parameter type --------------------------------------------
mod indirectly_change_parameter_type {
#[cfg(cfail1)]
use super::c_i32 as c_int;
#[cfg(not(cfail1))]
use super::c_i64 as c_int;
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn indirectly_change_parameter_type(c: c_int);
}
}
// Indirectly change return type --------------------------------------------
mod indirectly_change_return_type {
#[cfg(cfail1)]
use super::c_i32 as c_int;
#[cfg(not(cfail1))]
use super::c_i64 as c_int;
2020-11-23 18:05:36 +01:00
#[rustc_dirty(cfg = "cfail2", except = "hir_owner,hir_owner_nodes")]
#[rustc_clean(cfg = "cfail3")]
extern "C" {
2016-12-19 17:52:18 -05:00
pub fn indirectly_change_return_type() -> c_int;
}
}