coverage: Consolidate FFI types into one module

Coverage FFI types were historically split across two modules, because some of
them were needed by code in `rustc_codegen_ssa`.

Now that all of the coverage codegen code has been moved into
`rustc_codegen_llvm` (#113355), it's possible to move all of the FFI types into
a single module, making it easier to see all of them at once.
This commit is contained in:
Zalathar 2023-07-22 18:23:39 +10:00
parent 90bb4184f8
commit d6ed6e3904
5 changed files with 201 additions and 208 deletions

View file

@ -3,10 +3,10 @@ use crate::llvm;
use crate::abi::Abi;
use crate::builder::Builder;
use crate::common::CodegenCx;
use crate::coverageinfo::map_data::{CounterExpression, FunctionCoverage};
use crate::coverageinfo::ffi::{CounterExpression, CounterMappingRegion};
use crate::coverageinfo::map_data::FunctionCoverage;
use libc::c_uint;
use llvm::coverageinfo::CounterMappingRegion;
use rustc_codegen_ssa::traits::{
BaseTypeMethods, BuilderMethods, ConstMethods, CoverageInfoBuilderMethods, MiscMethods,
StaticMethods,
@ -27,7 +27,7 @@ use rustc_middle::ty::Ty;
use std::cell::RefCell;
use std::ffi::CString;
mod ffi;
pub(crate) mod ffi;
pub(crate) mod map_data;
pub mod mapgen;