Lines Matching full:vixl
1 Getting Started with VIXL AArch64
5 This guide will show you how to use the VIXL framework for AArch64. We will see
6 how to set up the VIXL assembler and generate some code. We will also go into
7 details on a few useful features provided by VIXL and see how to run the
8 generated code in the VIXL simulator.
24 All VIXL components are declared in the `vixl::aarch64` namespace, so let's add
27 using namespace vixl::aarch64;
33 VIXL's assembler will generate some code at run-time, and this code needs to
95 Now we are going to learn a bit more on a couple of interesting VIXL features
100 VIXL's assembler provides a mechanism to represent labels with `Label` objects.
147 solution is already handled in VIXL. For instance you can write:
152 big. However, VIXL's macro assembler will automatically rewrite this line into
162 VIXL also provides a way to do this:
167 constants embedded in the code. VIXL will emit literal pools after natural
197 demonstrate the basics of the VIXL framework. There are more complex code
198 examples in the VIXL `examples/aarch64` directory showing more features of both the