~ubuntu-branches/ubuntu/gutsy/virtualbox-ose/gutsy

« back to all changes in this revision

Viewing changes to src/libs/xpcom18a4/nsprpub/pr/src/md/os2/os2gc.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-09-08 16:44:58 UTC
  • Revision ID: james.westby@ubuntu.com-20070908164458-wao29470vqtr8ksy
Tags: upstream-1.5.0-dfsg2
ImportĀ upstreamĀ versionĀ 1.5.0-dfsg2

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
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Mozilla Public License Version
 
6
 * 1.1 (the "License"); you may not use this file except in compliance with
 
7
 * the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/MPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is the Netscape Portable Runtime (NSPR).
 
16
 *
 
17
 * The Initial Developer of the Original Code is
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998-2000
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the MPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the MPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/*
 
39
 * GC related routines
 
40
 *
 
41
 */
 
42
#include "primpl.h"
 
43
 
 
44
PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np) 
 
45
{
 
46
    CONTEXTRECORD context;
 
47
    context.ContextFlags = CONTEXT_INTEGER;
 
48
 
 
49
    if (_PR_IS_NATIVE_THREAD(t)) {
 
50
        context.ContextFlags |= CONTEXT_CONTROL;
 
51
        if (QueryThreadContext(t->md.handle, CONTEXT_CONTROL, &context)) {
 
52
            t->md.gcContext[0] = context.ctx_RegEax;
 
53
            t->md.gcContext[1] = context.ctx_RegEbx;
 
54
            t->md.gcContext[2] = context.ctx_RegEcx;
 
55
            t->md.gcContext[3] = context.ctx_RegEdx;
 
56
            t->md.gcContext[4] = context.ctx_RegEsi;
 
57
            t->md.gcContext[5] = context.ctx_RegEdi;
 
58
            t->md.gcContext[6] = context.ctx_RegEsp;
 
59
            t->md.gcContext[7] = context.ctx_RegEbp;
 
60
            *np = PR_NUM_GCREGS;
 
61
        } else {
 
62
            PR_ASSERT(0);/* XXX */
 
63
        }
 
64
    }
 
65
    return (PRWord *)&t->md.gcContext;
 
66
}
 
67
 
 
68
/* This function is not used right now, but is left as a reference.
 
69
 * If you ever need to get the fiberID from the currently running fiber, 
 
70
 * this is it.
 
71
 */
 
72
void *
 
73
GetMyFiberID()
 
74
{
 
75
    void *fiberData = 0;
 
76
 
 
77
    /* A pointer to our tib entry is found at FS:[18]
 
78
     * At offset 10h is the fiberData pointer.  The context of the 
 
79
     * fiber is stored in there.  
 
80
     */
 
81
#ifdef HAVE_ASM
 
82
    __asm {
 
83
        mov    EDX, FS:[18h]
 
84
        mov    EAX, DWORD PTR [EDX+10h]
 
85
        mov    [fiberData], EAX
 
86
    }
 
87
#endif
 
88
  
 
89
    return fiberData;
 
90
}