about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs
AgeCommit message (Expand)AuthorLines
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-1/+1
2024-09-19Reformat some comments.Nicholas Nethercote-7/+6
2024-09-17Rename supertraits of `CodegenMethods`.Nicholas Nethercote-2/+2
2024-08-16Add `warn(unreachable_pub)` to `rustc_codegen_llvm`.Nicholas Nethercote-4/+4
2024-07-29Reformat `use` declarations.Nicholas Nethercote-7/+6
2024-05-23Remove `#[macro_use] extern crate tracing` from `rustc_codegen_llvm`.Nicholas Nethercote-0/+1
2024-05-14coverage: `CoverageIdsInfo::mcdc_bitmap_bytes` is never neededZalathar-6/+1
2024-05-01coverage: Replace `max_decision_depth` with `num_condition_bitmaps`Zalathar-1/+1
2024-05-01coverage: Set up MC/DC bitmaps without additional unsafe codeZalathar-5/+15
2024-05-01coverage: Eagerly do start-of-function codegen for coverageZalathar-27/+27
2024-04-29mcdc-coverage: Get decision_depth from THIR loweringDorian Péron-1/+2
2024-04-29mcdc-coverage: Add decision_depth field in structsDorian Péron-4/+4
2024-04-29mcdc-coverage: Add possibility for codegen llvm to handle several condition b...Dorian Péron-7/+18
2024-04-20coverage. Lowering MC/DC statements to llvm-irzhuyunxing-1/+69
2024-04-04coverage: Remove useless constantsZalathar-4/+4
2024-04-01Auto merge of #122972 - beetrees:use-align-type, r=fee1-deadbors-3/+4
2024-04-01Use the `Align` type when parsing alignment attributesbeetrees-3/+4
2024-03-23Unbox and unwrap the contents of `StatementKind::Coverage`Zalathar-3/+1
2024-03-22coverage: Clean up marker statements that aren't needed laterZalathar-9/+1
2024-03-13coverage: Add `CoverageKind::BlockMarker`Zalathar-2/+2
2024-01-02coverage: Avoid a query stability hazard in `function_coverage_map`Zalathar-4/+4
2023-12-16coverage: Avoid creating `func_coverage` for marker statementsZalathar-3/+11
2023-12-08coverage: Add `CoverageKind::SpanMarker` for including extra spans in MIRZalathar-0/+3
2023-10-22coverage: Split `FunctionCoverage` into distinct collector/finished phasesZalathar-4/+7
2023-10-21coverage: Move unused-function helpers closer to where they are usedZalathar-37/+2
2023-10-21coverage: Emit mappings for unused functions without generating stubsZalathar-69/+7
2023-10-18coverage: Explicitly note that counter/expression IDs are function-localZalathar-0/+7
2023-10-18coverage: Store expression data in function coverage infoZalathar-2/+2
2023-10-18coverage: Store all of a function's mappings in function coverage infoZalathar-19/+10
2023-10-18coverage: Store the number of counters/expressions in function coverage infoZalathar-4/+14
2023-10-18coverage: Attach an optional `FunctionCoverageInfo` to `mir::Body`Zalathar-12/+16
2023-10-03coverage: Let each coverage statement hold a vector of code regionsZalathar-26/+7
2023-10-03coverage: Mappings for unused functions can all be zeroZalathar-11/+3
2023-08-22Inline functions called from `add_coverage`Arpad Borsos-123/+46
2023-08-04coverage: Don't convert symbol names to `CString` for FFIZalathar-4/+8
2023-08-04coverage: Don't convert filenames to `CString` for FFIZalathar-4/+10
2023-08-02coverage: Consolidate FFI types into one moduleZalathar-3/+3
2023-08-01Make coverage counter IDs count up from 0, not 1Zalathar-6/+4
2023-08-01Make coverage expression IDs count up from 0, not down from `u32::MAX`Zalathar-2/+2
2023-08-01Replace `ExpressionOperandId` with enum `Operand`Zalathar-3/+3
2023-07-24coverage: Obtain the `__llvm_covfun` section name outside a per-function loopZalathar-7/+21
2023-07-16Auto merge of #113430 - Zalathar:hash, r=b-naberbors-6/+1
2023-07-14refactor(rustc_middle): Substs -> GenericArgMahdi Dibaiee-2/+2
2023-07-13Remove `LLVMRustCoverageHashCString`Zalathar-5/+0
2023-07-13Pass a byte slice to `coverageinfo::hash_bytes` instead of an owned vectorZalathar-1/+1
2023-07-05Move `TyCtxt::mk_x` to `Ty::new_x` where applicableBoxy-2/+3
2023-07-05Move `coverageinfo::ffi` and `coverageinfo::map` out of SSAZalathar-1/+3
2023-07-05Remove trait `CoverageInfoMethods`, since non-LLVM backends don't need itZalathar-4/+10
2023-07-05Narrow trait `CoverageInfoBuilderMethods` down to just one methodZalathar-2/+57
2023-05-09CFI: Fix SIGILL reached via trait objectsRamon de C Valle-0/+1