Lines Matching refs:allocation
76 Node* Store(const FieldAccess& access, Node* allocation, Node* value, in Store() argument
85 allocation, value, effect, control); in Store()
187 Node* allocation = Allocate(Constant(kPointerSize)); in TEST_F() local
188 Store(AccessAtIndex(0), allocation, object1); in TEST_F()
189 Node* finish = FinishRegion(allocation); in TEST_F()
196 ExpectVirtual(allocation); in TEST_F()
208 Node* allocation = Allocate(Constant(kPointerSize)); in TEST_F() local
209 Store(AccessAtIndex(0), allocation, object1); in TEST_F()
210 Node* finish = FinishRegion(allocation); in TEST_F()
212 Node* result = Return(allocation); in TEST_F()
218 ExpectEscaped(allocation); in TEST_F()
223 ASSERT_EQ(allocation, NodeProperties::GetValueInput(result, 0)); in TEST_F()
259 Node* allocation = Allocate(Constant(kPointerSize)); in TEST_F() local
260 Store(AccessAtIndex(0), allocation, object1); in TEST_F()
261 Node* finish = FinishRegion(allocation); in TEST_F()
265 Node* effect1 = Store(AccessAtIndex(0), allocation, object1, finish, ifFalse); in TEST_F()
266 Node* effect2 = Store(AccessAtIndex(0), allocation, object2, finish, ifTrue); in TEST_F()
276 ExpectVirtual(allocation); in TEST_F()
289 Node* allocation = Allocate(Constant(kPointerSize)); in TEST_F() local
290 Node* store1 = Store(AccessAtIndex(0), allocation, object1); in TEST_F()
291 Node* load1 = Load(AccessAtIndex(0), allocation); in TEST_F()
292 Node* store2 = Store(AccessAtIndex(0), allocation, object2); in TEST_F()
293 Node* load2 = Load(AccessAtIndex(0), allocation, store1); in TEST_F()
301 ExpectVirtual(allocation); in TEST_F()
314 Node* allocation = Allocate(Constant(kPointerSize)); in TEST_F() local
315 Store(AccessAtIndex(0), allocation, object1); in TEST_F()
316 Node* finish = FinishRegion(allocation); in TEST_F()
317 Node* effect1 = Store(AccessAtIndex(0), allocation, object1, finish); in TEST_F()
337 ExpectVirtual(allocation); in TEST_F()
353 Node* allocation = Allocate(Constant(kPointerSize * 2)); in TEST_F() local
354 Store(AccessAtIndex(0), allocation, object1); in TEST_F()
355 Store(AccessAtIndex(kPointerSize), allocation, allocation); in TEST_F()
356 Node* finish = FinishRegion(allocation); in TEST_F()
357 Node* effect1 = Store(AccessAtIndex(0), allocation, object1, finish); in TEST_F()
377 ExpectVirtual(allocation); in TEST_F()