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