summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/SizeTest04.cpp
blob: c026a1cabf29148c063405987157c2c136adaa3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Test04.cpp

#include "nsINode.h"
#include "nsCOMPtr.h"

NS_DEF_PTR(nsINode);

/*
        Windows:
                nsCOMPtr 13 raw
   36

        Macintosh:
                nsCOMPtr
   36 bytes		(1.0000) raw
   120					(3.3333)	i.e., 333.33% bigger
   than nsCOMPtr
*/

class Test04_Raw {
 public:
  Test04_Raw();
  ~Test04_Raw();

  void /*nsresult*/ SetNode(nsINode* newNode);

 private:
  nsINode* mNode;
};

Test04_Raw::Test04_Raw() : mNode(0) {
  // nothing else to do here
}

Test04_Raw::~Test04_Raw() { NS_IF_RELEASE(mNode); }

void  // nsresult
Test04_Raw::SetNode(nsINode* newNode)
// m120, w36
{
  NS_IF_ADDREF(newNode);
  NS_IF_RELEASE(mNode);
  mNode = newNode;

  //		return NS_OK;
}

class Test04_nsCOMPtr {
 public:
  void /*nsresult*/ SetNode(nsINode* newNode);

 private:
  nsCOMPtr<nsINode> mNode;
};

void  // nsresult
Test04_nsCOMPtr::SetNode(nsINode* newNode)
// m36, w13/13
{
  mNode = newNode;
}