~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/lib/msgc/src/win32gc.c

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* 
 
3
 * The contents of this file are subject to the Mozilla Public
 
4
 * License Version 1.1 (the "License"); you may not use this file
 
5
 * except in compliance with the License. You may obtain a copy of
 
6
 * the License at http://www.mozilla.org/MPL/
 
7
 * 
 
8
 * Software distributed under the License is distributed on an "AS
 
9
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
 * implied. See the License for the specific language governing
 
11
 * rights and limitations under the License.
 
12
 * 
 
13
 * The Original Code is the Netscape Portable Runtime (NSPR).
 
14
 * 
 
15
 * The Initial Developer of the Original Code is Netscape
 
16
 * Communications Corporation.  Portions created by Netscape are 
 
17
 * Copyright (C) 1998-2000 Netscape Communications Corporation.  All
 
18
 * Rights Reserved.
 
19
 * 
 
20
 * Contributor(s):
 
21
 * 
 
22
 * Alternatively, the contents of this file may be used under the
 
23
 * terms of the GNU General Public License Version 2 or later (the
 
24
 * "GPL"), in which case the provisions of the GPL are applicable 
 
25
 * instead of those above.  If you wish to allow use of your 
 
26
 * version of this file only under the terms of the GPL and not to
 
27
 * allow others to use your version of this file under the MPL,
 
28
 * indicate your decision by deleting the provisions above and
 
29
 * replace them with the notice and other provisions required by
 
30
 * the GPL.  If you do not delete the provisions above, a recipient
 
31
 * may use your version of this file under either the MPL or the
 
32
 * GPL.
 
33
 */
 
34
 
 
35
/*
 
36
 * GC related routines
 
37
 *
 
38
 */
 
39
#include <windows.h>
 
40
#include "prlog.h"
 
41
 
 
42
extern PRLogModuleInfo* _pr_msgc_lm;
 
43
 
 
44
#define GC_VMBASE               0x40000000
 
45
#define GC_VMLIMIT              0x00FFFFFF
 
46
 
 
47
/************************************************************************/
 
48
/*
 
49
** Machine dependent GC Heap management routines:
 
50
**    _MD_GrowGCHeap
 
51
*/
 
52
/************************************************************************/
 
53
 
 
54
void *baseaddr = (void*) GC_VMBASE;
 
55
void *lastaddr = (void*) GC_VMBASE;
 
56
 
 
57
void _MD_InitGC() {}
 
58
 
 
59
void *_MD_GrowGCHeap(PRUint32 *sizep)
 
60
{
 
61
    void *addr;
 
62
    size_t size;
 
63
 
 
64
    /* Reserve a block of memory for the GC */
 
65
    if( lastaddr == baseaddr ) {
 
66
        addr = VirtualAlloc( (void *)GC_VMBASE, GC_VMLIMIT, MEM_RESERVE, PAGE_READWRITE );
 
67
 
 
68
        /* 
 
69
        ** If the GC_VMBASE address is already mapped, then let the OS choose a 
 
70
        ** base address that is available...
 
71
        */
 
72
        if (addr == NULL) {
 
73
            addr = VirtualAlloc( NULL, GC_VMLIMIT, MEM_RESERVE, PAGE_READWRITE );
 
74
 
 
75
            baseaddr = lastaddr = addr;
 
76
            if (addr == NULL) {
 
77
                PR_LOG(_pr_msgc_lm, PR_LOG_ALWAYS, ("GC: unable to allocate heap: LastError=%ld",
 
78
                       GetLastError()));
 
79
                return 0;
 
80
            }
 
81
        }
 
82
    }
 
83
    size = *sizep;
 
84
 
 
85
    /* Extend the mapping */
 
86
    addr = VirtualAlloc( lastaddr, size, MEM_COMMIT, PAGE_READWRITE );
 
87
    if (addr == NULL) {
 
88
        return 0;
 
89
    }
 
90
 
 
91
    lastaddr = ((char*)addr + size);
 
92
    PR_LOG(_pr_msgc_lm, PR_LOG_ALWAYS,
 
93
           ("GC: heap extends from %08x to %08x",
 
94
            baseaddr, (long)baseaddr + (char*)lastaddr - (char*)baseaddr));
 
95
 
 
96
    return addr;
 
97
}
 
98
 
 
99
PRBool _MD_ExtendGCHeap(char *base, PRInt32 oldSize, PRInt32 newSize) {
 
100
  void* addr;
 
101
 
 
102
  addr = VirtualAlloc( base + oldSize, newSize - oldSize,
 
103
                       MEM_COMMIT, PAGE_READWRITE );
 
104
  if (NULL == addr) {
 
105
    PR_LOG(_pr_msgc_lm, PR_LOG_ALWAYS, ("GC: unable to extend heap: LastError=%ld",
 
106
                     GetLastError()));
 
107
    return PR_FALSE;
 
108
  }
 
109
  if (base + oldSize != (char*)addr) {
 
110
    PR_LOG(_pr_msgc_lm, PR_LOG_ALWAYS, ("GC: segment extension returned %x instead of %x",
 
111
                     addr, base + oldSize));
 
112
    VirtualFree(addr, newSize - oldSize, MEM_DECOMMIT);
 
113
    return PR_FALSE;
 
114
  }
 
115
  lastaddr = base + newSize;
 
116
  PR_LOG(_pr_msgc_lm, PR_LOG_ALWAYS,
 
117
         ("GC: heap now extends from %p to %p",
 
118
          base, base + newSize));
 
119
  return PR_TRUE;
 
120
}
 
121
 
 
122
 
 
123
void _MD_FreeGCSegment(void *base, PRInt32 len)
 
124
{
 
125
     (void)VirtualFree(base, 0, MEM_RELEASE);
 
126
}