OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libstdc++-v3/] [testsuite/] [ext/] [profile/] [mh.cc] - Blame information for rev 424

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// { dg-options "-D_GLIBCXX_PROFILE" }
2
// { dg-do compile { target *-*-linux* } }
3
 
4
// -*- C++ -*-
5
 
6
// Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
7
//
8
// This file is part of the GNU ISO C++ Library.  This library is free
9
// software; you can redistribute it and/or modify it under the
10
// terms of the GNU General Public License as published by the
11
// Free Software Foundation; either version 3, or (at your option)
12
// any later version.
13
//
14
// This library is distributed in the hope that it will be useful,
15
// but WITHOUT ANY WARRANTY; without even the implied warranty of
16
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
// GNU General Public License for more details.
18
//
19
// You should have received a copy of the GNU General Public License along
20
// with this library; see the file COPYING3.  If not see
21
// <http://www.gnu.org/licenses/>.
22
 
23
#include <stdio.h>
24
#include <malloc.h>
25
#include <vector>
26
 
27
using std::vector;
28
 
29
static void my_init_hook (void);
30
static void *my_malloc_hook (size_t, const void *);
31
typedef void* (*malloc_hook) (size_t, const void *);
32
 
33
malloc_hook old_malloc_hook;
34
 
35
void (*__malloc_initialize_hook) (void) = my_init_hook;
36
 
37
static void
38
my_init_hook (void)
39
{
40
  old_malloc_hook = __malloc_hook;
41
  __malloc_hook = my_malloc_hook;
42
}
43
 
44
static void *
45
my_malloc_hook (size_t size, const void *caller)
46
{
47
  void *result;
48
  __malloc_hook = old_malloc_hook;
49
  result = malloc (size);
50
  old_malloc_hook = __malloc_hook;
51
 
52
  // With _GLIBCXX_PROFILE, the instrumentation of the vector constructor
53
  // will call back into malloc.
54
  vector<int> v;
55
 
56
  __malloc_hook = my_malloc_hook;
57
  return result;
58
}
59
 
60
 
61
int main()
62
{
63
  int* test = (int*) malloc(sizeof(int));
64
  *test = 1;
65
  return *test;
66
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.