VirtualBox

source: vbox/trunk/src/VBox/VMM/pure_test.sh@ 26234

Last change on this file since 26234 was 25884, checked in by vboxsync, 15 years ago

filemuncher

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1#!/bin/bash
2# $Id: pure_test.sh 25884 2010-01-18 11:39:41Z vboxsync $
3## @file
4# pure_test.sh - test the effect of __attribute__((pure)) on a set of
5# functions.
6#
7# Mark the functions with EXPERIMENT_PURE where the attribute normally would,
8# go update this script so it points to the right header and execute it. At
9# the end you'll get a pt-report.txt showing the fluctuations in the text size.
10#
11
12#
13# Copyright (C) 2010 Sun Microsystems, Inc.
14#
15# This file is part of VirtualBox Open Source Edition (OSE), as
16# available from http://www.virtualbox.org. This file is free software;
17# you can redistribute it and/or modify it under the terms of the GNU
18# General Public License (GPL) as published by the Free Software
19# Foundation, in version 2 as it comes in the "COPYING" file of the
20# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
21# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
22#
23# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
24# Clara, CA 95054 USA or visit http://www.sun.com if you need
25# additional information or have any questions.
26#
27
28set -e
29set -x
30
31BINDIR="../../../out/linux.amd64/release/bin/"
32DLLEXT="so"
33HEADER="../../../include/VBox/cpum.h"
34REPORT="pt-report.txt"
35
36test -e ${HEADER}.bak || kmk_cp $HEADER ${HEADER}.bak
37NAMES=`kmk_sed -e '/EXPERIMENT_PURE/!d' -e '/^#/d' -e 's/^[^()]*([^()]*)[[:space:]]*\([^() ]*\)(.*$/\1/' ${HEADER}.bak `
38echo NAMES=$NAMES
39
40
41#
42# baseline
43#
44kmk_sed -e 's/EXPERIMENT_PURE//' ${HEADER}.bak --output ${HEADER}
45kmk KBUILD_TYPE=release VBoxVMM VMMR0 VMMGC
46size ${BINDIR}/VMMR0.r0 ${BINDIR}/VMMGC.gc ${BINDIR}/VBoxVMM.${DLLEXT} > pt-baseline.txt
47
48exec < "pt-baseline.txt"
49read buf # ignore
50read buf; baseline_r0=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
51read buf; baseline_rc=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
52read buf; baseline_r3=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
53
54kmk_cp -f "pt-baseline.txt" "${REPORT}"
55kmk_printf -- "\n" >> "${REPORT}"
56kmk_printf -- "%7s %7s %7s Name\n" "VMMR0" "VMMGC" "VBoxVMM" >> "${REPORT}"
57kmk_printf -- "-------------------------------\n" >> "${REPORT}"
58kmk_printf -- "%7d %7d %7d baseline\n" ${baseline_r0} ${baseline_rc} ${baseline_r3} >> "${REPORT}"
59
60#
61# Now, do each of the names.
62#
63for name in $NAMES;
64do
65 kmk_sed \
66 -e '/'"${name}"'/s/EXPERIMENT_PURE/__attribute__((pure))/' \
67 -e 's/EXPERIMENT_PURE//' \
68 ${HEADER}.bak --output ${HEADER}
69 kmk KBUILD_TYPE=release VBoxVMM VMMR0 VMMGC
70 size ${BINDIR}/VMMR0.r0 ${BINDIR}/VMMGC.gc ${BINDIR}/VBoxVMM.${DLLEXT} > "pt-${name}.txt"
71
72 exec < "pt-${name}.txt"
73 read buf # ignore
74 read buf; cur_r0=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
75 read buf; cur_rc=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
76 read buf; cur_r3=`echo $buf | kmk_sed -e 's/^[[:space:]]*\([^[[:space:]]*\).*$/\1/' `
77 kmk_printf -- "%7d %7d %7d ${name}\n" \
78 `kmk_expr ${baseline_r0} - ${cur_r0} ` \
79 `kmk_expr ${baseline_rc} - ${cur_rc} ` \
80 `kmk_expr ${baseline_r3} - ${cur_r3} ` \
81 >> "${REPORT}"
82done
83
84# clean up
85kmk_mv -f ${HEADER}.bak ${HEADER}
86
87
88
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette