Home | History | Annotate | Download | only in asmjs

Lines Matching refs:zone

13 #include "src/zone/zone-containers.h"
14 #include "src/zone/zone.h"
141 AsmFunctionType(Zone* zone, AsmType* return_type)
142 : return_type_(return_type), args_(zone) {}
168 explicit AsmOverloadedFunctionType(Zone* zone) : overloads_(zone) {}
241 static AsmType* Function(Zone* zone, AsmType* ret) {
242 AsmFunctionType* f = new (zone) AsmFunctionType(zone, ret);
248 static AsmType* OverloadedFunction(Zone* zone) {
249 auto* f = new (zone) AsmOverloadedFunctionType(zone);
254 static AsmType* FroundType(Zone* zone);
257 static AsmType* MinMaxType(Zone* zone, AsmType* dest, AsmType* src);
260 static AsmType* FFIType(Zone* zone) {
261 auto* f = new (zone) AsmFFIType();
266 static AsmType* FunctionTableType(Zone* zone, size_t length,
268 auto* f = new (zone) AsmFunctionTableType(length, signature);