74 lines
2.9 KiB
TeX
74 lines
2.9 KiB
TeX
\makeglossaries{}
|
|
|
|
% Refer to entries using \gls, \Gls, \glspl, \Glspl
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Acronyms
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% \newacronym[
|
|
% text={text in the glossary (uses text in the document if omitted)},
|
|
% plural={plural text in the document (uses text if omitted)},
|
|
% description={description in the glossary (uses description in the document if omitted)},
|
|
% ]{key}{text in the document}{description in the document}
|
|
|
|
\newacronym[description={Ahead-of-Time Compilation}]{aot}{AOT}{ahead-of-time}
|
|
% \newacronym[description={Classic Interpreter}]{cint}{CI}{classic interpreter}
|
|
\newacronym{fail}{FAIL*}{Fault-Injection Leveraged}
|
|
\newacronym[description={Fault-Injection}]{fi}{FI}{fault-injection}
|
|
% \newacronym[description={Fast Interpreter}]{fint}{FI}{fast interpreter}
|
|
\newacronym[description={Detected Unrecoverable Error}]{due}{DUE}{detected unrecoverable error}
|
|
\newacronym[description={Just-in-Time Compiler}]{jit}{JIT}{just-in-time}
|
|
\newacronym[description={Silent Data Corruption}]{sdc}{SDC}{silent data corruption}
|
|
\newacronym{wamr}{WAMR}{WebAssembly Micro Runtime}
|
|
\newacronym{wasm}{Wasm}{WebAssembly}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Glossary Entries
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% \newglossaryentry{key}{%
|
|
% name={text in the glossary},
|
|
% text={text in the document (uses name if omitted)},
|
|
% plural={plural text in the document (uses text if omitted)},
|
|
% description={description in the glossary},
|
|
% }
|
|
|
|
\newglossaryentry{ancode}{%
|
|
name={AN-Code},
|
|
text={AN-code},
|
|
description={Arithmetic coding scheme protecting against operand errors}
|
|
}
|
|
\newglossaryentry{anbcode}{%
|
|
name={ANB-Code},
|
|
text={ANB-code},
|
|
description={Arithmetic coding scheme protecting against operand and operator errors}
|
|
}
|
|
\newglossaryentry{anbdcode}{%
|
|
name={ANBD-Code},
|
|
text={ANBD-code},
|
|
description={Arithmetic coding scheme protecting against operand, operator and operation errors}
|
|
}
|
|
\newglossaryentry{cored}{%
|
|
name={Combined Redundancy},
|
|
first={Combined Redundancy (CoRed)},
|
|
description={Hardening technique utilizing \Gls{replication} in combination with an \glsdisp{anbcode}{ANB-coded} majority voter},
|
|
}
|
|
\newglossaryentry{iwasm}{%
|
|
name={iWasm},
|
|
description={\Gls{wamr}'s standalone binary that provides a command-line interface to load and execute \Gls{wasm} modules using \Gls{vmcore}}
|
|
}
|
|
\newglossaryentry{replication}{%
|
|
name={Replication},
|
|
text={replication},
|
|
description={Hardening technique utilizing replicated hardware or execution in combination with a majority voter}
|
|
}
|
|
\newglossaryentry{vmcore}{%
|
|
name={VMcore},
|
|
description={\Gls{wamr}'s runtime libraries for \Gls{wasm} module loading and execution}
|
|
}
|
|
\newglossaryentry{wamrc}{%
|
|
name={WamrC},
|
|
description={\Gls{wamr}'s \gls{aot} compiler for \Gls{wasm}}
|
|
}
|