Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Array

1628   // Allocate the mask array for the node out of the BumpPtrAllocator, since
5475 // Copy from an SDUse array into an SDValue array for use with
5645 EVT *Array = Allocator.Allocate<EVT>(2);
5646 Array[0] = VT1;
5647 Array[1] = VT2;
5648 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
5664 EVT *Array = Allocator.Allocate<EVT>(3);
5665 Array[0] = VT1;
5666 Array[1] = VT2;
5667 Array[2] = VT3;
5668 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
5685 EVT *Array = Allocator.Allocate<EVT>(4);
5686 Array[0] = VT1;
5687 Array[1] = VT2;
5688 Array[2] = VT3;
5689 Array[3] = VT4;
5690 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
5707 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
5708 std::copy(VTs.begin(), VTs.end(), Array);
5709 Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
6012 // Swap for an appropriately sized array from the recycler.
6536 // The Uses array is sorted, so all the uses for a given User
6578 // A node with no uses, add it to the result array immediately.