pprof.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*****************************************************************************/
  2. /* PPROF.H v8.2.2 */
  3. /* */
  4. /* Copyright (c) 2007-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _PPROF_H
  38. #define _PPROF_H
  39. #include <linkage.h>
  40. #define PPROF_HANDLER_NAME "PPHNDL" /* DO NOT CHANGE THIS */
  41. #define PPROF_FILE_MAGIC "TI_PDD"
  42. #define PPROF_DSET_MAGIC "TIPPRD"
  43. #define PPROF_NUM_HDR_FIELDS 3
  44. #define PPROF_VERSION 1
  45. #define BIG_ENDIAN_CODE 2
  46. #define LITTLE_ENDIAN_CODE 1
  47. extern _CODE_ACCESS int __TI_prof_data_start;
  48. extern _CODE_ACCESS int __TI_prof_data_size;
  49. extern _CODE_ACCESS void __TI_pprof_out_hndl();
  50. /* Used by pprof user API */
  51. extern _CODE_ACCESS int __TI_enable_exit_profile_output;
  52. _CODE_ACCESS extern void __TI_init_pphandler();
  53. _CODE_ACCESS extern void _output_path_profile_info();
  54. #endif