//===- GISelAliasTest.cpp--------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "GISelMITest.h" #include "llvm/CodeGen/GlobalISel/LoadStoreOpt.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineMemOperand.h" #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Metadata.h" #include "llvm/Support/AtomicOrdering.h" #include "gtest/gtest.h" namespace { // Test simple aliasing. TEST_F(AArch64GISelMITest, SimpleAlias) { … } // Test aliasing checks for same base + different offsets. TEST_F(AArch64GISelMITest, OffsetAliasing) { … } // Test aliasing checks for frame indexes. TEST_F(AArch64GISelMITest, FrameIndexAliasing) { … } } // namespace