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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [host-darwin.c] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/* Darwin host-specific hook definitions.
/* Darwin host-specific hook definitions.
   Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
   Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
 
 
   This file is part of GCC.
   This file is part of GCC.
 
 
   GCC is free software; you can redistribute it and/or modify it
   GCC is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published
   under the terms of the GNU General Public License as published
   by the Free Software Foundation; either version 3, or (at your
   by the Free Software Foundation; either version 3, or (at your
   option) any later version.
   option) any later version.
 
 
   GCC is distributed in the hope that it will be useful, but WITHOUT
   GCC is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.
   License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with GCC; see the file COPYING3.  If not see
   along with GCC; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */
   <http://www.gnu.org/licenses/>.  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "coretypes.h"
#include "coretypes.h"
#include <sys/mman.h>
#include <sys/mman.h>
#include "toplev.h"
#include "toplev.h"
#include "config/host-darwin.h"
#include "config/host-darwin.h"
 
 
/* Yes, this is really supposed to work.  */
/* Yes, this is really supposed to work.  */
static char pch_address_space[1024*1024*1024] __attribute__((aligned (4096)));
static char pch_address_space[1024*1024*1024] __attribute__((aligned (4096)));
 
 
/* Return the address of the PCH address space, if the PCH will fit in it.  */
/* Return the address of the PCH address space, if the PCH will fit in it.  */
 
 
void *
void *
darwin_gt_pch_get_address (size_t sz, int fd ATTRIBUTE_UNUSED)
darwin_gt_pch_get_address (size_t sz, int fd ATTRIBUTE_UNUSED)
{
{
  if (sz <= sizeof (pch_address_space))
  if (sz <= sizeof (pch_address_space))
    return pch_address_space;
    return pch_address_space;
  else
  else
    return NULL;
    return NULL;
}
}
 
 
/* Check ADDR and SZ for validity, and deallocate (using munmap) that part of
/* Check ADDR and SZ for validity, and deallocate (using munmap) that part of
   pch_address_space beyond SZ.  */
   pch_address_space beyond SZ.  */
 
 
int
int
darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off)
darwin_gt_pch_use_address (void *addr, size_t sz, int fd, size_t off)
{
{
  const size_t pagesize = getpagesize();
  const size_t pagesize = getpagesize();
  void *mmap_result;
  void *mmap_result;
  int ret;
  int ret;
 
 
  gcc_assert ((size_t)pch_address_space % pagesize == 0
  gcc_assert ((size_t)pch_address_space % pagesize == 0
              && sizeof (pch_address_space) % pagesize == 0);
              && sizeof (pch_address_space) % pagesize == 0);
 
 
  ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
  ret = (addr == pch_address_space && sz <= sizeof (pch_address_space));
  if (! ret)
  if (! ret)
    sz = 0;
    sz = 0;
 
 
  /* Round the size to a whole page size.  Normally this is a no-op.  */
  /* Round the size to a whole page size.  Normally this is a no-op.  */
  sz = (sz + pagesize - 1) / pagesize * pagesize;
  sz = (sz + pagesize - 1) / pagesize * pagesize;
 
 
  if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
  if (munmap (pch_address_space + sz, sizeof (pch_address_space) - sz) != 0)
    fatal_error ("couldn't unmap pch_address_space: %m");
    fatal_error ("couldn't unmap pch_address_space: %m");
 
 
  if (ret)
  if (ret)
    {
    {
      mmap_result = mmap (addr, sz,
      mmap_result = mmap (addr, sz,
                          PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED,
                          PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED,
                          fd, off);
                          fd, off);
 
 
      /* The file might not be mmap-able.  */
      /* The file might not be mmap-able.  */
      ret = mmap_result != (void *) MAP_FAILED;
      ret = mmap_result != (void *) MAP_FAILED;
 
 
      /* Sanity check for broken MAP_FIXED.  */
      /* Sanity check for broken MAP_FIXED.  */
      gcc_assert (!ret || mmap_result == addr);
      gcc_assert (!ret || mmap_result == addr);
    }
    }
 
 
  return ret;
  return ret;
}
}
 
 

powered by: WebSVN 2.1.0

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