mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-12 18:02:43 +00:00
[CodeGen] Add unittest for findDebugLoc, rfindDebugLoc, findPrevDebugLoc and rfindPrevDebugLoc. NFC
- Add some unittests for the findDebugLoc, rfindDebugLoc, findPrevDebugLoc and rfindPrevDebugLoc helpers in MachineBasicBlock. - Clean up code comments and code formatting related to the functions mentioned above. This was extracted as a pre-commit to D150577, adn some of the tests are commented out since they would crash/assert in a rather uncontrolled way.
This commit is contained in:
parent
ce2631d147
commit
a23f984616
@ -1066,31 +1066,33 @@ public:
|
||||
/// instead of basic block \p Old.
|
||||
void replacePhiUsesWith(MachineBasicBlock *Old, MachineBasicBlock *New);
|
||||
|
||||
/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
|
||||
/// and DBG_LABEL instructions. Return UnknownLoc if there is none.
|
||||
/// Find the next valid DebugLoc starting at MBBI, skipping any debug
|
||||
/// instructions. Return UnknownLoc if there is none.
|
||||
DebugLoc findDebugLoc(instr_iterator MBBI);
|
||||
DebugLoc findDebugLoc(iterator MBBI) {
|
||||
return findDebugLoc(MBBI.getInstrIterator());
|
||||
}
|
||||
|
||||
/// Has exact same behavior as @ref findDebugLoc (it also
|
||||
/// searches from the first to the last MI of this MBB) except
|
||||
/// that this takes reverse iterator.
|
||||
/// Has exact same behavior as @ref findDebugLoc (it also searches towards the
|
||||
/// end of this MBB) except that this function takes a reverse iterator to
|
||||
/// identify the starting MI.
|
||||
DebugLoc rfindDebugLoc(reverse_instr_iterator MBBI);
|
||||
DebugLoc rfindDebugLoc(reverse_iterator MBBI) {
|
||||
return rfindDebugLoc(MBBI.getInstrIterator());
|
||||
}
|
||||
|
||||
/// Find the previous valid DebugLoc preceding MBBI, skipping and DBG_VALUE
|
||||
/// instructions. Return UnknownLoc if there is none.
|
||||
/// Find the previous valid DebugLoc preceding MBBI, skipping any debug
|
||||
/// instructions. It is possible to find the last DebugLoc in the MBB using
|
||||
/// findPrevDebugLoc(instr_end()). Return UnknownLoc if there is none.
|
||||
DebugLoc findPrevDebugLoc(instr_iterator MBBI);
|
||||
DebugLoc findPrevDebugLoc(iterator MBBI) {
|
||||
return findPrevDebugLoc(MBBI.getInstrIterator());
|
||||
}
|
||||
|
||||
/// Has exact same behavior as @ref findPrevDebugLoc (it also
|
||||
/// searches from the last to the first MI of this MBB) except
|
||||
/// that this takes reverse iterator.
|
||||
/// Has exact same behavior as @ref findPrevDebugLoc (it also searches towards
|
||||
/// the beginning of this MBB) except that this function takes reverse
|
||||
/// iterator to identify the starting MI. A minor difference compared to
|
||||
/// findPrevDebugLoc is that we can't start scanning at "instr_end".
|
||||
DebugLoc rfindPrevDebugLoc(reverse_instr_iterator MBBI);
|
||||
DebugLoc rfindPrevDebugLoc(reverse_iterator MBBI) {
|
||||
return rfindPrevDebugLoc(MBBI.getInstrIterator());
|
||||
|
@ -1462,7 +1462,7 @@ void MachineBasicBlock::replacePhiUsesWith(MachineBasicBlock *Old,
|
||||
}
|
||||
}
|
||||
|
||||
/// Find the next valid DebugLoc starting at MBBI, skipping any DBG_VALUE
|
||||
/// Find the next valid DebugLoc starting at MBBI, skipping any debug
|
||||
/// instructions. Return UnknownLoc if there is none.
|
||||
DebugLoc
|
||||
MachineBasicBlock::findDebugLoc(instr_iterator MBBI) {
|
||||
@ -1481,13 +1481,15 @@ DebugLoc MachineBasicBlock::rfindDebugLoc(reverse_instr_iterator MBBI) {
|
||||
return {};
|
||||
}
|
||||
|
||||
/// Find the previous valid DebugLoc preceding MBBI, skipping and DBG_VALUE
|
||||
/// Find the previous valid DebugLoc preceding MBBI, skipping any debug
|
||||
/// instructions. Return UnknownLoc if there is none.
|
||||
DebugLoc MachineBasicBlock::findPrevDebugLoc(instr_iterator MBBI) {
|
||||
if (MBBI == instr_begin()) return {};
|
||||
if (MBBI == instr_begin())
|
||||
return {};
|
||||
// Skip debug instructions, we don't want a DebugLoc from them.
|
||||
MBBI = prev_nodbg(MBBI, instr_begin());
|
||||
if (!MBBI->isDebugInstr()) return MBBI->getDebugLoc();
|
||||
if (!MBBI->isDebugInstr())
|
||||
return MBBI->getDebugLoc();
|
||||
return {};
|
||||
}
|
||||
|
||||
|
@ -28,6 +28,7 @@ add_llvm_unittest(CodeGenTests
|
||||
InstrRefLDVTest.cpp
|
||||
LowLevelTypeTest.cpp
|
||||
LexicalScopesTest.cpp
|
||||
MachineBasicBlockTest.cpp
|
||||
MachineInstrBundleIteratorTest.cpp
|
||||
MachineInstrTest.cpp
|
||||
MachineOperandTest.cpp
|
||||
|
107
llvm/unittests/CodeGen/MachineBasicBlockTest.cpp
Normal file
107
llvm/unittests/CodeGen/MachineBasicBlockTest.cpp
Normal file
@ -0,0 +1,107 @@
|
||||
//===- MachineBasicBlockTest.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 "llvm/CodeGen/MachineBasicBlock.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
#include "llvm/CodeGen/TargetFrameLowering.h"
|
||||
#include "llvm/CodeGen/TargetInstrInfo.h"
|
||||
#include "llvm/CodeGen/TargetLowering.h"
|
||||
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
||||
#include "llvm/IR/DIBuilder.h"
|
||||
#include "llvm/IR/DebugInfoMetadata.h"
|
||||
#include "llvm/IR/IRBuilder.h"
|
||||
#include "llvm/MC/TargetRegistry.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "gmock/gmock.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
// Include helper functions to ease the manipulation of MachineFunctions.
|
||||
#include "MFCommon.inc"
|
||||
|
||||
TEST(FindDebugLocTest, DifferentIterators) {
|
||||
LLVMContext Ctx;
|
||||
Module Mod("Module", Ctx);
|
||||
auto MF = createMachineFunction(Ctx, Mod);
|
||||
auto &MBB = *MF->CreateMachineBasicBlock();
|
||||
|
||||
// Create metadata: CU, subprogram, some blocks and an inline function
|
||||
// scope.
|
||||
DIBuilder DIB(Mod);
|
||||
DIFile *OurFile = DIB.createFile("foo.c", "/bar");
|
||||
DICompileUnit *OurCU =
|
||||
DIB.createCompileUnit(dwarf::DW_LANG_C99, OurFile, "", false, "", 0);
|
||||
auto OurSubT =
|
||||
DIB.createSubroutineType(DIB.getOrCreateTypeArray(std::nullopt));
|
||||
DISubprogram *OurFunc =
|
||||
DIB.createFunction(OurCU, "bees", "", OurFile, 1, OurSubT, 1,
|
||||
DINode::FlagZero, DISubprogram::SPFlagDefinition);
|
||||
|
||||
DebugLoc DL0;
|
||||
DebugLoc DL1 = DILocation::get(Ctx, 1, 0, OurFunc);
|
||||
DebugLoc DL2 = DILocation::get(Ctx, 2, 0, OurFunc);
|
||||
DebugLoc DL3 = DILocation::get(Ctx, 3, 0, OurFunc);
|
||||
|
||||
// Test using and empty MBB.
|
||||
EXPECT_EQ(DL0, MBB.findDebugLoc(MBB.instr_begin()));
|
||||
EXPECT_EQ(DL0, MBB.findDebugLoc(MBB.instr_end()));
|
||||
|
||||
// FIXME: This would crash (see https://reviews.llvm.org/D150577).
|
||||
//EXPECT_EQ(DL0, MBB.rfindDebugLoc(MBB.instr_rbegin()));
|
||||
//EXPECT_EQ(DL0, MBB.rfindDebugLoc(MBB.instr_rend()));
|
||||
|
||||
EXPECT_EQ(DL0, MBB.findPrevDebugLoc(MBB.instr_begin()));
|
||||
EXPECT_EQ(DL0, MBB.findPrevDebugLoc(MBB.instr_end()));
|
||||
|
||||
EXPECT_EQ(DL0, MBB.rfindPrevDebugLoc(MBB.instr_rbegin()));
|
||||
EXPECT_EQ(DL0, MBB.rfindPrevDebugLoc(MBB.instr_rend()));
|
||||
|
||||
// Insert two MIs with DebugLoc DL1 and DL3.
|
||||
// Also add a DBG_VALUE with a different DebugLoc in between.
|
||||
MCInstrDesc COPY = {TargetOpcode::COPY, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
MCInstrDesc DBG = {TargetOpcode::DBG_VALUE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
auto MI3 = MF->CreateMachineInstr(COPY, DL3);
|
||||
MBB.insert(MBB.begin(), MI3);
|
||||
auto MI2 = MF->CreateMachineInstr(DBG, DL2);
|
||||
MBB.insert(MBB.begin(), MI2);
|
||||
auto MI1 = MF->CreateMachineInstr(COPY, DL1);
|
||||
MBB.insert(MBB.begin(), MI1);
|
||||
|
||||
// Test using two MIs with a debug instruction in between.
|
||||
EXPECT_EQ(DL1, MBB.findDebugLoc(MBB.instr_begin()));
|
||||
EXPECT_EQ(DL1, MBB.findDebugLoc(MI1));
|
||||
EXPECT_EQ(DL3, MBB.findDebugLoc(MI2));
|
||||
EXPECT_EQ(DL3, MBB.findDebugLoc(MI3));
|
||||
EXPECT_EQ(DL0, MBB.findDebugLoc(MBB.instr_end()));
|
||||
|
||||
// FIXME: This would crash (see https://reviews.llvm.org/D150577).
|
||||
//EXPECT_EQ(DL1, MBB.rfindDebugLoc(MBB.instr_rend()));
|
||||
EXPECT_EQ(DL1, MBB.rfindDebugLoc(MI1));
|
||||
EXPECT_EQ(DL3, MBB.rfindDebugLoc(MI2));
|
||||
EXPECT_EQ(DL3, MBB.rfindDebugLoc(MI3));
|
||||
EXPECT_EQ(DL3, MBB.rfindDebugLoc(MBB.instr_rbegin()));
|
||||
|
||||
EXPECT_EQ(DL0, MBB.findPrevDebugLoc(MBB.instr_begin()));
|
||||
EXPECT_EQ(DL0, MBB.findPrevDebugLoc(MI1));
|
||||
EXPECT_EQ(DL1, MBB.findPrevDebugLoc(MI2));
|
||||
EXPECT_EQ(DL1, MBB.findPrevDebugLoc(MI3));
|
||||
EXPECT_EQ(DL3, MBB.findPrevDebugLoc(MBB.instr_end()));
|
||||
|
||||
EXPECT_EQ(DL0, MBB.rfindPrevDebugLoc(MBB.instr_rend()));
|
||||
EXPECT_EQ(DL0, MBB.rfindPrevDebugLoc(MI1));
|
||||
EXPECT_EQ(DL1, MBB.rfindPrevDebugLoc(MI2));
|
||||
EXPECT_EQ(DL1, MBB.rfindPrevDebugLoc(MI3));
|
||||
EXPECT_EQ(DL1, MBB.rfindPrevDebugLoc(MBB.instr_rbegin()));
|
||||
}
|
||||
|
||||
} // end namespace
|
@ -31,6 +31,7 @@ unittest("CodeGenTests") {
|
||||
"LexicalScopesTest.cpp",
|
||||
"LowLevelTypeTest.cpp",
|
||||
"MLRegallocDevelopmentFeatures.cpp",
|
||||
"MachineBasicBlockTest.cpp",
|
||||
"MachineInstrBundleIteratorTest.cpp",
|
||||
"MachineInstrTest.cpp",
|
||||
"MachineOperandTest.cpp",
|
||||
|
Loading…
Reference in New Issue
Block a user