brintos

brintos / llvm-project-archived public Read only

0
0
Text · 748 B · d994752 Raw
22 lines · c
1//===-------- Profiling.h - OpenMP interface ---------------------- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9//10//===----------------------------------------------------------------------===//11 12#ifndef OMPTARGET_DEVICERTL_PROFILING_H13#define OMPTARGET_DEVICERTL_PROFILING_H14 15extern "C" {16void __llvm_profile_register_function(void *Ptr);17void __llvm_profile_register_names_function(void *Ptr, long int I);18void __llvm_profile_instrument_memop(long int I, void *Ptr, int I2);19}20 21#endif22