diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-14 14:27:43 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-14 14:27:43 +0200 |
| commit | 94ceccd5acda2fd035eb55235126b944b0915576 (patch) | |
| tree | 8189412a45182b418cc3d0d63996c482e116e8d4 /docs | |
| parent | bdab776c880e4f4868332c451b028684f54ecd5d (diff) | |
dev(kdbg): Working on NeKernel Debugger.
how:
- Load vmkrnl.efi.
- Keep track of IP, Stack, and debugging information related to the
kernel.
- Make use of breakpoints and provide lldb grade experience.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/drawio/LIBCOMPILER_DESIGN.drawio | 0 | ||||
| -rw-r--r-- | docs/drawio/LIBDEBUGGER_DESIGN.drawio | 47 |
2 files changed, 47 insertions, 0 deletions
diff --git a/docs/drawio/LIBCOMPILER_DESIGN.drawio b/docs/drawio/LIBCOMPILER_DESIGN.drawio new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/docs/drawio/LIBCOMPILER_DESIGN.drawio diff --git a/docs/drawio/LIBDEBUGGER_DESIGN.drawio b/docs/drawio/LIBDEBUGGER_DESIGN.drawio new file mode 100644 index 0000000..0b3802d --- /dev/null +++ b/docs/drawio/LIBDEBUGGER_DESIGN.drawio @@ -0,0 +1,47 @@ +<mxfile host="65bd71144e"> + <diagram id="rBoUEB_FcKsNnY3-oVdp" name="Page-1"> + <mxGraphModel dx="822" dy="556" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0"> + <root> + <mxCell id="0"/> + <mxCell id="1" parent="0"/> + <mxCell id="5" style="edgeStyle=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" target="4"> + <mxGeometry relative="1" as="geometry"> + <mxPoint x="410" y="180" as="sourcePoint"/> + </mxGeometry> + </mxCell> + <mxCell id="6" style="edgeStyle=none;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="2" target="3"> + <mxGeometry relative="1" as="geometry"/> + </mxCell> + <mxCell id="2" value="LD Contract" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> + <mxGeometry x="350" y="120" width="120" height="60" as="geometry"/> + </mxCell> + <mxCell id="12" style="edgeStyle=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="3" target="11"> + <mxGeometry relative="1" as="geometry"/> + </mxCell> + <mxCell id="3" value="LD Contract<div>(A)</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> + <mxGeometry x="280" y="230" width="120" height="60" as="geometry"/> + </mxCell> + <mxCell id="10" style="edgeStyle=none;html=1;" edge="1" parent="1" source="4" target="8"> + <mxGeometry relative="1" as="geometry"/> + </mxCell> + <mxCell id="4" value="LD Contract<div>(B)</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> + <mxGeometry x="440" y="230" width="120" height="60" as="geometry"/> + </mxCell> + <mxCell id="9" style="edgeStyle=none;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="8" target="4"> + <mxGeometry relative="1" as="geometry"/> + </mxCell> + <mxCell id="8" value="Entrypoint of B" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> + <mxGeometry x="620" y="230" width="120" height="60" as="geometry"/> + </mxCell> + <mxCell id="13" style="edgeStyle=none;html=1;" edge="1" parent="1" source="11"> + <mxGeometry relative="1" as="geometry"> + <mxPoint x="340" y="290" as="targetPoint"/> + </mxGeometry> + </mxCell> + <mxCell id="11" value="Entrypoint of A" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> + <mxGeometry x="280" y="330" width="120" height="60" as="geometry"/> + </mxCell> + </root> + </mxGraphModel> + </diagram> +</mxfile>
\ No newline at end of file |
