Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 28) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/util/
DDexJarMaker.java78 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/
DDeadCodeRemover.java100 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()
DEscapeAnalysis.java569 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()
DSsaBasicBlock.java568 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/
Dexpected.txt28 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/
Dexpected.txt30 source file: "blort.j"
45 source file: "blort.j"
66 source file: "blort.j"
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DPlainInsn.java66 RegisterSpec source) { in PlainInsn() argument
67 this(opcode, position, result, RegisterSpecList.make(source)); in PlainInsn()
DRops.java1168 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/
Dinfo.txt1 This test is just a minimal test involving assembling a jasmin source
/dalvik/docs/
Dprettify.js499 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/
Dinfo.txt2 to identify interference between source and result registers for phi
/dalvik/dx/src/com/android/dx/rop/code/
DPlainInsn.java67 RegisterSpec source) { in PlainInsn() argument
68 this(opcode, position, result, RegisterSpecList.make(source)); in PlainInsn()
DRops.java1169 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/
Dinfo.txt1 This is a smoke test of dex conversion, which makes sure that source
Dexpected.txt84 source file: "Blort.java"
134 source file: "Blort.java"
/dalvik/dx/tests/012-class-attrib-SourceFile/
Dexpected.txt27 source: string{"Blort.java"}
/dalvik/dx/tests/138-invoke-polymorphic-again/
Dexpected.txt42 source file: "Main.java"
86 source file: "Main.java"
/dalvik/dx/src/com/android/dx/ssa/back/
DFirstFitLocalCombiningAllocator.java809 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()
DSsaToRop.java204 RegisterSpec source = sources.get(i); in visitPhiInsn() local
208 predBlock.addMoveToEnd(result, source); in visitPhiInsn()
/dalvik/dx/tests/111-use-null-as-array/
Dinfo.txt9 aget-byte for what was a boolean[] in the source code. In these cases,
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java337 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/
DRopperMachine.java602 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/
DNOTICE40 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/
DNOTICE45 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/
DRopTranslator.java592 RegisterSpec source = in visitPlainCstInsn() local
596 RegisterSpecList.make(dest, source)); in visitPlainCstInsn()

12