summaryrefslogtreecommitdiffstats
path: root/xpcom/tests/SizeTest02.cpp
blob: 2673bbe70df0558be227f199114b70f371f37173 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Test02.cpp

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

NS_DEF_PTR(nsINode);

/*
        This test file compares the generated code size of similar functions
   between raw COM interface pointers (|AddRef|ing and |Release|ing by hand) and
   |nsCOMPtr|s.

        Function size results were determined by examining dissassembly of the
   generated code. mXXX is the size of the generated code on the Macintosh. wXXX
   is the size on Windows. For these tests, all reasonable optimizations were
   enabled and exceptions were disabled (just as we build for release).

        The tests in this file explore more complicated functionality: assigning
   a pointer to be reference counted into a [raw, nsCOMPtr] object using
   |QueryInterface|; ensuring that it is |AddRef|ed and |Release|d
   appropriately; calling through the pointer to a function supplied by the
   underlying COM interface.  The tests in this file expand on the tests in
   "Test01.cpp" by adding |QueryInterface|.

        Windows:
                raw01
   52 nsCOMPtr							 63 raw
   66 nsCOMPtr*							 68

        Macintosh:
                nsCOMPtr 120 	(1.0000) Raw01
   128		(1.1429)	i.e., 14.29% bigger than nsCOMPtr Raw00
   144		(1.2000)
*/

void  // nsresult
Test02_Raw00(nsISupports* aDOMNode, nsString* aResult)
// m144, w66
{
  // -- the following code is assumed, but is commented out so we compare only
  //		 the relevent generated code

  //		if ( !aDOMNode )
  //			return NS_ERROR_NULL_POINTER;

  nsINode* node = 0;
  nsresult status =
      aDOMNode->QueryInterface(NS_GET_IID(nsINode), (void**)&node);
  if (NS_SUCCEEDED(status)) {
    node->GetNodeName(*aResult);
  }

  NS_IF_RELEASE(node);

  //		return status;
}

void  // nsresult
Test02_Raw01(nsISupports* aDOMNode, nsString* aResult)
// m128, w52
{
  //		if ( !aDOMNode )
  //			return NS_ERROR_NULL_POINTER;

  nsINode* node;
  nsresult status =
      aDOMNode->QueryInterface(NS_GET_IID(nsINode), (void**)&node);
  if (NS_SUCCEEDED(status)) {
    node->GetNodeName(*aResult);
    NS_RELEASE(node);
  }

  //		return status;
}

void  // nsresult
Test02_nsCOMPtr(nsISupports* aDOMNode, nsString* aResult)
// m120, w63/68
{
  nsresult status;
  nsCOMPtr<nsINode> node = do_QueryInterface(aDOMNode, &status);

  if (node) node->GetNodeName(*aResult);

  //		return status;
}