InstrumentingCompiler.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4723 524785227024
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4354
c913006e209f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
     1
"{ Encoding: utf8 }"
c913006e209f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
     2
4126
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     3
"
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     4
 COPYRIGHT (c) 2010 by Claus Gittinger
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     5
              All Rights Reserved
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     6
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     7
 This software is furnished under a license and may be used
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     8
 only in accordance with the terms of that license and with the
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
    10
 be provided or otherwise made available to, or used by, any
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
    11
 other person.  No title to or ownership of the software is
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
    12
 hereby transferred.
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
    13
"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libcomp' }"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
3570
0ac6e8f11416 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
    16
"{ NameSpace: Smalltalk }"
0ac6e8f11416 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
    17
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
ByteCodeCompiler subclass:#InstrumentingCompiler
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    19
	instanceVariableNames:'method methodEntryInfo blockInvocationInfo'
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    20
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    21
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    22
	category:'System-Compiler-Instrumentation'
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
2634
Claus Gittinger <cg@exept.de>
parents: 2632
diff changeset
    25
InstrumentationInfo subclass:#StatementExecutionInfo
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
    26
	instanceVariableNames:'startPosition endPosition count'
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    27
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    28
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    29
	privateIn:InstrumentingCompiler
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
    30
!
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
    31
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    32
InstrumentingCompiler::StatementExecutionInfo subclass:#StatementExecutionInfoForCoverageInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    33
	instanceVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    34
	classVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    35
	poolDictionaries:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    36
	privateIn:InstrumentingCompiler::StatementExecutionInfo
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    37
!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    38
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    39
InstrumentingCompiler::StatementExecutionInfo subclass:#StatementExecutionInfoInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    40
	instanceVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    41
	classVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    42
	poolDictionaries:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    43
	privateIn:InstrumentingCompiler::StatementExecutionInfo
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    44
!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    45
2635
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
    46
InstrumentationInfo subclass:#MethodInvocationInfo
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
    47
	instanceVariableNames:'count recursiveEntry infoPerReceiverClass'
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    48
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    49
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    50
	privateIn:InstrumentingCompiler
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
Object subclass:#MethodInvocationInfoPerReceiverClass
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    54
	instanceVariableNames:'infoPerSendingMethod'
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    55
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    56
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    57
	privateIn:InstrumentingCompiler::MethodInvocationInfo
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
Object subclass:#MethodInvocationInfoPerSendingMethod
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    61
	instanceVariableNames:'countPerSendersClass invokedViaPerform'
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    62
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    63
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    64
	privateIn:InstrumentingCompiler::MethodInvocationInfo::MethodInvocationInfoPerReceiverClass
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
    65
!
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
    66
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
    67
InstrumentingCompiler::MethodInvocationInfo subclass:#MethodInvocationInfoForCoverageInAlreadyEnteredState
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    68
	instanceVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    69
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    70
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    71
	privateIn:InstrumentingCompiler
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
    74
InstrumentingCompiler::MethodInvocationInfo subclass:#MethodInvocationInfoInAlreadyEnteredState
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    75
	instanceVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    76
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    77
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    78
	privateIn:InstrumentingCompiler
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
    79
!
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
    80
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
    81
InstrumentingCompiler::StatementExecutionInfo subclass:#VariableAccessExecutionInfo
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    82
	instanceVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    83
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    84
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    85
	privateIn:InstrumentingCompiler
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
    86
!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
    87
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
    88
InstrumentingCompiler::StatementExecutionInfo subclass:#BlockExecutionInfo
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
    89
	instanceVariableNames:''
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    90
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    91
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
    92
	privateIn:InstrumentingCompiler
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
    93
!
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
    94
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    95
InstrumentingCompiler::BlockExecutionInfo subclass:#BlockExecutionInfoForCoverageInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    96
	instanceVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    97
	classVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    98
	poolDictionaries:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
    99
	privateIn:InstrumentingCompiler::BlockExecutionInfo
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   100
!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   101
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   102
InstrumentingCompiler::BlockExecutionInfo subclass:#BlockExecutionInfoInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   103
	instanceVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   104
	classVariableNames:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   105
	poolDictionaries:''
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   106
	privateIn:InstrumentingCompiler::BlockExecutionInfo
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   107
!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   108
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   109
InstrumentingCompiler::VariableAccessExecutionInfo subclass:#ReadAccessExecutionInfo
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   110
	instanceVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   111
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   112
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   113
	privateIn:InstrumentingCompiler
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   114
!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   115
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   116
InstrumentingCompiler::VariableAccessExecutionInfo subclass:#WriteAccessExecutionInfo
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   117
	instanceVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   118
	classVariableNames:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   119
	poolDictionaries:''
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   120
	privateIn:InstrumentingCompiler
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   121
!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   122
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!InstrumentingCompiler class methodsFor:'documentation'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
4126
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   125
copyright
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   126
"
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   127
 COPYRIGHT (c) 2010 by Claus Gittinger
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   128
              All Rights Reserved
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   129
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   130
 This software is furnished under a license and may be used
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   131
 only in accordance with the terms of that license and with the
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   132
 inclusion of the above copyright notice.   This software may not
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   133
 be provided or otherwise made available to, or used by, any
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   134
 other person.  No title to or ownership of the software is
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   135
 hereby transferred.
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   136
"
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   137
!
319760fc7900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   138
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
documentation
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
"
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   141
    an experiment - recompile classes using this compiler adds instrumentation code.
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   142
    This remembers who calls a method from where (methodInvocationInfo) what the receiver's types are
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   143
    (inherited classes) and how often basic blocks (blockExecutionInfo) and statements 
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   144
    (statementExecutionInfo) are invoked .
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   145
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   146
    The who-calls and receiver type info may produce some overhead, which can be avoided by 
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   147
    using the somewhat more naive InstrumentingForSimpleCoverageCompiler (that is what people are
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   148
    used to from the C/Java world, anyway).
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   149
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   150
    From the first bulk, we can compute the inheritanceCoverage info (which methods have been called for which
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   151
    subclass) in addition to the known line and block coverages.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
4625
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   155
!InstrumentingCompiler class methodsFor:'cleanup'!
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   156
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   157
cleanAllInfos
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   158
    InstrumentationInfo cleanAllInfoWithChange:false.
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   159
    MethodInvocationInfo cleanAllInfoWithChange:false.
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   160
! !
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   161
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!InstrumentingCompiler class methodsFor:'compilation-public'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
compileClass:aClass
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
    "compile all methods of aClass with instrumentation"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
