diff options
| author | Michael Gottesman <mgottesman@apple.com> | 2013-12-13 20:47:34 +0000 |
|---|---|---|
| committer | Michael Gottesman <mgottesman@apple.com> | 2013-12-13 20:47:34 +0000 |
| commit | 4497d963fba10b74949e74c50bd14e6f7c12f721 (patch) | |
| tree | 6eb29c35a362a2af72ea812406ab6ed6c2898424 /llvm/unittests/ADT/APIntTest.cpp | |
| parent | 49806f4dbe6dee00ae67833752c48d050a610178 (diff) | |
| download | llvm-4497d963fba10b74949e74c50bd14e6f7c12f721.zip llvm-4497d963fba10b74949e74c50bd14e6f7c12f721.tar.gz llvm-4497d963fba10b74949e74c50bd14e6f7c12f721.tar.bz2 | |
[block-freq] Add the APInt method extractBit.
llvm-svn: 197271
Diffstat (limited to 'llvm/unittests/ADT/APIntTest.cpp')
| -rw-r--r-- | llvm/unittests/ADT/APIntTest.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/APIntTest.cpp b/llvm/unittests/ADT/APIntTest.cpp index 3c0dfe1..1d330f0 100644 --- a/llvm/unittests/ADT/APIntTest.cpp +++ b/llvm/unittests/ADT/APIntTest.cpp @@ -597,4 +597,30 @@ TEST(APIntTest, tcDecrement) { EXPECT_EQ(APInt::tcCompare(test, expected, 4), 0); } } + +TEST(APIntTest, extractBit) { + // Single word check. + uint64_t E1 = 0x2CA7F46BF6569915ULL; + APInt A1(64, E1); + for (unsigned i = 0, e = 64; i < e; ++i) { + EXPECT_EQ(bool(E1 & (1ULL << i)), + A1.extractBit(i)); + } + + // Multiword check. + integerPart E2[4] = { + 0xeb6eb136591cba21ULL, + 0x7b9358bd6a33f10aULL, + 0x7e7ffa5eadd8846ULL, + 0x305f341ca00b613dULL + }; + APInt A2(integerPartWidth*4, ArrayRef<integerPart>(E2, 4)); + for (unsigned i = 0; i < 4; ++i) { + for (unsigned j = 0; j < integerPartWidth; ++j) { + EXPECT_EQ(bool(E2[i] & (1ULL << j)), + A2.extractBit(i*integerPartWidth + j)); + } + } +} + } |
