1/8
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What are SIMD (single instruction, multiple data) registers in X86 Assembly ?
special-purpose registers designed for performing the same instruction on multiple data elements simultaneously
What are macros in x86 Assembly ?
blocks of reusable Assembly code that can be referenced by name
What is a compiler?
a special program that translates a programming language's source code into machine code
source: https://www.techtarget.com/whatis/definition/compiler
What is a JIT (just in time) compiler ?
Why is python not suitable for AOT (ahead of time) compilation ?
Because some dynamic types are not known ahead of time, they are only known at runtime