3 # Find holes in structures, so that we can pack them and improve our memory density.
5 # In order to make this work, you need to
6 # (1) Be operating in a workspace where you have a __NON-DEBUG__ build of LibreOffice, but __WITH SYMBOLS__.
7 # (A debug build has different sizes for some things in the standard library.)
8 # (2) First run the unusedfields loplugin to generate a log file
9 # (3) Install the pahole stuff into your gdb, I used this one:
10 # https://github.com/PhilArmstrong/pahole-gdb
11 # (4) Edit the loop near the top of the script to only produce results for one of our modules.
12 # Note that this will make GDB soak up about 8G of RAM, which is why I don't do more than one module at a time
14 # ./compilerplugins/clang/pahole-all-classes.py > ./compilerplugins/clang/pahole.results
24 # search for all the class names in the file produced by the unusedfields loplugin
25 #a = subprocess.Popen("grep 'definition:' workdir/loplugin.unusedfields.log | sort -u", stdout=subprocess.PIPE, shell=True)
26 a
= subprocess
.Popen("cat n1", stdout
=subprocess
.PIPE
, shell
=True)
29 classSourceLocDict
= dict()
32 tokens
= line
.decode('utf8').strip().split("\t")
33 className
= tokens
[2].strip()
34 srcLoc
= tokens
[5].strip()
35 # ignore things like unions
36 if "anonymous" in className
: continue
38 if className
in classSet
: continue
39 classSet
.add(className
)
40 classSourceLocDict
[className
] = srcLoc
43 # Some of the pahole commands are going to fail, and I cannot read the error stream and the input stream
44 # together because python has no way of (easily) doing a non-blocking read.
45 # So I have to write the commands out using a background thread, and then read the entire resulting
47 def write_pahole_commands(classes
):
48 for className
in classes
:
49 stdin
.write("echo " + className
+ " " + classSourceLocDict
[className
] + "\n")
50 stdin
.write("pahole " + className
+ "\n")
52 stdin
.write("echo all-done\n")
54 stdin
.close() # only way to make it flush the last echo command
56 # Use generator because lines often end up merged together in gdb's output, and we need
57 # to split them up, and that creates a mess in the parsing logic.
58 def read_generator(gdbOutput
):
60 line
= gdbOutput
.readline().decode('utf8').strip()
61 for split
in line
.split("(gdb)"):
63 if len(split
) == 0: continue
64 if "all-done" in split
: return
67 classList
= sorted(classSet
)
69 # Process 200 classes at a time, otherwise gdb's memory usage blows up and kills the machine
71 while len(classList
) > 0:
73 currClassList
= classList
[1:200];
74 classList
= classList
[200:]
76 gdbProc
= subprocess
.Popen("gdb", stdin
=subprocess
.PIPE
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.STDOUT
, shell
=True)
78 stdin
= io
.TextIOWrapper(gdbProc
.stdin
, 'utf-8')
80 # make gdb load all the debugging info
81 stdin
.write("set confirm off\n")
82 for filename
in sorted(os
.listdir('instdir/program')):
83 if filename
.endswith(".so"):
84 stdin
.write("add-symbol-file instdir/program/" + filename
+ "\n")
88 _thread
.start_new_thread( write_pahole_commands
, (currClassList
,) )
90 firstLineRegex
= re
.compile("/\*\s+(\d+)\s+\*/ struct")
91 fieldLineRegex
= re
.compile("/\*\s+(\d+)\s+(\d+)\s+\*/ ")
92 holeLineRegex
= re
.compile("/\* XXX (\d+) bit hole, try to pack \*/")
93 # sometimes pahole can't determine the size of a sub-struct, and then it returns bad data
94 bogusLineRegex
= re
.compile("/\*\s+\d+\s+0\s+\*/")
97 cumulativeHoleBits
= 0
99 foundBogusLine
= False
100 # pahole doesn't report space at the end of the structure, so work it out myself
102 for line
in read_generator(gdbProc
.stdout
):
103 structLines
.append(line
)
104 firstLineMatch
= firstLineRegex
.match(line
)
106 structSize
= int(firstLineMatch
.group(1))
107 holeLineMatch
= holeLineRegex
.match(line
)
110 cumulativeHoleBits
+= int(holeLineMatch
.group(1))
111 fieldLineMatch
= fieldLineRegex
.match(line
)
113 fieldSize
= int(fieldLineMatch
.group(2))
114 sizeOfFields
= int(fieldLineMatch
.group(1)) + fieldSize
115 if bogusLineRegex
.match(line
):
116 foundBogusLine
= True
118 # Ignore very large structs, packing those is not going to help much, and
119 # re-organising them can make them much less readable.
120 if foundHole
and len(structLines
) < 12 and structSize
< 100 and not foundBogusLine
:
121 # Verify that we have enough hole-space that removing it will result in a structure
122 # that still satisfies alignment requirements, otherwise the compiler will just put empty
123 # space at the end of the struct.
124 # TODO improve detection of the required alignment for a structure
125 potentialSpace
= (cumulativeHoleBits
/ 8) + (sizeOfFields
- structSize
)
126 if potentialSpace
>= 8:
127 for line
in structLines
:
129 if (sizeOfFields
- structSize
) > 0:
130 print("hole at end of struct: " + str(sizeOfFields
- structSize
))
134 cumulativeHoleBits
= 0
136 foundBogusLine
= False