Lines Matching defs:sig
63 const FunctionSig* sig; // signature of the function.
191 explicit WasmTag(const WasmTagSig* sig) : sig(sig) {}
192 const FunctionSig* ToFunctionSig() const { return sig; }
194 const WasmTagSig* sig; // type signature of the tag.
353 TypeDefinition(const FunctionSig* sig, uint32_t supertype)
354 : function_sig(sig), supertype(supertype), kind(kFunction) {}
452 void add_signature(const FunctionSig* sig, uint32_t supertype) {
453 DCHECK_NOT_NULL(sig);
454 add_type(TypeDefinition(sig, supertype));
564 // Returns the wrapper index for a function in {module} with signature {sig}
567 int GetExportWrapperIndex(const WasmModule* module, const FunctionSig* sig,
648 Handle<JSObject> GetTypeForFunction(Isolate* isolate, const FunctionSig* sig,