mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
new_op.cc: Factor the calls to malloc, use __builtin_expect.
2014-05-17 Marc Glisse <marc.glisse@inria.fr> * libsupc++/new_op.cc: Factor the calls to malloc, use __builtin_expect. * libsupc++/new_opnt.cc: Likewise. From-SVN: r210560
This commit is contained in:
parent
86498dbaae
commit
80333d3d23
@ -1,3 +1,8 @@
|
||||
2014-05-17 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
* libsupc++/new_op.cc: Factor the calls to malloc, use __builtin_expect.
|
||||
* libsupc++/new_opnt.cc: Likewise.
|
||||
|
||||
2014-05-17 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/60966
|
||||
|
@ -46,14 +46,13 @@ operator new (std::size_t sz) _GLIBCXX_THROW (std::bad_alloc)
|
||||
/* malloc (0) is unpredictable; avoid it. */
|
||||
if (sz == 0)
|
||||
sz = 1;
|
||||
p = (void *) malloc (sz);
|
||||
while (p == 0)
|
||||
|
||||
while (__builtin_expect ((p = malloc (sz)) == 0, false))
|
||||
{
|
||||
new_handler handler = std::get_new_handler ();
|
||||
if (! handler)
|
||||
_GLIBCXX_THROW_OR_ABORT(bad_alloc());
|
||||
handler ();
|
||||
p = (void *) malloc (sz);
|
||||
}
|
||||
|
||||
return p;
|
||||
|
@ -39,8 +39,8 @@ operator new (std::size_t sz, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
|
||||
/* malloc (0) is unpredictable; avoid it. */
|
||||
if (sz == 0)
|
||||
sz = 1;
|
||||
p = (void *) malloc (sz);
|
||||
while (p == 0)
|
||||
|
||||
while (__builtin_expect ((p = malloc (sz)) == 0, false))
|
||||
{
|
||||
new_handler handler = std::get_new_handler ();
|
||||
if (! handler)
|
||||
@ -53,8 +53,6 @@ operator new (std::size_t sz, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
p = (void *) malloc (sz);
|
||||
}
|
||||
|
||||
return p;
|
||||
|
Loading…
x
Reference in New Issue
Block a user