/dalvik/dexgen/src/com/android/dexgen/util/ |
D | DexJarMaker.java | 78 private void add(File source, JarOutputStream target) throws IOException { in add() argument 80 if (!source.isFile()) { in add() 84 BufferedInputStream in = new BufferedInputStream(new FileInputStream(source)); in add() 86 entry.setTime(source.lastModified()); in add()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | DeadCodeRemover.java | 100 RegisterSpec source = sources.get(i); in run() local 101 useList[source.getReg()].remove(insnS); in run() 105 source.getReg()))) { in run() 110 worklist.set(source.getReg()); in run() 149 RegisterSpec source = sources.get(j); in pruneDeadInstructions() local 150 useList[source.getReg()].remove(insn); in pruneDeadInstructions()
|
D | EscapeAnalysis.java | 569 RegisterSpec source, result; in replaceUse() local 580 source = newRegs.get(index); in replaceUse() 581 result = source.withReg(next.getResult().getReg()); in replaceUse() 582 insertPlainInsnBefore(next, RegisterSpecList.make(source), in replaceUse() 597 source = sources.get(0); in replaceUse() 598 result = source.withReg(newRegs.get(index).getReg()); in replaceUse() 599 insertPlainInsnBefore(use, RegisterSpecList.make(source), in replaceUse() 655 final RegisterSpec source = insn.getSources().get(0); in movePropagate() local 659 if (source.getReg() < regCount && result.getReg() < regCount) { in movePropagate() 673 return source; in movePropagate()
|
D | SsaBasicBlock.java | 568 public void addMoveToEnd(RegisterSpec result, RegisterSpec source) { in addMoveToEnd() argument 577 if (result.getReg() == source.getReg()) { in addMoveToEnd() 607 succ.addMoveToBeginning(result, source); in addMoveToEnd() 615 RegisterSpecList sources = RegisterSpecList.make(source); in addMoveToEnd() 632 public void addMoveToBeginning (RegisterSpec result, RegisterSpec source) { in addMoveToBeginning() argument 633 if (result.getReg() == source.getReg()) { in addMoveToBeginning() 638 RegisterSpecList sources = RegisterSpecList.make(source); in addMoveToBeginning()
|
/dalvik/dx/tests/121-sccp/ |
D | expected.txt | 28 source file: "Blort.java" 57 source file: "Blort.java" 76 source file: "Blort.java" 102 source file: "Blort.java" 123 source file: "Blort.java" 151 source file: "Blort.java" 180 source file: "Blort.java" 199 source file: "Blort.java" 225 source file: "Blort.java" 246 source file: "Blort.java" [all …]
|
/dalvik/dx/tests/109-int-branch/ |
D | expected.txt | 30 source file: "blort.j" 45 source file: "blort.j" 66 source file: "blort.j"
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
D | PlainInsn.java | 66 RegisterSpec source) { in PlainInsn() argument 67 this(opcode, position, result, RegisterSpecList.make(source)); in PlainInsn()
|
D | Rops.java | 1168 Type source = sources.getType(0); in ropFor() local 1170 if (source == Type.KNOWN_NULL) { in ropFor() 1177 componentType = source.getComponentType(); in ropFor() 1182 Type source = sources.getType(1); in ropFor() local 1184 if (source == Type.KNOWN_NULL) { in ropFor() 1191 componentType = source.getComponentType(); in ropFor() 1715 public static Rop opConv(TypeBearer dest, TypeBearer source) { in opConv() argument 1717 switch (source.getBasicFrameType()) { in opConv() 1749 source.getType())); in opConv()
|
/dalvik/dx/tests/030-minimal-jasmin/ |
D | info.txt | 1 This test is just a minimal test involving assembling a jasmin source
|
/dalvik/docs/ |
D | prettify.js | 499 return { source: sourceBuf.join(''), tags: extractedTags }; 629 function tokenizeMarkup(source) { argument 630 var decorations = PR_MARKUP_LEXER(source); 635 end = i + 2 < decorations.length ? decorations[i + 2] : source.length; 638 var sourceChunk = source.substring(start, end);
|
/dalvik/dx/tests/140-ssa-phi-overlap/ |
D | info.txt | 2 to identify interference between source and result registers for phi
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | PlainInsn.java | 67 RegisterSpec source) { in PlainInsn() argument 68 this(opcode, position, result, RegisterSpecList.make(source)); in PlainInsn()
|
D | Rops.java | 1169 Type source = sources.getType(0); in ropFor() local 1171 if (source == Type.KNOWN_NULL) { in ropFor() 1178 componentType = source.getComponentType(); in ropFor() 1183 Type source = sources.getType(1); in ropFor() local 1185 if (source == Type.KNOWN_NULL) { in ropFor() 1192 componentType = source.getComponentType(); in ropFor() 1728 public static Rop opConv(TypeBearer dest, TypeBearer source) { in opConv() argument 1730 switch (source.getBasicFrameType()) { in opConv() 1766 source.getType())); in opConv()
|
/dalvik/dx/tests/069-dex-source-position/ |
D | info.txt | 1 This is a smoke test of dex conversion, which makes sure that source
|
D | expected.txt | 84 source file: "Blort.java" 134 source file: "Blort.java"
|
/dalvik/dx/tests/012-class-attrib-SourceFile/ |
D | expected.txt | 27 source: string{"Blort.java"}
|
/dalvik/dx/tests/138-invoke-polymorphic-again/ |
D | expected.txt | 42 source file: "Main.java" 86 source file: "Main.java"
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
D | FirstFitLocalCombiningAllocator.java | 809 RegisterSpec source = sources.get(i); in adjustAndMapSourceRangeRange() local 810 int sourceReg = source.getReg(); in adjustAndMapSourceRangeRange() 811 int category = source.getCategory(); in adjustAndMapSourceRangeRange() 820 addMapping(source, curRopReg); in adjustAndMapSourceRangeRange() 1157 RegisterSpec source = sources.get(i); in processPhiInsn() local 1158 SsaInsn def = ssaMeth.getDefinitionForRegister(source.getReg()); in processPhiInsn()
|
D | SsaToRop.java | 204 RegisterSpec source = sources.get(i); in visitPhiInsn() local 208 predBlock.addMoveToEnd(result, source); in visitPhiInsn()
|
/dalvik/dx/tests/111-use-null-as-array/ |
D | info.txt | 9 aget-byte for what was a boolean[] in the source code. In these cases,
|
/dalvik/dx/src/com/android/dx/merge/ |
D | DexMerger.java | 337 private List<UnsortedValue> readUnsortedValues(Dex source, IndexMap indexMap) { in readUnsortedValues() argument 338 TableOfContents.Section section = getSection(source.getTableOfContents()); in readUnsortedValues() 344 Dex.Section in = source.open(section.off); in readUnsortedValues() 348 result.add(new UnsortedValue(source, indexMap, value, i, offset)); in readUnsortedValues() 359 final Dex source; field in DexMerger.IdMerger.UnsortedValue 365 UnsortedValue(Dex source, IndexMap indexMap, T value, int index, int offset) { in UnsortedValue() argument 366 this.source = source; in UnsortedValue()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | RopperMachine.java | 602 RegisterSpec source = sources.get(0); in run() local 603 TypeBearer type = source.getTypeBearer(); in run() 604 if (source.getReg() != 0) { in run() 607 source)); in run()
|
/dalvik/dx/ |
D | NOTICE | 40 including but not limited to software source code, documentation 41 source, and configuration files. 69 communication on electronic mailing lists, source code control systems,
|
/dalvik/ |
D | NOTICE | 45 including but not limited to software source code, documentation 46 source, and configuration files. 74 communication on electronic mailing lists, source code control systems,
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | RopTranslator.java | 592 RegisterSpec source = in visitPlainCstInsn() local 596 RegisterSpecList.make(dest, source)); in visitPlainCstInsn()
|