OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ssa
(Results
26 - 50
of
67
) sorted by null
1
2
3
/dalvik/dx/src/com/android/dx/ssa/
SsaInsn.java
17
package com.android.dx.
ssa
;
23
* An instruction in
SSA
form
49
* Makes a new
SSA
insn form a rop insn.
ConstCollector.java
17
package com.android.dx.
ssa
;
320
* @param origRegCount {@code >=0;} original
SSA
reg count, not including
DeadCodeRemover.java
17
package com.android.dx.
ssa
;
33
* A variation on Appel Algorithm 19.12 "Dead code elimination in
SSA
form".
Dominators.java
17
package com.android.dx.
ssa
;
NormalSsaInsn.java
17
package com.android.dx.
ssa
;
22
* A "normal" (non-phi) instruction in
SSA
form. Always wraps a rop insn.
PhiInsn.java
17
package com.android.dx.
ssa
;
29
* in
SSA
form. Will be converted to moves in predecessor blocks before
SsaConverter.java
17
package com.android.dx.
ssa
;
27
* Converts ROP methods to
SSA
Methods
33
* Returns an
SSA
representation, edge-split and with phi
41
* @return output in
SSA
form
65
* Updates an
SSA
representation, placing phi functions and renaming all
78
* Returns an
SSA
represention with only the edge-splitter run.
84
* @return an
SSA
represention with only the edge-splitter run
97
* Returns an
SSA
represention with only the steps through the
104
* @return an
SSA
represention with only the edge-splitter run
126
* In addition, the
SSA
form we use enforces a further constraint
[
all
...]
/dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java
17
package com.android.dx.
ssa
.back;
25
import com.android.dx.
ssa
.NormalSsaInsn;
26
import com.android.dx.
ssa
.RegisterMapper;
27
import com.android.dx.
ssa
.SsaInsn;
28
import com.android.dx.
ssa
.SsaMethod;
29
import com.android.dx.
ssa
.SsaBasicBlock;
95
* @param reg {@code >= 0;}
SSA
register
97
* (for the case of "version 0"
SSA
registers)
125
* Inserts a move instruction for a specified
SSA
register before a
126
* specified instruction, creating a new
SSA
register and adjusting th
[
all
...]
IdenticalBlockCombiner.java
17
package com.android.dx.
ssa
.back;
LivenessAnalyzer.java
17
package com.android.dx.
ssa
.back;
19
import com.android.dx.
ssa
.SsaMethod;
20
import com.android.dx.
ssa
.SsaBasicBlock;
21
import com.android.dx.
ssa
.SsaInsn;
22
import com.android.dx.
ssa
.PhiInsn;
51
* {@code >=0;}
SSA
register currently being analyzed.
85
* @return {@code non-null;} interference graph indexed by
SSA
107
* @param interference {@code non-null;} indexed by
SSA
reg in
/external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java
17
package com.android.dx.
ssa
;
LocalVariableExtractor.java
17
package com.android.dx.
ssa
;
LocalVariableInfo.java
17
package com.android.dx.
ssa
;
28
* com.android.dx.
ssa
.SsaMethod}.
PhiTypeResolver.java
17
package com.android.dx.
ssa
;
33
* out of
SSA
form.<p>
SsaInsn.java
17
package com.android.dx.
ssa
;
23
* An instruction in
SSA
form
49
* Makes a new
SSA
insn form a rop insn.
ConstCollector.java
17
package com.android.dx.
ssa
;
320
* @param origRegCount {@code >=0;} original
SSA
reg count, not including
DeadCodeRemover.java
17
package com.android.dx.
ssa
;
33
* A variation on Appel Algorithm 19.12 "Dead code elimination in
SSA
form".
Dominators.java
17
package com.android.dx.
ssa
;
NormalSsaInsn.java
17
package com.android.dx.
ssa
;
22
* A "normal" (non-phi) instruction in
SSA
form. Always wraps a rop insn.
PhiInsn.java
17
package com.android.dx.
ssa
;
29
* in
SSA
form. Will be converted to moves in predecessor blocks before
SsaConverter.java
17
package com.android.dx.
ssa
;
27
* Converts ROP methods to
SSA
Methods
33
* Returns an
SSA
representation, edge-split and with phi
41
* @return output in
SSA
form
65
* Updates an
SSA
representation, placing phi functions and renaming all
78
* Returns an
SSA
represention with only the edge-splitter run.
84
* @return an
SSA
represention with only the edge-splitter run
97
* Returns an
SSA
represention with only the steps through the
104
* @return an
SSA
represention with only the edge-splitter run
126
* In addition, the
SSA
form we use enforces a further constraint
[
all
...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
RegisterAllocator.java
17
package com.android.dx.
ssa
.back;
25
import com.android.dx.
ssa
.NormalSsaInsn;
26
import com.android.dx.
ssa
.RegisterMapper;
27
import com.android.dx.
ssa
.SsaInsn;
28
import com.android.dx.
ssa
.SsaMethod;
29
import com.android.dx.
ssa
.SsaBasicBlock;
95
* @param reg {@code >= 0;}
SSA
register
97
* (for the case of "version 0"
SSA
registers)
125
* Inserts a move instruction for a specified
SSA
register before a
126
* specified instruction, creating a new
SSA
register and adjusting th
[
all
...]
IdenticalBlockCombiner.java
17
package com.android.dx.
ssa
.back;
LivenessAnalyzer.java
17
package com.android.dx.
ssa
.back;
19
import com.android.dx.
ssa
.SsaMethod;
20
import com.android.dx.
ssa
.SsaBasicBlock;
21
import com.android.dx.
ssa
.SsaInsn;
22
import com.android.dx.
ssa
.PhiInsn;
51
* {@code >=0;}
SSA
register currently being analyzed.
85
* @return {@code non-null;} interference graph indexed by
SSA
107
* @param interference {@code non-null;} indexed by
SSA
reg in
/external/clang/test/CodeGenCXX/
pointers-to-data-members.cpp
35
}
ssa
[2];
member in namespace:ZeroInit
36
void test_ssa() { (void)
ssa
; }
Completed in 1418 milliseconds
1
2
3