package frama-c
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Platform dedicated to the analysis of source code written in C
Install
dune-project
Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
NNicolas Bellec
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
VVincent Botbol
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
SSylvain Chiron
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
JJordan Ischard
-
MMaxime Jacquemin
-
BBenjamin Jorge
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
KKilyan Le Gallic
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
NNicky Mouha
-
YYannick Moy
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
CCécile Ruet-Cros
-
JJulien Signoles
-
FFabien Siron
-
NNicolas Stouls
-
HHugo Thievenaz
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
frama-c-33.0-Arsenic.tar.gz
sha256=9c1cbffd28bb33c17a668107e39c96e4ae7378a3d8249f69b47afc7ee964e9b8
doc/src/frama-c-eva.server_api/mthread_requests.ml.html
Source file mthread_requests.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196(**************************************************************************) (* *) (* SPDX-License-Identifier LGPL-2.1 *) (* Copyright (C) *) (* CEA (Commissariat à l'énergie atomique et aux énergies alternatives) *) (* *) (**************************************************************************) open Server let package = Package.package ~plugin:"eva" ~name:"mthread" ~title:"Eva Mthread Services" () module Enum (X: sig type t end) = struct module Enum = Data.Enum let dictionary: X.t Enum.dictionary = Enum.dictionary () let tag name descr = Enum.tag ~name ~descr:(Markdown.plain descr) dictionary let publish lookup name descr = Enum.set_lookup dictionary lookup; Request.dictionary ~package ~name ~descr:(Markdown.plain descr) dictionary end module Jaccess_kind = struct module AccessKind = Mt_shared_vars_types.AccessKind include Enum (struct type t = AccessKind.t end) let access_read = tag "read" "Read access" let access_write = tag "write" "Write access" let lookup (access_kind : AccessKind.t) = match access_kind with | AccessRead -> access_read | AccessWrite -> access_write include (val publish lookup "accessKind" "Kind of access") end module Jprotection = struct type protection = Mt_shared_vars_types.protection include Enum (struct type t = protection end) let unprotected = tag "unprotected" "Unprotected access" let maybe_protected = tag "maybe_protected" "Maybe protected access" let protected = tag "protected" "Protected access" let lookup (protection : protection) = match protection with | Unprotected -> unprotected | MaybeProtected _ -> maybe_protected | Protected _ -> protected include (val publish lookup "protectionKind" "Kind of access protection") end module Jkeyed_value = Data.Jpair (Data.Jint) (Data.Jstring) module Jlist_of_keyed_value = Data.Jlist (Jkeyed_value) let lockset_to_keyed_stringlist lockset = Mutex.Set.fold (fun mutex acc -> (Mutex.id mutex, Mutex.label mutex) :: acc) lockset [] let mqueueset_to_keyed_stringlist mqueueset = Mqueue.Set.fold (fun mqueue acc -> (Mqueue.id mqueue, Mqueue.label mqueue) :: acc) mqueueset [] let zoneset_to_stringlist zoneset = Memory_zone.Set.fold (fun zone acc -> Format.asprintf "%a" Memory_zone.pretty zone :: acc) zoneset [] let _thread_summary = let model = States.model () in States.column model ~name:"thread" ~descr:(Markdown.plain "Thread") ~data:(module Jkeyed_value) ~get:(fun (th, _) -> Thread.id th, Thread.label th); States.column model ~name:"locksTaken" ~descr:(Markdown.plain "Locks taken by thread") ~data:(module Jlist_of_keyed_value) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> lockset_to_keyed_stringlist th_summary.locks.taken); States.column model ~name:"locksReleased" ~descr:(Markdown.plain "Locks released by thread") ~data:(module Jlist_of_keyed_value) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> lockset_to_keyed_stringlist th_summary.locks.released); States.column model ~name:"mqueuesCreated" ~descr:(Markdown.plain "Message queues created by thread") ~data:(module Jlist_of_keyed_value) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> mqueueset_to_keyed_stringlist th_summary.mqueues.created); States.column model ~name:"mqueuesSenders" ~descr:(Markdown.plain "Message queues sending some messages by thread") ~data:(module Jlist_of_keyed_value) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> mqueueset_to_keyed_stringlist th_summary.mqueues.senders); States.column model ~name:"mqueuesReceivers" ~descr:(Markdown.plain "Message queues receiving some messages by thread") ~data:(module Jlist_of_keyed_value) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> mqueueset_to_keyed_stringlist th_summary.mqueues.receivers); States.column model ~name:"sharedVarsRead" ~descr:(Markdown.plain "Shared variables read by thread") ~data:(module Data.Jlist (Data.Jstring)) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> zoneset_to_stringlist th_summary.shared_vars.read); States.column model ~name:"sharedVarsWritten" ~descr:(Markdown.plain "Shared variables written by thread") ~data:(module Data.Jlist (Data.Jstring)) ~get:(fun (_, (th_summary : Mt_summary.thread_summary)) -> zoneset_to_stringlist th_summary.shared_vars.written); States.register_framac_array ~package ~name:"mtThreadsSummary" ~descr:(Markdown.plain "Data for Mthread summary") ~key:(fun th -> Format.asprintf "%d" (Thread.id th)) model (module Mt_summary.ThreadTable) let = let open Mt_shared_vars_types in let model = States.model () in States.column model ~name:"bases" ~descr:(Markdown.plain "Memory bases accessed") ~data:(module Data.Jstring) ~get:(fun (access, _) -> let zone = Mt_summary.access_zone access in let bases = Memory_zone.get_bases zone in match bases with | Set bases when Base.Hptset.cardinal bases = 1 -> let base = Base.Hptset.choose bases in Format.asprintf "%a" Base.pretty base | Set bases -> Self.fatal "By construction there should only be one base in %a" Base.Hptset.pretty bases | Top -> Format.asprintf "%t" Eval.Top.pretty_top); States.column model ~name:"zones" ~descr:(Markdown.plain "Memory zone accessed") ~data:(module Data.Jstring) ~get:(fun (access, _) -> let zone = Mt_summary.access_zone access in Format.asprintf "%a" Memory_zone.pretty zone); States.column model ~name:"accessKind" ~descr:(Markdown.plain "Is the access a read or a write?") ~data:(module Jaccess_kind) ~get:(fun (access, _) -> Mt_summary.access_kind access); States.column model ~name:"protectionKind" ~descr:(Markdown.plain "Kind of access protection") ~data:(module Jprotection) ~get:(fun (access, _) -> Mt_summary.access_protection access); States.column model ~name:"protectionMutexes" ~descr:(Markdown.plain "Mutex protecting the access (if any)") ~data:(module Jlist_of_keyed_value) ~get:(fun (access, _) -> match Mt_summary.access_protection access with | Unprotected -> [] | MaybeProtected mutex | Protected mutex -> [Mutex.id mutex, Mutex.label mutex]); States.column model ~name:"markers" ~descr:(Markdown.plain "List of statements where the access happens") ~data:(module Data.Jlist (Kernel_ast.Marker)) ~get:(fun (_, stmts) -> Cil_datatype.Stmt.Set.elements stmts |> List.map Printer_tag.localizable_of_stmt); States.register_framac_array ~package ~name:"mtSharedVarsSummary" ~descr:(Markdown.plain "Data for Mthread summary of shared memory accesses") ~key:Mt_summary.access_id model (module Mt_summary.AccessTable)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>