Home
last modified time | relevance | path

Searched refs:saveBuffer (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lld/ELF/
H A DLTO.cpp350 saveBuffer(buf[0], config->ltoObjPath); in compile()
364 saveBuffer(buf[0], config->ltoObjPath); in compile()
366 saveBuffer(buf[i], config->ltoObjPath + Twine(i)); in compile()
371 saveBuffer(buf[0], config->outputFile + ".lto.o"); in compile()
373 saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o"); in compile()
377 saveBuffer(buf[0], config->outputFile); in compile()
379 saveBuffer(buf[i], config->outputFile + Twine(i)); in compile()
/llvm-project-15.0.7/lld/MachO/
H A DLTO.cpp136 saveBuffer(buf[0], config->outputFile + ".lto.o"); in compile()
138 saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o"); in compile()
170 saveBuffer(buf[i], filePath); in compile()
/llvm-project-15.0.7/lld/wasm/
H A DLTO.cpp153 saveBuffer(buf[i], config->outputFile + ".lto.o"); in compile()
155 saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o"); in compile()
/llvm-project-15.0.7/lld/COFF/
H A DLTO.cpp194 saveBuffer(buf[0], config->ltoObjPath); in compile()
226 saveBuffer(buf[i], ltoObjName); in compile()
/llvm-project-15.0.7/lld/include/lld/Common/
H A DStrings.h33 void saveBuffer(llvm::StringRef buffer, const llvm::Twine &path);
/llvm-project-15.0.7/lld/Common/
H A DStrings.cpp71 void lld::saveBuffer(StringRef buffer, const Twine &path) { in saveBuffer() function in lld