Lines Matching refs:Functions
300 void writeFunctionSection(ArrayRef<WasmFunction> Functions);
305 ArrayRef<WasmFunction> Functions);
317 updateCustomSectionRelocations(const SmallVector<WasmFunction, 4> &Functions,
778 void WasmObjectWriter::writeFunctionSection(ArrayRef<WasmFunction> Functions) { in writeFunctionSection() argument
779 if (Functions.empty()) in writeFunctionSection()
785 encodeULEB128(Functions.size(), W.OS); in writeFunctionSection()
786 for (const WasmFunction &Func : Functions) in writeFunctionSection()
869 ArrayRef<WasmFunction> Functions) { in writeCodeSection() argument
870 if (Functions.empty()) in writeCodeSection()
877 encodeULEB128(Functions.size(), W.OS); in writeCodeSection()
879 for (const WasmFunction &Func : Functions) { in writeCodeSection()
1156 SmallVector<WasmFunction, 4> Functions; in writeObject() local
1328 Index = NumFunctionImports + Functions.size(); in writeObject()
1333 Functions.push_back(Func); in writeObject()
1573 writeFunctionSection(Functions); in writeObject()
1580 writeCodeSection(Asm, Layout, Functions); in writeObject()