OLD | NEW |
(Empty) | |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are |
| 4 // met: |
| 5 // |
| 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided |
| 11 // with the distribution. |
| 12 // * Neither the name of Google Inc. nor the names of its |
| 13 // contributors may be used to endorse or promote products derived |
| 14 // from this software without specific prior written permission. |
| 15 // |
| 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 |
| 28 #include <stdlib.h> |
| 29 |
| 30 #include "v8.h" |
| 31 |
| 32 #include "data-flow.h" |
| 33 #include "cctest.h" |
| 34 |
| 35 using namespace v8::internal; |
| 36 |
| 37 TEST(BitVector) { |
| 38 { |
| 39 BitVector v(15); |
| 40 v.Add(1); |
| 41 CHECK(v.Contains(1)); |
| 42 v.Remove(0); |
| 43 CHECK(!v.Contains(0)); |
| 44 v.Add(0); |
| 45 v.Add(1); |
| 46 BitVector w(15); |
| 47 w.Add(1); |
| 48 v.Intersect(w); |
| 49 CHECK(!v.Contains(0)); |
| 50 CHECK(v.Contains(1)); |
| 51 } |
| 52 |
| 53 { |
| 54 BitVector v(15); |
| 55 v.Add(0); |
| 56 BitVector w(15); |
| 57 w.Add(1); |
| 58 v.Union(w); |
| 59 CHECK(v.Contains(0)); |
| 60 CHECK(v.Contains(1)); |
| 61 } |
| 62 |
| 63 { |
| 64 BitVector v(35); |
| 65 v.Add(0); |
| 66 BitVector w(35); |
| 67 w.Add(33); |
| 68 v.Union(w); |
| 69 CHECK(v.Contains(0)); |
| 70 CHECK(v.Contains(33)); |
| 71 } |
| 72 |
| 73 { |
| 74 BitVector v(35); |
| 75 v.Add(32); |
| 76 v.Add(33); |
| 77 BitVector w(35); |
| 78 w.Add(33); |
| 79 v.Intersect(w); |
| 80 CHECK(!v.Contains(32)); |
| 81 CHECK(v.Contains(33)); |
| 82 BitVector r(35); |
| 83 r.CopyFrom(v); |
| 84 CHECK(!r.Contains(32)); |
| 85 CHECK(r.Contains(33)); |
| 86 } |
| 87 } |
OLD | NEW |