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

« back to all changes in this revision

Viewing changes to mozilla/xpcom/reflect/xptcall/src/md/unix/xptcinvoke_ppc_aix.cpp

  • 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: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
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 mozilla.org code.
 
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
 
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 NPL, 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 NPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/* Platform specific code to invoke XPCOM methods on native objects */
 
39
 
 
40
#include "xptcprivate.h"
 
41
 
 
42
#ifndef AIX
 
43
#error "This code is for PowerPC only"
 
44
#endif
 
45
 
 
46
extern "C" void
 
47
invoke_copy_to_stack(PRUint32* d, PRUint32 paramCount, nsXPTCVariant* s, double *fprData)
 
48
{
 
49
/*
 
50
    We need to copy the parameters for this function to locals and use them
 
51
    from there since the parameters occupy the same stack space as the stack
 
52
    we're trying to populate.
 
53
*/
 
54
    PRUint32 *l_d = d;
 
55
    nsXPTCVariant *l_s = s;
 
56
    PRUint32 l_paramCount = paramCount, fpCount = 0;
 
57
    double *l_fprData = fprData;
 
58
 
 
59
    typedef struct {
 
60
        uint32 hi;
 
61
        uint32 lo;
 
62
    } DU;               // have to move 64 bit entities as 32 bit halves since
 
63
                        // stack slots are not guaranteed 16 byte aligned
 
64
 
 
65
    for(uint32 i = 0; i < l_paramCount; i++, l_d++, l_s++)
 
66
    {
 
67
        if(l_s->IsPtrData())
 
68
        {
 
69
            *((void**)l_d) = l_s->ptr;
 
70
            continue;
 
71
        }
 
72
        switch(l_s->type)
 
73
        {
 
74
        case nsXPTType::T_I8     : *((int32*)  l_d) = l_s->val.i8;          break;
 
75
        case nsXPTType::T_I16    : *((int32*)  l_d) = l_s->val.i16;         break;
 
76
        case nsXPTType::T_I32    : *((int32*)  l_d) = l_s->val.i32;         break;
 
77
        case nsXPTType::T_I64    : 
 
78
        case nsXPTType::T_U64    :
 
79
            *((uint32*) l_d++) = ((DU *)l_s)->hi;
 
80
            *((uint32*) l_d) = ((DU *)l_s)->lo;
 
81
            break;
 
82
        case nsXPTType::T_DOUBLE :
 
83
            *((uint32*) l_d++) = ((DU *)l_s)->hi;
 
84
            *((uint32*) l_d) = ((DU *)l_s)->lo;
 
85
            if(fpCount < 13)
 
86
                l_fprData[fpCount++] = l_s->val.d;
 
87
            break;
 
88
        case nsXPTType::T_U8     : *((uint32*) l_d) = l_s->val.u8;          break;
 
89
        case nsXPTType::T_U16    : *((uint32*) l_d) = l_s->val.u16;         break;
 
90
        case nsXPTType::T_U32    : *((uint32*) l_d) = l_s->val.u32;         break;
 
91
        case nsXPTType::T_FLOAT  :
 
92
            *((float*)  l_d) = l_s->val.f;
 
93
            if(fpCount < 13)
 
94
                l_fprData[fpCount++] = l_s->val.f;
 
95
            break;
 
96
        case nsXPTType::T_BOOL   : *((PRBool*) l_d) = l_s->val.b;           break;
 
97
        case nsXPTType::T_CHAR   : *((uint32*) l_d) = l_s->val.c;           break;
 
98
        case nsXPTType::T_WCHAR  : *((int32*)  l_d) = l_s->val.wc;          break;
 
99
        default:
 
100
            // all the others are plain pointer types
 
101
            *((void**)l_d) = l_s->val.p;
 
102
            break;
 
103
        }
 
104
    }
 
105
}
 
106