xref: /aosp_15_r20/external/vixl/examples/aarch64/non-const-visitor.h (revision f5c631da2f1efdd72b5fd1e20510e4042af13d77)
1*f5c631daSSadaf Ebrahimi // Copyright 2014, VIXL authors
2*f5c631daSSadaf Ebrahimi // All rights reserved.
3*f5c631daSSadaf Ebrahimi //
4*f5c631daSSadaf Ebrahimi // Redistribution and use in source and binary forms, with or without
5*f5c631daSSadaf Ebrahimi // modification, are permitted provided that the following conditions are met:
6*f5c631daSSadaf Ebrahimi //
7*f5c631daSSadaf Ebrahimi //   * Redistributions of source code must retain the above copyright notice,
8*f5c631daSSadaf Ebrahimi //     this list of conditions and the following disclaimer.
9*f5c631daSSadaf Ebrahimi //   * Redistributions in binary form must reproduce the above copyright notice,
10*f5c631daSSadaf Ebrahimi //     this list of conditions and the following disclaimer in the documentation
11*f5c631daSSadaf Ebrahimi //     and/or other materials provided with the distribution.
12*f5c631daSSadaf Ebrahimi //   * Neither the name of ARM Limited nor the names of its contributors may be
13*f5c631daSSadaf Ebrahimi //     used to endorse or promote products derived from this software without
14*f5c631daSSadaf Ebrahimi //     specific prior written permission.
15*f5c631daSSadaf Ebrahimi //
16*f5c631daSSadaf Ebrahimi // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17*f5c631daSSadaf Ebrahimi // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18*f5c631daSSadaf Ebrahimi // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19*f5c631daSSadaf Ebrahimi // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20*f5c631daSSadaf Ebrahimi // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21*f5c631daSSadaf Ebrahimi // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22*f5c631daSSadaf Ebrahimi // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23*f5c631daSSadaf Ebrahimi // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24*f5c631daSSadaf Ebrahimi // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25*f5c631daSSadaf Ebrahimi // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*f5c631daSSadaf Ebrahimi 
27*f5c631daSSadaf Ebrahimi #ifndef VIXL_EXAMPLES_NON_CONST_VISITOR_H_
28*f5c631daSSadaf Ebrahimi #define VIXL_EXAMPLES_NON_CONST_VISITOR_H_
29*f5c631daSSadaf Ebrahimi 
30*f5c631daSSadaf Ebrahimi #include "aarch64/decoder-aarch64.h"
31*f5c631daSSadaf Ebrahimi #include "aarch64/macro-assembler-aarch64.h"
32*f5c631daSSadaf Ebrahimi 
33*f5c631daSSadaf Ebrahimi class SwitchAddSubRegisterSources : public vixl::aarch64::DecoderVisitor {
34*f5c631daSSadaf Ebrahimi  public:
SwitchAddSubRegisterSources()35*f5c631daSSadaf Ebrahimi   SwitchAddSubRegisterSources()
36*f5c631daSSadaf Ebrahimi       : vixl::aarch64::DecoderVisitor(kNonConstVisitor) {}
37*f5c631daSSadaf Ebrahimi 
38*f5c631daSSadaf Ebrahimi   // Our visitor switches the register sources for some add and sub instructions
39*f5c631daSSadaf Ebrahimi   // (not all add and sub instructions).
40*f5c631daSSadaf Ebrahimi 
41*f5c631daSSadaf Ebrahimi   virtual void Visit(vixl::aarch64::Metadata* metadata,
42*f5c631daSSadaf Ebrahimi                      const vixl::aarch64::Instruction* instr) VIXL_OVERRIDE;
43*f5c631daSSadaf Ebrahimi };
44*f5c631daSSadaf Ebrahimi 
45*f5c631daSSadaf Ebrahimi 
46*f5c631daSSadaf Ebrahimi void GenerateNonConstVisitorTestCode(vixl::aarch64::MacroAssembler* masm);
47*f5c631daSSadaf Ebrahimi 
48*f5c631daSSadaf Ebrahimi int64_t RunNonConstVisitorTestGeneratedCode(
49*f5c631daSSadaf Ebrahimi     const vixl::aarch64::Instruction* start_instr);
50*f5c631daSSadaf Ebrahimi 
51*f5c631daSSadaf Ebrahimi void ModifyNonConstVisitorTestGeneratedCode(vixl::aarch64::Instruction* start,
52*f5c631daSSadaf Ebrahimi                                             vixl::aarch64::Instruction* end);
53*f5c631daSSadaf Ebrahimi 
54*f5c631daSSadaf Ebrahimi 
55*f5c631daSSadaf Ebrahimi #endif
56