Lines Matching refs:Zone
41 new (test->zone()) Graph(test->zone()),
42 MakeCallDescriptor(test->zone(), return_type),
49 test->isolate(), new (test->zone()) Graph(test->zone()),
50 MakeCallDescriptor(test->zone(), return_type, parameter0_type),
57 test->isolate(), new (test->zone()) Graph(test->zone()),
58 MakeCallDescriptor(test->zone(), return_type, parameter0_type,
67 test->isolate(), new (test->zone()) Graph(test->zone()),
68 MakeCallDescriptor(test->zone(), return_type, parameter0_type,
92 CallDescriptor* MakeCallDescriptor(Zone* zone, MachineType return_type) {
93 MachineSignature::Builder builder(zone, 1, 0);
95 return Linkage::GetSimplifiedCDescriptor(zone, builder.Build());
98 CallDescriptor* MakeCallDescriptor(Zone* zone, MachineType return_type,
100 MachineSignature::Builder builder(zone, 1, 1);
103 return Linkage::GetSimplifiedCDescriptor(zone, builder.Build());
106 CallDescriptor* MakeCallDescriptor(Zone* zone, MachineType return_type,
109 MachineSignature::Builder builder(zone, 1, 2);
113 return Linkage::GetSimplifiedCDescriptor(zone, builder.Build());
116 CallDescriptor* MakeCallDescriptor(Zone* zone, MachineType return_type,
120 MachineSignature::Builder builder(zone, 1, 3);
125 return Linkage::GetSimplifiedCDescriptor(zone, builder.Build());