本文整理匯總了Python中pypy.jit.metainterp.heapcache.HeapCache.replace_box方法的典型用法代碼示例。如果您正苦於以下問題:Python HeapCache.replace_box方法的具體用法?Python HeapCache.replace_box怎麽用?Python HeapCache.replace_box使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pypy.jit.metainterp.heapcache.HeapCache
的用法示例。
在下文中一共展示了HeapCache.replace_box方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_replace_box
# 需要導入模塊: from pypy.jit.metainterp.heapcache import HeapCache [as 別名]
# 或者: from pypy.jit.metainterp.heapcache.HeapCache import replace_box [as 別名]
def test_replace_box(self):
h = HeapCache()
h.setfield(box1, descr1, box2)
h.setfield(box1, descr2, box3)
h.setfield(box2, descr3, box3)
h.replace_box(box1, box4)
assert h.getfield(box1, descr1) is None
assert h.getfield(box1, descr2) is None
assert h.getfield(box4, descr1) is box2
assert h.getfield(box4, descr2) is box3
assert h.getfield(box2, descr3) is box3
示例2: test_replace_box_array
# 需要導入模塊: from pypy.jit.metainterp.heapcache import HeapCache [as 別名]
# 或者: from pypy.jit.metainterp.heapcache.HeapCache import replace_box [as 別名]
def test_replace_box_array(self):
h = HeapCache()
h.setarrayitem(box1, descr1, index1, box2)
h.setarrayitem(box1, descr2, index1, box3)
h.arraylen_now_known(box1, lengthbox1)
h.setarrayitem(box2, descr1, index2, box1)
h.setarrayitem(box3, descr2, index2, box1)
h.setarrayitem(box2, descr3, index2, box3)
h.replace_box(box1, box4)
assert h.arraylen(box4) is lengthbox1
assert h.getarrayitem(box4, descr1, index1) is box2
assert h.getarrayitem(box4, descr2, index1) is box3
assert h.getarrayitem(box2, descr1, index2) is box4
assert h.getarrayitem(box3, descr2, index2) is box4
assert h.getarrayitem(box2, descr3, index2) is box3
h.replace_box(lengthbox1, lengthbox2)
assert h.arraylen(box4) is lengthbox2
示例3: test_replace_box_twice
# 需要導入模塊: from pypy.jit.metainterp.heapcache import HeapCache [as 別名]
# 或者: from pypy.jit.metainterp.heapcache.HeapCache import replace_box [as 別名]
def test_replace_box_twice(self):
h = HeapCache()
h.setfield(box1, descr1, box2)
h.setfield(box1, descr2, box3)
h.setfield(box2, descr3, box3)
h.replace_box(box1, box4)
h.replace_box(box4, box5)
assert h.getfield(box5, descr1) is box2
assert h.getfield(box5, descr2) is box3
assert h.getfield(box2, descr3) is box3
h.setfield(box5, descr1, box3)
assert h.getfield(box4, descr1) is box3
h = HeapCache()
h.setfield(box1, descr1, box2)
h.setfield(box1, descr2, box3)
h.setfield(box2, descr3, box3)
h.replace_box(box3, box4)
h.replace_box(box4, box5)
assert h.getfield(box1, descr1) is box2
assert h.getfield(box1, descr2) is box5
assert h.getfield(box2, descr3) is box5