/* Copyright 2025 The OpenXLA Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

#ifndef XLA_CODEGEN_INTRINSIC_LIB_H_
#define XLA_CODEGEN_INTRINSIC_LIB_H_

#include <memory>
#include <vector>

#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
#include "absl/strings/string_view.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/IR/Module.h"
#include "xla/codegen/intrinsic/cpp/cpp_gen_intrinsics.h"
#include "xla/codegen/intrinsic/intrinsic.h"
#include "xla/codegen/intrinsic_function.h"
#include "xla/xla_data.pb.h"

namespace xla::codegen {

// A library of intrinsic functions and math approximations.
// The library hooks into LLVM compilation in two places:
// 1. It provides a set of VecDescs that are used to replace LLVM
// intrinsics
//    with calls to vectorized approximations.
// 2. After optimization has been run, we must scan the module
//    for calls to the approximations and generate+insert the appropriate
//    function definitions in the module.
// Retains storage of the strings required for VecDescs in the instance.
class IntrinsicFunctionLib {
 public:
  explicit IntrinsicFunctionLib(const intrinsics::IntrinsicOptions& options);

  // Returns a vector of vectorization information for functions that have
  // vectorized approximations. This enables LLVM vectorization
  // passes to vectorize scalar math functions to custom function calls.
  // No definitions are generated by this function.
  std::vector<llvm::VecDesc> Vectorizations();

  // Inserts xla.* intrinsic function definitions into the module.
  // Will insert definitions marked as always inline and then run LLVM inliner,
  // constant propagation and early CSE passes to remove dead code.
  // Returns the set of function names that were replaced.
  absl::flat_hash_set<absl::string_view> DefineIntrinsicFunctions(
      llvm::Module& module);

  bool IsIntrinsicFunction(absl::string_view function_name) const;

 private:
  std::vector<std::unique_ptr<IntrinsicFunction>> intrinsic_functions_;
  absl::flat_hash_map<absl::string_view, absl::string_view> targets_;
  const intrinsics::IntrinsicOptions options_;
  std::vector<std::unique_ptr<CppGenIntrinsicLibrary>> ir_libraries_;
};

}  // namespace xla::codegen

#endif  // XLA_CODEGEN_INTRINSIC_LIB_H_
