Lines Matching full:vixl
1 Getting Started with VIXL for AArch32
5 This guide will show you how to use the VIXL framework for AArch32. 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
34 All VIXL components are declared in the `vixl::aarch32` namespace, so let's add
38 using namespace vixl::aarch32;
91 Now we are going to learn a bit more on a couple of interesting VIXL features
96 VIXL's assembler provides a mechanism to represent labels with `Label` objects.
134 solution is already handled in VIXL. For instance you can write:
139 big. However, VIXL's macro assembler will automatically rewrite this line into
150 VIXL also provides a way to do this:
155 constants embedded in the code. VIXL will emit the literal pool when needed.
190 demonstrate the basics of the VIXL framework. There are more complex code
191 examples in the VIXL `examples/aarch32` directory showing more features of both the