mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Let the customBits and lastInitializedBitfieldID share a single uint64_t. This increases the number of available bits in SILNode and Operand from 8 to 20. Also, it simplifies the Operand class because no PointerIntPairs are used anymore to store the operand pointer fields. * Instead make the "deleted" flag a separate bool field in SILNode (instead of encoding it with the sign of lastInitializedBitfieldID). Another simplification * Enable important invariant checks also in release builds by using `require` instead of `assert`. Not catching such errors in release builds would be a disaster. * Let the Swift optimization passes use all the available bits and not only a fixed amount of 8 (SILNode) and 16 (SILBasicBlock).
122 lines
2.6 KiB
C++
122 lines
2.6 KiB
C++
//===--- SILBitfieldTest.cpp ----------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
namespace swift {
|
|
|
|
class BasicBlockBitfield;
|
|
|
|
// Fake SILFunction and SILBasicBlock.
|
|
|
|
struct SILFunction {
|
|
BasicBlockBitfield *newestAliveBlockBitfield = nullptr;
|
|
uint64_t currentBitfieldID = 1;
|
|
};
|
|
|
|
struct SILBasicBlock {
|
|
SILFunction *function;
|
|
uint32_t customBits = 0;
|
|
uint64_t lastInitializedBitfieldID = 0;
|
|
|
|
enum { numCustomBits = 32 };
|
|
enum { maxBitfieldID = std::numeric_limits<uint64_t>::max() };
|
|
|
|
SILBasicBlock(SILFunction *function): function(function) {}
|
|
|
|
SILFunction *getFunction() const { return function; }
|
|
|
|
unsigned getCustomBits() const { return customBits; }
|
|
void setCustomBits(unsigned value) { customBits = value; }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#define SWIFT_SIL_SILFUNCTION_H
|
|
|
|
#include "swift/SIL/BasicBlockBits.h"
|
|
|
|
using namespace swift;
|
|
|
|
namespace {
|
|
|
|
TEST(SILBitfieldTest, Basic) {
|
|
SILFunction f;
|
|
SILBasicBlock b(&f);
|
|
|
|
{
|
|
BasicBlockFlag A(&f);
|
|
EXPECT_FALSE(A.get(&b));
|
|
|
|
EXPECT_FALSE(A.testAndSet(&b));
|
|
EXPECT_TRUE(A.get(&b));
|
|
|
|
EXPECT_TRUE(A.testAndSet(&b));
|
|
EXPECT_TRUE(A.get(&b));
|
|
|
|
A.reset(&b);
|
|
EXPECT_FALSE(A.get(&b));
|
|
|
|
{
|
|
BasicBlockBitfield B(&f, 5);
|
|
EXPECT_EQ(B.get(&b), 0u);
|
|
|
|
B.set(&b, 27);
|
|
EXPECT_FALSE(A.get(&b));
|
|
EXPECT_EQ(B.get(&b), 27u);
|
|
|
|
A.set(&b);
|
|
EXPECT_TRUE(A.get(&b));
|
|
EXPECT_EQ(B.get(&b), 27u);
|
|
|
|
B.set(&b, 2);
|
|
EXPECT_TRUE(A.get(&b));
|
|
EXPECT_EQ(B.get(&b), 2u);
|
|
|
|
B.set(&b, 31);
|
|
EXPECT_TRUE(A.get(&b));
|
|
EXPECT_EQ(B.get(&b), 31u);
|
|
}
|
|
{
|
|
BasicBlockBitfield C(&f, 2);
|
|
EXPECT_EQ(C.get(&b), 0u);
|
|
|
|
BasicBlockFlag D(&f);
|
|
EXPECT_FALSE(D.get(&b));
|
|
|
|
BasicBlockBitfield E(&f, 3);
|
|
|
|
E.set(&b, 5);
|
|
EXPECT_TRUE(A.get(&b));
|
|
EXPECT_EQ(C.get(&b), 0u);
|
|
EXPECT_FALSE(D.get(&b));
|
|
EXPECT_EQ(E.get(&b), 5u);
|
|
|
|
C.set(&b, 1);
|
|
EXPECT_TRUE(A.get(&b));
|
|
EXPECT_EQ(C.get(&b), 1u);
|
|
EXPECT_FALSE(D.get(&b));
|
|
EXPECT_EQ(E.get(&b), 5u);
|
|
}
|
|
}
|
|
{
|
|
BasicBlockBitfield F(&f, 32);
|
|
EXPECT_EQ(F.get(&b), 0u);
|
|
F.set(&b, 0xdeadbeaf);
|
|
EXPECT_EQ(F.get(&b), 0xdeadbeaf);
|
|
}
|
|
}
|
|
|
|
}
|