2958
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   167
    aClass instAndClassMethodsDo:[:eachMethod |
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
        self compileMethod:eachMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
compileMethod:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
    "compile a single method with instrumentation"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
4624
479f44a9715f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
   175
    aMethod isInstrumented ifTrue:[^ self].      
4620
b3fff8f79239 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4538
diff changeset
   176
    aMethod hasPrimitiveCode ifTrue:[^ self].
b3fff8f79239 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4538
diff changeset
   177
    aMethod isSubclassResponsibility ifTrue:[^ self].      
b3fff8f79239 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4538
diff changeset
   178
    (aMethod hasAnnotation:#noCoverage) ifTrue:[^ self].      
4625
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   179
    ClassLoadInProgressQuery answer:true do:[
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   180
        Error handle:[:ex |
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   181
            Transcript showCR:'error instrumenting: %1' with:aMethod.
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   182
            Transcript showCR:'    %1' with:ex description.
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   183
            ex reject.
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   184
        ] do:[
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   185
            Class withoutUpdatingChangesDo:[
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   186
                Class packageQuerySignal answer: aMethod package do:[
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   187
                    self 
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   188
                        compile:(aMethod source)
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   189
                        forClass:(aMethod mclass) 
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   190
                        inCategory:(aMethod category)
9842c7352cba #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
   191
                ]
4621
cf9b7c0d6fbf #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4620
diff changeset
   192
            ]
3237
a6b2f875bcc3 Fix in InstrumentingCompiler>>#compileMethod:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3192
diff changeset
   193
        ]
2972
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   194
    ]
2958
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   195
!
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   196
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   197
compilePackage:aPackageID
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   198
    "compile all classes of a package instrumentation"
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   199
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   200
    Smalltalk allClassesInPackage:aPackageID do:[:eachClass |
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   201
        self compileClass:eachClass
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   202
    ].
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   203
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   204
    "
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   205
     InstrumentingCompiler compilePackage:'exept:workflow'.
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   206
     InstrumentingCompiler compilePackage:'exept:expecco'.
4bb6acd04cfe added: #compilePackage:
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   207
    "
2972
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   208
!
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   209
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   210
compilePackages:aCollectionOfPackageIDs
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   211
    "compile all classes of some packages with instrumentation"
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   212
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   213
    aCollectionOfPackageIDs do:[:eachPackage |
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   214
        self compilePackage:eachPackage
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   215
    ].
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   216
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   217
    "
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   218
     InstrumentingCompiler compilePackages:#( 'exept:workflow' 'exept:expecco' ).
204f077ff866 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
   219
    "
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
!InstrumentingCompiler class methodsFor:'special'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
allInstrumentedMethods
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
    ^ InstrumentedMethod allInstances 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
     self allInstrumentedMethods
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
    "Modified: / 27-04-2010 / 13:37:51 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
callersOf:aMethod do:aBlock
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   235
    "enumerate all callers of aMethod into a block"
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   236
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
    |info|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
    info := aMethod methodInvocationInfo.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
    info notNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
        info callingMethodsDo:[:callingMethod |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
            aBlock value:callingMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
        ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
    ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
    "Modified: / 27-04-2010 / 13:35:00 / cg"
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   247
    "Modified (comment): / 07-08-2011 / 15:08:33 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
isInstrumented:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
    ^ aMethod isInstrumented
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   253
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
     self methodInfoOf:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
    "Modified: / 27-04-2010 / 13:35:21 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
methodInfoOf:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
    <resource: #obsolete>
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
    self obsoleteMethodWarning:'please use Method >> methodInvocationInfo'.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
    ^ aMethod methodInvocationInfo
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
     self methodInfoOf:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   268
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
    "Modified: / 27-04-2010 / 13:37:31 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
methodInvocationInfoOf:aMethod
3192
4a3a9fa54b94 class: InstrumentingCompiler
Stefan Vogel <sv@exept.de>
parents: 2981
diff changeset
   274
    <resource: #obsolete>
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
    self obsoleteMethodWarning:'please use method>>methodInvocationInfo'.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
    ^ aMethod methodInvocationInfo
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
     self methodInfoOf:aMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
    "
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
    "Created: / 27-04-2010 / 12:28:56 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
    "Modified: / 27-04-2010 / 13:34:36 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
!InstrumentingCompiler methodsFor:'code generation helpers'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
addBlockCounterTo:aBlockNode
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   289
    "called by the compiler to instrument a block node"
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   290
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
    |countCode blockEntryInfo|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
    blockInvocationInfo isNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
        blockInvocationInfo := OrderedCollection new.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
    ].
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   296
    blockEntryInfo := self blockExecutionInfoInstance.
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   297
    blockEntryInfo startPosition:aBlockNode startPosition endPosition:aBlockNode endPosition.
2675
3e8368ea406e comment/format in: #addBlockCounterTo:
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
   298
"/    Transcript show:aBlockNode startPosition;
3e8368ea406e comment/format in: #addBlockCounterTo:
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
   299
"/     show:' -> ';
3e8368ea406e comment/format in: #addBlockCounterTo:
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
   300
"/     showCR: aBlockNode endPosition.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
    blockInvocationInfo add:blockEntryInfo.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
    countCode := 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
        StatementNode 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
            expression:(MessageNode 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
                            receiver:(ConstantNode value:blockEntryInfo)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
                            selector:#entry:
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
                            arg:(VariableNode type:#ThisContext context:contextToEvaluateIn)).
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
    aBlockNode isEmptyBlock ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
        "/ q: are we interested in empty blocks ?
2665
2071b01a050f changed: #addBlockCounterTo:
Claus Gittinger <cg@exept.de>
parents: 2635
diff changeset
   312
        countCode nextStatement:(StatementNode expression:(ConstantNode value:nil)).
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
        aBlockNode statements:countCode.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   314
    ] ifFalse:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
        countCode nextStatement:aBlockNode statements.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
        aBlockNode statements:countCode.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
2675
3e8368ea406e comment/format in: #addBlockCounterTo:
Claus Gittinger <cg@exept.de>
parents: 2665
diff changeset
   319
    "Modified: / 21-08-2011 / 16:02:52 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
addBlockCountersToEachBlockIn:aCollection
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   323
    "called by the compiler to instrument a collection of block nodes"
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   324
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   325
    aCollection do:[:eachNode |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
        eachNode isBlockNode ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   327
            self addBlockCounterTo:eachNode
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
        ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
    "Created: / 27-04-2010 / 11:47:56 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   333
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   334
createMethod
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   335
    "called by the compiler to instatiate a new method instance"
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   336
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
    method := super createMethod.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   339
    methodEntryInfo notNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
        methodEntryInfo owningMethod:method    
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   341
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   342
    blockInvocationInfo notNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   343
        blockInvocationInfo do:[:eachInfo | eachInfo owningMethod:method]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
    ^ method
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   347
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   348
    "Modified: / 27-04-2010 / 14:04:50 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   349
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   350
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   351
methodClass
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   352
    "called by the compiler to ask for the method instance's class"
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   353
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   354
    ^ InstrumentedMethod
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   355
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   356
    "Created: / 27-04-2010 / 12:17:22 / cg"
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   357
!
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   358
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   359
statementCounterBefore:aStatementNode
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   360
    "called by the compiler to instrument a statement node (head of a basic block)"
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   361
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   362
    |countCode statementEntryInfo|
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   363
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   364
    blockInvocationInfo isNil ifTrue:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   365
        blockInvocationInfo := OrderedCollection new.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   366
    ].
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   367
    statementEntryInfo := self statementExecutionInfoInstance.
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   368
    statementEntryInfo startPosition:aStatementNode startPosition.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   369
    blockInvocationInfo add:statementEntryInfo.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   370
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   371
    countCode := 
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   372
        StatementNode 
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   373
            expression:(MessageNode 
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   374
                            receiver:(ConstantNode value:statementEntryInfo)
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   375
                            selector:#entry:
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   376
                            arg:(VariableNode type:#ThisContext context:contextToEvaluateIn)).
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   377
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   378
    countCode nextStatement:aStatementNode.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   379
    ^ countCode
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   380
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   381
    "Modified: / 07-08-2011 / 15:32:45 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   382
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   383
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   384
!InstrumentingCompiler methodsFor:'code generation hooks'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   385
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   386
assignmentRewriteHookFor:anAssignmentNode
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   387
    "invoked whenever an assignment node has been generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   388
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   389
    ^ anAssignmentNode
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   390
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   391
    "Created: / 30-09-2011 / 12:28:09 / cg"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   392
!
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   393
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   394
blockNodeRewriteHookFor:aBlockNode
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   395
    "invoked whenever a block node has been generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   396
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   397
    "/ add a counter for the block
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   398
    self addBlockCounterTo:aBlockNode.
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   399
    ^ aBlockNode
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   400
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   401
    "Created: / 28-04-2010 / 14:21:27 / cg"
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   402
!
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   403
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   404
messageNodeRewriteHookFor:aMessageNode
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   405
    "invoked whenever a message send node has been generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   406
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   407
"/ see blockNodeRewriter...
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   408
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   409
"/    "/ argument could be a constantNode (due to contant-folding optimization)
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   410
"/    aMessageNode isConstant ifTrue:[^ aMessageNode].
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   411
"/    (
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   412
"/        #( 
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   413
"/            ifTrue: 
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   414
"/            ifFalse:
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   415
"/            ifTrue:ifFalse: 
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   416
"/            ifFalse:ifTrue: 
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   417
"/        )
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   418
"/        includes:aMessageNode selector
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   419
"/    ) ifTrue:[
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   420
"/        "/ add a counter for the block
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   421
"/        self addBlockCountersToEachBlockIn:(aMessageNode arguments)
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   422
"/    ].
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   423
    ^ aMessageNode
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   424
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   425
    "Created: / 27-04-2010 / 11:43:22 / cg"
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   426
    "Modified: / 28-04-2010 / 14:22:05 / cg"
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   427
    "Modified (comment): / 30-09-2011 / 12:16:56 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   428
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   429
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
startCodeGenerationHookOn:codeStream
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   431
    "invoked before code is generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   432
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   433
    methodEntryInfo := self methodInvocationInfoInstance.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   434
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   435
    (StatementNode 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   436
        expression:(MessageNode 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   437
                        receiver:(ConstantNode value:methodEntryInfo)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
                        selector:#entry:
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
                        arg:(VariableNode type:#ThisContext context:contextToEvaluateIn)))
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   440
            codeForSideEffectOn:codeStream inBlock:nil for:self.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   441
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   442
    "Modified: / 07-08-2011 / 15:34:09 / cg"
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   443
    "Modified (comment): / 30-09-2011 / 12:16:05 / cg"
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   444
!
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   445
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   446
statementListRewriteHookFor:firstStatementArg
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   447
    "invoked whenever a statement list node has been generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   448
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   449
    "/ care for blocks which return...
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   450
    |thisStatement prevStatement countStatement mustInsertExecutionInfo statementInfo firstStatement |
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   451
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   452
    mustInsertExecutionInfo := false.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   453
    prevStatement := nil.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   454
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   455
    thisStatement := firstStatementArg.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   456
    thisStatement isNil ifTrue:[^ firstStatementArg].
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   457
    firstStatement := self statementCounterBefore:thisStatement.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   458
    statementInfo := firstStatement expression receiver value. 
4354
c913006e209f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
   459
    statementInfo endPosition:(thisStatement endPosition).
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   460
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   461
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   462
    [true] whileTrue:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   463
        mustInsertExecutionInfo ifTrue:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   464
            "/ prev-stat had a return in it (a block with a return);
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   465
            "/ insert a statement-entry here.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   466
            thisStatement notNil ifTrue:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   467
                countStatement := self statementCounterBefore:thisStatement.
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   468
                statementInfo := countStatement expression receiver value.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   469
                statementInfo endPosition: thisStatement endPosition.
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   470
                prevStatement nextStatement:countStatement.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   471
                mustInsertExecutionInfo := false.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   472
                prevStatement := countStatement.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   473
            ]
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   474
        ].
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   475
        thisStatement isNil ifTrue:[ ^ firstStatement ].
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   476
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   477
        thisStatement isReturnNode ifFalse:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   478
            thisStatement containsReturn ifTrue:[
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   479
                mustInsertExecutionInfo := true    
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   480
            ]
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   481
        ].
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   482
        prevStatement := thisStatement.
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   483
        statementInfo notNil ifTrue:[
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   484
            statementInfo endPosition: prevStatement endPosition.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   485
        ].
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   486
        thisStatement := thisStatement nextStatement.
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   487
    ].
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   488
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   489
    "Modified (comment): / 30-09-2011 / 12:15:52 / cg"
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   490
    "Modified: / 29-07-2013 / 00:11:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4354
c913006e209f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4126
diff changeset
   491
    "Modified (format): / 15-02-2019 / 14:39:55 / Claus Gittinger"
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   492
!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   493
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   494
variableReadRewriteHookFor:aVariableNode
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   495
    "invoked whenever a variable access node has been generated"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   496
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   497
    ^ aVariableNode
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   498
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   499
    "Created: / 30-09-2011 / 12:27:47 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   500
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   501
4621
cf9b7c0d6fbf #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4620
diff changeset
   502
!InstrumentingCompiler methodsFor:'ignored error handling'!
cf9b7c0d6fbf #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4620
diff changeset
   503
4623
88a5ca3677ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   504
undefError:varName position:pos1 to:pos2
88a5ca3677ee #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   505
    ^ #continue
4621
cf9b7c0d6fbf #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4620
diff changeset
   506
! !
cf9b7c0d6fbf #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4620
diff changeset
   507
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   508
!InstrumentingCompiler methodsFor:'redefinable'!
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   509
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   510
blockExecutionInfoInstance
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   511
    "one instance is generated for every block,
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   512
     and called at execution time with entry:"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   514
    ^ BlockExecutionInfo new cleanInfoWithChange:false.
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   515
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   516
    "Created: / 07-08-2011 / 15:13:42 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   517
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   519
methodInvocationInfoInstance
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   520
    "one instance is generated for every method,
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   521
     and called at execution time with entry:"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   522
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   523
    ^ MethodInvocationInfo new.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   524
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   525
    "Created: / 07-08-2011 / 15:33:57 / cg"
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   526
!
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   528
statementExecutionInfoInstance
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   529
    "one instance is generated for every statement,
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   530
     and called at execution time with entry:"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   532
    ^ StatementExecutionInfo new cleanInfoWithChange:false.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   534
    "Created: / 07-08-2011 / 15:32:36 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   537
!InstrumentingCompiler::StatementExecutionInfo class methodsFor:'documentation'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   538
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   539
documentation
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   540
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   541
    (sub)instances of me are updated by instrumented code when statements are executed.
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   542
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   543
! !
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
   544
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   545
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'accessing'!
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   546
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   547
callCount
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   548
    ^ count
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   549
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   550
    "Created: / 27-04-2010 / 13:45:15 / cg"
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   551
!
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   552
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   553
characterPosition
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   554
    ^ startPosition
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   555
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   556
    "Created: / 23-06-2006 / 13:31:19 / cg"
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   557
    "Modified: / 28-04-2010 / 15:54:24 / cg"
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   558
!
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   559
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   560
characterPosition:something
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   561
    startPosition := something.
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   562
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   563
    "Created: / 23-06-2006 / 13:31:19 / cg"
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   564
    "Modified: / 28-04-2010 / 15:54:30 / cg"
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   565
!
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   566
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   567
count
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   568
    "how often have I been called"
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   569
2981
f82dd89f0459 count values
Claus Gittinger <cg@exept.de>
parents: 2976
diff changeset
   570
    ^ count ? 0
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   571
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   572
    "Created: / 23-06-2006 / 13:31:28 / cg"
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   573
!
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   574
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   575
endPosition
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   576
    ^ endPosition
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   577
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   578
    "Created: / 28-04-2010 / 15:57:14 / cg"
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   579
!
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   580
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   581
endPosition:anInteger
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   582
    endPosition := anInteger.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   583
!
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   584
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   585
startPosition
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   586
    ^ startPosition
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   587
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   588
    "Created: / 28-04-2010 / 15:54:26 / cg"
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   589
!
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   590
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   591
startPosition:anInteger
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   592
    startPosition := anInteger.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   593
!
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   594
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   595
startPosition:startArg endPosition:endArg
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   596
    startPosition := startArg.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   597
    endPosition := endArg.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   598
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   599
    "Created: / 28-04-2010 / 15:54:47 / cg"
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   600
! !
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   601
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   602
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'cleanup'!
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   603
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   604
cleanInfoWithChange:withChange
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
   605
    count := 0.
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   606
    withChange ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   607
        Smalltalk changed:#methodCoverageInfo with:owningMethod.
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   608
    ].
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
   609
2570
f0b8fc6cdabb change info
Claus Gittinger <cg@exept.de>
parents: 2569
diff changeset
   610
    "Modified: / 20-07-2011 / 17:55:49 / cg"
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   611
    "Created: / 20-07-2011 / 18:59:01 / cg"
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   612
! !
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   613
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   614
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'debugging'!
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   615
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   616
inspector2TabSource
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   617
    | source |
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   618
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   619
    source := owningMethod source asText.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   620
    startPosition isNil ifTrue:[
4538
a3a74945da5a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4527
diff changeset
   621
        source allRed.
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   622
    ] ifFalse:[
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   623
        endPosition isNil ifTrue:[
4538
a3a74945da5a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4527
diff changeset
   624
            |end|
a3a74945da5a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4527
diff changeset
   625
            end := source string size.
a3a74945da5a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4527
diff changeset
   626
            source emphasizeFrom:startPosition to:end with: #bold.
a3a74945da5a #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 4527
diff changeset
   627
            source emphasizeFrom:startPosition to:end with: #color -> Color red.
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   628
        ] ifFalse:[
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   629
            source emphasizeFrom:startPosition to: endPosition with: #bold.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   630
            source emphasizeFrom:startPosition to: endPosition with: #color -> Color blue.
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   631
        ].
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   632
    ].
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   633
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   634
    ^self newInspector2Tab
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   635
        label: 'Source';
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   636
        priority: 50;
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   637
        view: ((ScrollableView for:EditTextView) contents: source; yourself)
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   638
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   639
    "Created: / 28-07-2013 / 23:16:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   640
!
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   641
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   642
inspector2Tabs
3585
1f2291b908b7 Fixed #inspector2Tabs method: always call 'super inspector2Tabs'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3570
diff changeset
   643
    ^ super inspector2Tabs , #( inspector2TabSource )
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   644
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   645
    "Created: / 28-07-2013 / 23:18:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3585
1f2291b908b7 Fixed #inspector2Tabs method: always call 'super inspector2Tabs'
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3570
diff changeset
   646
    "Modified: / 13-02-2015 / 21:03:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3239
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   647
! !
a603d73841d4 Coverage refactored - add statement execution info even for the
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3237
diff changeset
   648
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   649
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'instrumentation calls'!
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   650
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   651
entry:callingContext
2528
e57cc8caf6f9 dont instrument the instrumentation code
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
   652
    "invoked by instrumented code;
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   653
     called whenever the block/statment is entered"
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   654
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   655
    |context|
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   656
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   657
    context := InstrumentationContext current.
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   658
    context isNil ifTrue:[^ self].
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   659
    context inInstrumentedCode ifTrue:[^ self].
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   660
    context coverageOnly ifTrue:[
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   661
        self hasBeenExecuted ifTrue:[^ self].
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   662
    ].
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   663
    context enabledAndNotInInstrumentedCode ifFalse:[^ self].
2528
e57cc8caf6f9 dont instrument the instrumentation code
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
   664
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   665
    count := count + 1.
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   666
    count == 1 ifTrue:[
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   667
        "/ the very first time, send a change notification, so the browsers update the coloring
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   668
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   669
        [
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   670
            context inInstrumentedCode:true.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   671
            Smalltalk changed:#methodCoverageInfo with:owningMethod.
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   672
            context coverageOnly ifTrue:[
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   673
                self changeClassToCoverageAndAlreadyEntered.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   674
            ] ifFalse:[
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   675
                self changeClassToAlreadyEntered.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   676
            ].
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   677
            "/ attention: no self sends here - class has changed!!
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   678
        ] ensure:[
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   679
            context inInstrumentedCode:false.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   680
        ]
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   681
    ].
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   682
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   683
    "Created: / 23-06-2006 / 13:31:16 / cg"
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   684
    "Modified: / 23-08-2011 / 21:29:39 / cg"
2359
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   685
! !
b70f2c9dddcf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2357
diff changeset
   686
4398
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   687
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'printing'!
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   688
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   689
printOn:aStream 
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   690
    aStream nextPutAll:'['.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   691
    startPosition printOn:aStream.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   692
    aStream nextPutAll:'...'.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   693
    endPosition printOn:aStream.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   694
    aStream nextPutAll:' | count: '.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   695
    count printOn:aStream.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   696
    aStream nextPutAll:' | code: '.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   697
    (owningMethod source asString
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   698
        copyFrom:startPosition
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   699
        to:endPosition) printOn:aStream.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   700
    aStream nextPutAll:']'.
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   701
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   702
    "Created: / 21-08-2011 / 14:02:01 / cg"
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   703
    "Modified: / 22-03-2019 / 08:43:56 / Claus Gittinger"
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   704
! !
9ca1c5dfcf2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4354
diff changeset
   705
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   706
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'private'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   707
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   708
changeClassToAlreadyEntered
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   709
    self class == InstrumentingCompiler::StatementExecutionInfo ifTrue:[
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   710
        self changeClassTo: StatementExecutionInfoInAlreadyEnteredState
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   711
    ].
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   712
!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   713
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   714
changeClassToCoverageAndAlreadyEntered
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   715
    self class == InstrumentingCompiler::StatementExecutionInfo ifTrue:[
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   716
        self changeClassTo: StatementExecutionInfoForCoverageInAlreadyEnteredState
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   717
    ].
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   718
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   719
2390
cada66e1eb70 changed:
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
   720
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'queries'!
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   721
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   722
hasBeenExecuted
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   723
    ^ count > 0
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   724
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   725
    "Created: / 28-04-2010 / 14:39:46 / cg"
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   726
! !
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
   727
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   728
!InstrumentingCompiler::StatementExecutionInfo methodsFor:'testing'!
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   729
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   730
isStatementExecutionInfo
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   731
    ^ true
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   732
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   733
    "Created: / 08-08-2011 / 14:40:51 / cg"
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   734
! !
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   735
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   736
!InstrumentingCompiler::StatementExecutionInfo::StatementExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'cleanup'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   737
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   738
cleanInfoWithChange:withChange
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   739
    super cleanInfoWithChange:withChange.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   740
    self changeClassTo:InstrumentingCompiler::StatementExecutionInfo.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   741
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   742
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   743
!InstrumentingCompiler::StatementExecutionInfo::StatementExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'instrumentation calls'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   744
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   745
entry:callingContext
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   746
    "already been invoked - nothing to record"
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   747
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   748
    ^ self
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   749
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   750
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   751
!InstrumentingCompiler::StatementExecutionInfo::StatementExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'queries'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   752
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   753
hasBeenExecuted
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   754
    ^ true
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   755
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   756
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   757
!InstrumentingCompiler::StatementExecutionInfo::StatementExecutionInfoInAlreadyEnteredState methodsFor:'cleanup'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   758
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   759
cleanInfoWithChange:withChange
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   760
    super cleanInfoWithChange:withChange.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   761
    self changeClassTo:InstrumentingCompiler::StatementExecutionInfo.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   762
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   763
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   764
!InstrumentingCompiler::StatementExecutionInfo::StatementExecutionInfoInAlreadyEnteredState methodsFor:'instrumentation calls'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   765
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   766
entry:callingContext
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   767
    "already been invoked - no update notifications to browsers"
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   768
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   769
    count := count + 1.
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   770
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   771
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'accessing'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   773
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
callingMethodsDo:aBlock
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
    infoPerReceiverClass notNil ifTrue:[
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   776
        infoPerReceiverClass ~~ true ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   777
            infoPerReceiverClass do:[:each |
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   778
                each callingMethodsDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   779
            ]
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
        ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
    ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   784
count
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   785
    "how often have I been called"
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   786
2981
f82dd89f0459 count values
Claus Gittinger <cg@exept.de>
parents: 2976
diff changeset
   787
    ^ count ? 0
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   788
!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   789
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
hasBeenCalled
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
    ^ infoPerReceiverClass notEmptyOrNil
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
    "Created: / 27-04-2010 / 13:43:15 / cg"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   796
invokedViaPerform
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   797
    ^ infoPerReceiverClass contains:[:someInfo | someInfo invokedViaPerform].
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   798
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   799
    "Created: / 27-04-2010 / 18:21:56 / cg"
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   800
!
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   801
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
invokingMethods
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
    |setOfMethods|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
    setOfMethods := IdentitySet new.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
    self invokingMethodsDo:[:m | setOfMethods add:m].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
    ^ setOfMethods.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
invokingMethodsDo:aBlock
4527
fca78c3f71dc #QUALITY by exept
Claus Gittinger <cg@exept.de>
parents: 4398
diff changeset
   811
    infoPerReceiverClass notNil ifTrue:[
fca78c3f71dc #QUALITY by exept
Claus Gittinger <cg@exept.de>
parents: 4398
diff changeset
   812
        infoPerReceiverClass do:[:eachInfo | eachInfo invokingMethodsDo:aBlock].
fca78c3f71dc #QUALITY by exept
Claus Gittinger <cg@exept.de>
parents: 4398
diff changeset
   813
    ]
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
numberOfInvocations
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
    infoPerReceiverClass isNil ifTrue:[ ^ 0].
2951
340d0405f582 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
   818
    infoPerReceiverClass == true ifTrue:[ ^ 0].
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   819
    ^ infoPerReceiverClass inject:0 into:[:sumSoFar :info | sumSoFar + info numberOfInvocations] 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   820
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
numberOfInvocationsFromExternalOf:aClass
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   823
    |sum|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
    infoPerReceiverClass isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
    sum := 0.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   828
    infoPerReceiverClass keysAndValuesDo:[:recClass :info |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
        sum := sum + (info numberOfInvocationsFromExternalOf:aClass)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
    ]. 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   831
    ^ sum
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   832
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   833
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   834
numberOfInvocationsFromInternalOf:aClass
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   835
    |sum|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   836
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   837
    infoPerReceiverClass isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
    sum := 0.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
    infoPerReceiverClass keysAndValuesDo:[:recClass :info |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
        sum := sum + (info numberOfInvocationsFromInternalOf:aClass)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
    ]. 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   843
    ^ sum
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   844
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'cleanup'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   847
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   848
cleanInfoWithChange:withChange
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
    infoPerReceiverClass := nil.
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   850
    withChange ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   851
        Smalltalk changed:#methodCoverageInfo with:owningMethod.
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   852
    ]
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
   853
2570
f0b8fc6cdabb change info
Claus Gittinger <cg@exept.de>
parents: 2569
diff changeset
   854
    "Modified: / 20-07-2011 / 17:55:35 / cg"
2571
Claus Gittinger <cg@exept.de>
parents: 2570
diff changeset
   855
    "Created: / 20-07-2011 / 18:59:22 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   856
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   857
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   858
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'instrumentation calls'!
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   859
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   860
entry:aContext
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   861
    "invoked by instrumented compiled code, upon method entry"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   863
    |context receiversClass infoPerReceiver firstEntry coverageOnly|
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   865
    recursiveEntry == true ifTrue:[
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   866
        "/ hurry, get out of here
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   867
    ].
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   868
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   869
    "/ this is a hack - we have to be very careful to avoid recursive
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   870
    "/ instrumentation entries when instrumenting collection classes!!
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   871
    "/ Do not change without extensive testing.
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   872
    recursiveEntry := true.
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   873
    context := InstrumentationContext current.
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   874
    context isNil ifTrue:[recursiveEntry := false. ^ self].
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   875
    context enabledAndNotInInstrumentedCode ifFalse:[recursiveEntry := false. ^ self].
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   876
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   877
    count := (count ? 0) + 1.
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   878
    [
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   879
        context inInstrumentedCode:true.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   880
2875
f7f46f53bc84 entry code tuned
Claus Gittinger <cg@exept.de>
parents: 2715
diff changeset
   881
        firstEntry := false.
f7f46f53bc84 entry code tuned
Claus Gittinger <cg@exept.de>
parents: 2715
diff changeset
   882
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   883
        (coverageOnly := context coverageOnly) ifTrue:[
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   884
            "/ only interested in entry, but not in a per-receiver statistics
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   885
            "/ that is the normal coverage usage
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   886
            infoPerReceiverClass isNil ifTrue:[
2949
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
   887
                infoPerReceiverClass := true.
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   888
                firstEntry := true.
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   889
            ].
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   890
        ] ifFalse:[
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   891
            "/ interested in a per-receiver statistics (remembering with which receiver-class a method has been invoked).
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   892
            "/ that is used by the OOM package
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   893
            infoPerReceiverClass isNil ifTrue:[
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   894
                infoPerReceiverClass := IdentityDictionary new.
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   895
                firstEntry := true.
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   896
            ].
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   897
            receiversClass := aContext receiver class.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   898
            infoPerReceiver := infoPerReceiverClass 
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   899
                                        at:receiversClass 
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   900
                                        ifAbsentPut:[MethodInvocationInfoPerReceiverClass new].
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   901
            infoPerReceiver entry:aContext.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   902
        ].
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
   903
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   904
        "/ the very first time, send a change notification, so the browsers update the coloring
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   905
        firstEntry ifTrue:[
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   906
            Smalltalk changed:#methodCoverageInfo with:owningMethod.
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   907
        ].
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   908
        coverageOnly ifTrue:[
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   909
            self changeClassToCoverageAndAlreadyEntered.
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   910
        ] ifFalse:[
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   911
            self changeClassToAlreadyEntered.
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
   912
        ].
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
   913
        "/ attention: no self sends here - class has changed!!
2944
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   914
    ] ensure:[
b0a2b03382fa fixes and tuning
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   915
        context inInstrumentedCode:false.
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   916
        recursiveEntry := false.
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   917
    ].
2528
e57cc8caf6f9 dont instrument the instrumentation code
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
   918
2960
8adc66fe55fb care for recursive entry (instrumenting code which is needed
Claus Gittinger <cg@exept.de>
parents: 2958
diff changeset
   919
    "Modified (comment): / 26-10-2012 / 12:59:44 / cg"
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   920
! !
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   921
4626
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   922
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'printing'!
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   923
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   924
printOn:aStream 
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   925
    aStream nextPutAll:'[count: '.
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   926
    count printOn:aStream.
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   927
    aStream nextPutAll:' | method: '.
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   928
    (owningMethod whoString) printOn:aStream.
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   929
    aStream nextPutAll:']'.
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   930
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   931
    "Created: / 21-08-2011 / 14:02:01 / cg"
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   932
    "Modified: / 22-03-2019 / 08:43:56 / Claus Gittinger"
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   933
! !
c8b3d037db5c #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4625
diff changeset
   934
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   935
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'private'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   936
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   937
changeClassToAlreadyEntered
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   938
    self class == InstrumentingCompiler::MethodInvocationInfo ifTrue:[
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   939
        self changeClassTo: InstrumentingCompiler::MethodInvocationInfoInAlreadyEnteredState
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   940
    ].
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   941
!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   942
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   943
changeClassToCoverageAndAlreadyEntered
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   944
    self class == InstrumentingCompiler::MethodInvocationInfo ifTrue:[
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   945
        self changeClassTo: InstrumentingCompiler::MethodInvocationInfoForCoverageInAlreadyEnteredState
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   946
    ].
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   947
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
   948
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   949
!InstrumentingCompiler::MethodInvocationInfo methodsFor:'testing'!
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   950
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   951
isMethodInvocationInfo
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   952
    ^ true
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   953
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
   954
    "Created: / 08-08-2011 / 14:37:58 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   955
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   956
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   957
!InstrumentingCompiler::MethodInvocationInfo::MethodInvocationInfoPerReceiverClass methodsFor:'accessing'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   958
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   959
callingMethodsDo:aBlock
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   960
    infoPerSendingMethod keysAndValuesDo:[:m :eachInfo |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   961
        aBlock value:m
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   962
    ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   963
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   965
invokedViaPerform
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   966
    ^ infoPerSendingMethod contains:[:someInfo | someInfo invokedViaPerform].
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   967
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   968
    "Created: / 27-04-2010 / 18:21:36 / cg"
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   969
!
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
   970
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   971
invokingMethodsDo:aBlock
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   972
    infoPerSendingMethod isNil ifTrue:[ ^ self].
3570
0ac6e8f11416 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
   973
    infoPerSendingMethod keysDo:aBlock.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   974
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   975
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   976
numberOfInvocations
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   977
    infoPerSendingMethod isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   978
    ^ infoPerSendingMethod inject:0 into:[:sumSoFar :info | sumSoFar + info numberOfInvocations] 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   979
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   980
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
numberOfInvocationsFromExternalOf:aClass
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
    |sum|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
    infoPerSendingMethod isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
    sum := 0.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
    infoPerSendingMethod keysAndValuesDo:[:sendingMethod :info |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
        |sendingMethodsClass|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   990
        sendingMethodsClass := sendingMethod mclass.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
        sendingMethodsClass notNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
            ((sendingMethodsClass isSubclassOf:aClass) 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
            or:[(aClass isSubclassOf:sendingMethodsClass )]) ifFalse:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
                sum := sum + (info numberOfInvocations)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
            ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   996
        ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   997
    ]. 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   998
    ^ sum
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
numberOfInvocationsFromInternalOf:aClass
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
    |sum|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1003
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1004
    infoPerSendingMethod isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1005
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
    sum := 0.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
    infoPerSendingMethod keysAndValuesDo:[:sendingMethod :info |
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
        |sendingMethodsClass|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1009
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1010
        sendingMethodsClass := sendingMethod mclass.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
        sendingMethodsClass notNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
            ((sendingMethodsClass isSubclassOf:aClass) 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
            or:[(aClass isSubclassOf:sendingMethodsClass)]) ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1014
                sum := sum + (info numberOfInvocations)
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
            ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1016
        ]
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
    ]. 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1018
    ^ sum
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1019
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1021
!InstrumentingCompiler::MethodInvocationInfo::MethodInvocationInfoPerReceiverClass methodsFor:'instrumentation calls'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1022
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1023
entry:aContext
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
    "invoked by instrumented compiled code, upon method entry"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1026
    |sender sendingMethod infoPerMethod viaPerform|
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1027
2391
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1028
    aContext selector == #doesNotUnderstand: ifTrue:[
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1029
        sender := aContext sender sender methodHome.
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1030
    ] ifFalse:[
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1031
        sender := aContext sender methodHome.
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1032
    ].
2370
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1033
    sender isNil ifTrue:[
a801cc4df234 added: #blockNodeRewriteHookFor:
Claus Gittinger <cg@exept.de>
parents: 2368
diff changeset
  1034
        ^ self.
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1035
    ].
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1036
    sendingMethod := sender method.
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1037
    sendingMethod isNil ifTrue:[^ self].
2391
2bd90c14cd75 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1038
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1039
    viaPerform := false.
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1040
    (sendingMethod mclass == Object 
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1041
    and:[ sendingMethod selector startsWith:'perform:'] ) ifTrue:[
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1042
        "/ Transcript showCR:('%1 [info]: skipping #perform' bindWith:self class nameWithoutPrefix).
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1043
        sender := sender sender methodHome.
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1044
        sendingMethod := sender method.
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1045
        viaPerform := true.
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1046
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1047
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1048
    infoPerSendingMethod isNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1049
        infoPerSendingMethod := IdentityDictionary new.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1050
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1051
    infoPerMethod := infoPerSendingMethod 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1052
                        at:sendingMethod 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
                        ifAbsentPut:[ MethodInvocationInfoPerSendingMethod new ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1055
    infoPerMethod entry:aContext viaPerform:viaPerform
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1056
2569
e9fcb54ac3d4 change notifications
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  1057
    "Modified: / 20-07-2011 / 17:26:31 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1058
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1059
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
!InstrumentingCompiler::MethodInvocationInfo::MethodInvocationInfoPerReceiverClass::MethodInvocationInfoPerSendingMethod methodsFor:'accessing'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1061
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1062
invokedViaPerform
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1063
    ^ invokedViaPerform ? false
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1064
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1065
    "Created: / 27-04-2010 / 18:20:05 / cg"
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1066
!
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1067
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1068
numberOfInvocations
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1069
    countPerSendersClass isNil ifTrue:[ ^ 0].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1070
    ^ countPerSendersClass inject:0 into:[:sumSoFar :count | sumSoFar + count] 
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1071
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
!InstrumentingCompiler::MethodInvocationInfo::MethodInvocationInfoPerReceiverClass::MethodInvocationInfoPerSendingMethod methodsFor:'instrumentation calls'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1075
entry:aContext viaPerform:viaPerformBoolean
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1076
    "invoked by instrumented compiled code, upon method entry"
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1077
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1078
    |sendersClass count|
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1079
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1080
    sendersClass := aContext sender receiver class.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1081
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1082
    countPerSendersClass isNil ifTrue:[
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1083
        countPerSendersClass := IdentityDictionary new.
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1084
    ].
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
    count := countPerSendersClass at:sendersClass ifAbsentPut:0.
2368
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1086
    countPerSendersClass at:sendersClass put:(count + 1).
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1087
    viaPerformBoolean ifTrue:[ invokedViaPerform := true ].
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1088
e48d46439c08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2359
diff changeset
  1089
    "Created: / 27-04-2010 / 18:17:27 / cg"
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
! !
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1091
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1092
!InstrumentingCompiler::MethodInvocationInfoForCoverageInAlreadyEnteredState methodsFor:'cleanup'!
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1093
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1094
cleanInfoWithChange:withChange
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1095
    super cleanInfoWithChange:withChange.
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1096
    self changeClassTo:InstrumentingCompiler::MethodInvocationInfo.
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1097
! !
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1098
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1099
!InstrumentingCompiler::MethodInvocationInfoForCoverageInAlreadyEnteredState methodsFor:'instrumentation calls'!
2948
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1100
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1101
entry:aContext
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1102
    "already been invoked - nothing to record"
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1103
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1104
    ^ self
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1105
! !
1af0db8d9945 entry fix and speedup
Claus Gittinger <cg@exept.de>
parents: 2946
diff changeset
  1106
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1107
!InstrumentingCompiler::MethodInvocationInfoInAlreadyEnteredState methodsFor:'cleanup'!
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1108
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1109
cleanInfoWithChange:withChange
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1110
    super cleanInfoWithChange:withChange.
2711
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1111
    self changeClassTo:InstrumentingCompiler::MethodInvocationInfo.
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1112
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1113
    "Modified: / 20-07-2011 / 17:55:35 / cg"
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1114
    "Created: / 24-08-2011 / 11:10:29 / cg"
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1115
! !
63f9264d17f0 speedup for coverage-only
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
  1116
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1117
!InstrumentingCompiler::MethodInvocationInfoInAlreadyEnteredState methodsFor:'instrumentation calls'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1118
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1119
entry:aContext
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1120
    "already been invoked - no notifications to send"
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1121
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1122
    count := count + 1
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1123
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1124
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1125
!InstrumentingCompiler::VariableAccessExecutionInfo class methodsFor:'documentation'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1126
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1127
documentation
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1128
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1129
    (sub)instances of me are updated by instrumented code when a variable is accessed
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1130
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1131
! !
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1132
2976
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1133
!InstrumentingCompiler::VariableAccessExecutionInfo methodsFor:'testing'!
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1134
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1135
isVariableAccessExecutionInfo
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1136
    ^ true
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1137
! !
6e3f4e2b20f8 class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  1138
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1139
!InstrumentingCompiler::BlockExecutionInfo class methodsFor:'documentation'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1140
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1141
documentation
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1142
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1143
    (sub)instances of me are updated by instrumented code when a block is executed.
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1144
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1145
! !
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1146
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1147
!InstrumentingCompiler::BlockExecutionInfo methodsFor:'entry'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1148
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1149
changeClassToAlreadyEntered
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1150
    self class == InstrumentingCompiler::BlockExecutionInfo ifTrue:[
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1151
        self changeClassTo: BlockExecutionInfoInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1152
    ].
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1153
!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1154
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1155
changeClassToCoverageAndAlreadyEntered
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1156
    self class == InstrumentingCompiler::BlockExecutionInfo ifTrue:[
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1157
        self changeClassTo: BlockExecutionInfoForCoverageInAlreadyEnteredState
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1158
    ].
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1159
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1160
2632
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1161
!InstrumentingCompiler::BlockExecutionInfo methodsFor:'testing'!
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1162
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1163
isBlockExecutionInfo
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1164
    ^ true
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1165
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1166
    "Created: / 07-08-2011 / 17:06:39 / cg"
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1167
! !
734313b470d3 refactoring
Claus Gittinger <cg@exept.de>
parents: 2571
diff changeset
  1168
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1169
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'cleanup'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1170
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1171
cleanInfoWithChange:withChange
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1172
    super cleanInfoWithChange:withChange.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1173
    self changeClassTo:InstrumentingCompiler::BlockExecutionInfo.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1174
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1175
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1176
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'instrumentation probe calls'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1177
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1178
entry:callingContext
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1179
    "already been invoked - nothing to do"
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1180
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1181
    ^ self
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1182
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1183
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1184
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoForCoverageInAlreadyEnteredState methodsFor:'queries'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1185
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1186
hasBeenExecuted
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1187
    ^ true
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1188
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1189
2967
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1190
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoInAlreadyEnteredState methodsFor:'cleanup'!
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1191
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1192
cleanInfoWithChange:withChange
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1193
    super cleanInfoWithChange:withChange.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1194
    self changeClassTo:InstrumentingCompiler::BlockExecutionInfo.
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1195
! !
33ec78ee2aa9 tuning by changing the class to speedup entry into already
Claus Gittinger <cg@exept.de>
parents: 2960
diff changeset
  1196
2973
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1197
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoInAlreadyEnteredState methodsFor:'instrumentation probe calls'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1198
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1199
entry:callingContext
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1200
    "already been invoked - no update notification for browsers"
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1201
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1202
    count := count + 1.
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1203
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1204
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1205
!InstrumentingCompiler::BlockExecutionInfo::BlockExecutionInfoInAlreadyEnteredState methodsFor:'queries'!
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1206
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1207
hasBeenExecuted
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1208
    ^ true
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1209
! !
9de309c79d6c class: InstrumentingCompiler
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  1210
2715
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1211
!InstrumentingCompiler::ReadAccessExecutionInfo class methodsFor:'documentation'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1212
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1213
documentation
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1214
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1215
    (sub)instances of me are updated by instrumented code when a variable is read
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1216
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1217
! !
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1218
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1219
!InstrumentingCompiler::WriteAccessExecutionInfo class methodsFor:'documentation'!
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1220
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1221
documentation
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1222
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1223
    (sub)instances of me are updated by instrumented code when a variable is written
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1224
"
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1225
! !
10a744f8ce68 comments
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1226
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
!InstrumentingCompiler class methodsFor:'documentation'!
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
2570
f0b8fc6cdabb change info
Claus Gittinger <cg@exept.de>
parents: 2569
diff changeset
  1229
version
3862
42354ffef3a1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1230
    ^ '$Header$'
2570
f0b8fc6cdabb change info
Claus Gittinger <cg@exept.de>
parents: 2569
diff changeset
  1231
!
f0b8fc6cdabb change info
Claus Gittinger <cg@exept.de>
parents: 2569
diff changeset
  1232
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
version_CVS
3862
42354ffef3a1 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
  1234
    ^ '$Header$'
2357
9eceec36beca initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
! !
3192
4a3a9fa54b94 class: InstrumentingCompiler
Stefan Vogel <sv@exept.de>
parents: 2981
diff changeset
  1236