2016-08-23 23:30:12 +02:00
|
|
|
//===- Caching.h - LLVM Link Time Optimizer Configuration -----------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-08-23 23:30:12 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-09-23 23:33:43 +02:00
|
|
|
// This file defines the localCache function, which allows clients to add a
|
|
|
|
// filesystem cache to ThinLTO.
|
2016-08-23 23:30:12 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LTO_CACHING_H
|
|
|
|
#define LLVM_LTO_CACHING_H
|
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
#include "llvm/LTO/LTO.h"
|
2016-08-23 23:30:12 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace lto {
|
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
/// This type defines the callback to add a pre-existing native object file
|
|
|
|
/// (e.g. in a cache).
|
2016-08-23 23:30:12 +02:00
|
|
|
///
|
2017-03-17 01:34:07 +01:00
|
|
|
/// Buffer callbacks must be thread safe.
|
2019-05-02 12:52:34 +02:00
|
|
|
using AddBufferFn =
|
|
|
|
std::function<void(unsigned Task, std::unique_ptr<MemoryBuffer> MB)>;
|
2016-08-23 23:30:12 +02:00
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
/// Create a local file system cache which uses the given cache directory and
|
2017-03-02 03:02:38 +01:00
|
|
|
/// file callback. This function also creates the cache directory if it does not
|
|
|
|
/// already exist.
|
|
|
|
Expected<NativeObjectCache> localCache(StringRef CacheDirectoryPath,
|
2017-03-17 01:34:07 +01:00
|
|
|
AddBufferFn AddBuffer);
|
2016-08-23 23:30:12 +02:00
|
|
|
|
|
|
|
} // namespace lto
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|