mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Remove the expensive BitVector::operator~().
Returning a temporary BitVector is very expensive. If you must, create the temporary explicitly: Use BitVector(A).flip() instead of ~A. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9e10d773e1
commit
0057022489
@ -251,11 +251,6 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
// No argument flip.
|
||||
BitVector operator~() const {
|
||||
return BitVector(*this).flip();
|
||||
}
|
||||
|
||||
// Indexing.
|
||||
reference operator[](unsigned Idx) {
|
||||
assert (Idx < Size && "Out-of-bounds Bit access.");
|
||||
|
@ -42,7 +42,8 @@ TEST(BitVectorTest, TrivialOperation) {
|
||||
EXPECT_FALSE(Vec.none());
|
||||
EXPECT_FALSE(Vec.empty());
|
||||
|
||||
BitVector Inv = ~Vec;
|
||||
BitVector Inv = Vec;
|
||||
Inv.flip();
|
||||
EXPECT_EQ(6U, Inv.count());
|
||||
EXPECT_EQ(11U, Inv.size());
|
||||
EXPECT_TRUE(Inv.any());
|
||||
@ -52,7 +53,7 @@ TEST(BitVectorTest, TrivialOperation) {
|
||||
|
||||
EXPECT_FALSE(Inv == Vec);
|
||||
EXPECT_TRUE(Inv != Vec);
|
||||
Vec = ~Vec;
|
||||
Vec.flip();
|
||||
EXPECT_TRUE(Inv == Vec);
|
||||
EXPECT_FALSE(Inv != Vec);
|
||||
|
||||
@ -131,7 +132,7 @@ TEST(BitVectorTest, TrivialOperation) {
|
||||
EXPECT_TRUE(Vec.none());
|
||||
EXPECT_FALSE(Vec.empty());
|
||||
|
||||
Inv = ~BitVector();
|
||||
Inv = BitVector().flip();
|
||||
EXPECT_EQ(0U, Inv.count());
|
||||
EXPECT_EQ(0U, Inv.size());
|
||||
EXPECT_FALSE(Inv.any());
|
||||
|
Loading…
x
Reference in New Issue
Block a user