This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Before call to Function1: | |
| Register Value on stack Memory Address Notes | |
| ----------------------- | |
| | saved %eip | 0xbfffffd0 | |
| ----------------------- ---- | |
| %ebp -> | saved %ebp | 0xbfffffcc | | |
| ----------------------- | Main's stack frame | |
| | local variables | 0xbfffffc8 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| pop %ebp | |
| ret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| foo: | |
| # Begin function prolog | |
| push %ebp | |
| mov %esp, %ebp | |
| # End function prolog | |
| .... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM base/archlinux:latest AS base | |
| RUN pacman -Sy --noconfirm binutils perl python libxcb clang emscripten git make cmake qbs | |
| ENV PATH="/usr/lib/emscripten:${PATH}" | |
| FROM base AS repos-configured | |
| COPY ./configure-qt5-repos.sh ./ | |
| RUN ./configure-qt5-repos.sh | |
| FROM repos-configured AS repos-built |
NewerOlder