HomeSort by relevance Sort by last modified time
    Searched full:bytecode (Results 101 - 125 of 1412) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
AnnotationDefaultAttribute.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
19 import javassist.bytecode.annotation.AnnotationsWriter;
20 import javassist.bytecode.annotation.MemberValue;
62 * @see javassist.bytecode.annotation.MemberValue
88 * @see #setDefaultValue(javassist.bytecode.annotation.MemberValue)
136 * @see javassist.bytecode.annotation.Annotation#createMemberValue(ConstPool, CtClass)
CodeIterator.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
36 protected byte[] bytecode; field in class:CodeIterator
43 bytecode = ca.getCode();
72 * Sets a mark to the bytecode at the given index.
73 * The mark can be used to track the position of that bytecode
76 * bytecode, the mark is set to the inserted code block.
106 return bytecode.length;
112 public int byteAt(int index) { return bytecode[index] & 0xff; }
118 bytecode[index] = (byte)value
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
61 Bytecode code = new Bytecode(cp);
121 Bytecode code = new Bytecode(cp);
173 Bytecode code = new Bytecode(cp);
175 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
179 code.addGetfield(Bytecode.THIS, fieldName, fieldType)
    [all...]
Javac.java 2 * Javassist, a Java-bytecode translator toolkit.
27 import javassist.bytecode.Bytecode;
28 import javassist.bytecode.CodeAttribute;
29 import javassist.bytecode.LocalVariableAttribute;
30 import javassist.bytecode.BadBytecode;
31 import javassist.bytecode.Opcode;
39 private Bytecode bytecode; field in class:Javac
52 this(new Bytecode(thisClass.getClassFile2().getConstPool(), 0, 0)
    [all...]
JvstCodeGen.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
44 public JvstCodeGen(Bytecode b, CtClass cc, ClassPool cp) {
70 bytecode.addOpcode(ACONST_NULL);
83 compileParameterList(bytecode, paramTypeList, indexOfParam1());
89 bytecode.addLdc(Descriptor.ofMethod(returnType, paramTypeList));
90 bytecode.addInvokestatic("javassist/runtime/Desc", "getParams",
100 bytecode.addLdc(Descriptor.of(dollarType));
107 bytecode.addLdc(param0Type);
115 bytecode.addInvokestatic("javassist/runtime/Desc", method
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
fields_index_changes.html 148 <nobr><A HREF="dalvik.bytecode.Opcodes.html#dalvik.bytecode.Opcodes.OP_BREAKPOINT" class="hiddenlink" target="rightframe">OP_BREAKPOINT</A>
150 <nobr><A HREF="dalvik.bytecode.Opcodes.html#dalvik.bytecode.Opcodes.OP_EXECUTE_INLINE" class="hiddenlink" target="rightframe">OP_EXECUTE_INLINE</A>
152 <nobr><A HREF="dalvik.bytecode.Opcodes.html#dalvik.bytecode.Opcodes.OP_EXECUTE_INLINE_RANGE" class="hiddenlink" target="rightframe">OP_EXECUTE_INLINE_RANGE</A>
154 <nobr><A HREF="dalvik.bytecode.Opcodes.html#dalvik.bytecode.Opcodes.OP_IGET_OBJECT_QUICK" class="hiddenlink" target="rightframe">OP_IGET_OBJECT_QUICK</A>
156 <nobr><A HREF="dalvik.bytecode.Opcodes.html#dalvik.bytecode.Opcodes.OP_IGET_QUICK" class="hiddenlink" target="rightframe">OP_IGET_QUICK</A
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r700_asm.c 26 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf)
29 *bytecode++ = S_SQ_CF_WORD0_ADDR(cf->addr >> 1);
30 *bytecode++ = cf->inst |
38 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
51 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
62 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
  /external/llvm/docs/HistoricalNotes/
2000-12-06-MeetingSummary.txt 4 We met to discuss the LLVM instruction format and bytecode representation:
20 bytecode would have to parse and handle it. This would slow down the
38 1. Including dominator information in the LLVM bytecode
42 in the LLVM bytecode program. Basic blocks could be numbered according
43 to the order of occurrence in the bytecode representation.
66 runtime to skip information that it didn't understand in a bytecode
2001-02-13-Reference-Memory.txt 30 no way to represent this in either the bytecode or assembly.
31 B. When parsing assembly/bytecode, we effectively have to do a full
36 bytecode to get around this... what do you think?
2001-02-13-Reference-MemoryResponse.txt 34 > no way to represent this in either the bytecode or assembly.
35 > B. When parsing assembly/bytecode, we effectively have to do a full
42 how big the bytecode files are before expanding them further. I am pretty
43 keen to explore the implications of LLVM for mobile devices. Both bytecode
  /external/mesa3d/src/gallium/drivers/r600/
r700_asm.c 26 void r700_bytecode_cf_vtx_build(uint32_t *bytecode, const struct r600_bytecode_cf *cf)
29 *bytecode++ = S_SQ_CF_WORD0_ADDR(cf->addr >> 1);
30 *bytecode++ = cf->inst |
38 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
51 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
62 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) |
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.annotation;
18 import javassist.bytecode.ConstPool;
MemberValue.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
20 import javassist.bytecode.Descriptor;
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 2 * Javassist, a Java-bytecode translator toolkit.
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.MethodInfo;
  /external/javassist/src/main/javassist/tools/
Dump.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.ClassFile;
20 import javassist.bytecode.ClassFilePrinter;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowFoo.java 1 package com.xtremelabs.robolectric.bytecode;
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 4 REM obfuscator, and preverifier for Java bytecode.
proguardgui.bat 4 REM optimizer, obfuscator, and preverifier for Java bytecode.
retrace.bat 4 REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
  /sdk/files/proguard/bin/
proguard.bat 4 REM obfuscator, and preverifier for Java bytecode.
proguardgui.bat 4 REM optimizer, obfuscator, and preverifier for Java bytecode.
retrace.bat 4 REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 1 package test.javassist.bytecode.analysis;
10 import javassist.bytecode.AccessFlag;
11 import javassist.bytecode.Bytecode;
12 import javassist.bytecode.MethodInfo;
13 import javassist.bytecode.Opcode;
14 import javassist.bytecode.analysis.Subroutine;
15 import javassist.bytecode.analysis.SubroutineScanner;
111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
dalvik.bytecode.Opcodes.html 10 dalvik.bytecode.Opcodes
74 Interface dalvik.bytecode.<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html" target="_top"><font size="+2"><code>Opcodes</code></font></A>
87 <A NAME="dalvik.bytecode.Opcodes.OP_IGET_WIDE_VOLATILE"></A>
88 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE_VOLATILE" target="_top"><code>OP_IGET_WIDE_VOLATILE</code></A></nobr>
94 <A NAME="dalvik.bytecode.Opcodes.OP_IPUT_WIDE_VOLATILE"></A>
95 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE_VOLATILE" target="_top"><code>OP_IPUT_WIDE_VOLATILE</code></A></nobr>
101 <A NAME="dalvik.bytecode.Opcodes.OP_SGET_WIDE_VOLATILE"></A>
102 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_SGET_WIDE_VOLATILE" target="_top"><code>OP_SGET_WIDE_VOLATILE</code></A></nobr>
108 <A NAME="dalvik.bytecode.Opcodes.OP_SPUT_WIDE_VOLATILE"></A
    [all...]
  /external/javassist/src/main/javassist/
CtBehavior.java 2 * Javassist, a Java-bytecode translator toolkit.
18 import javassist.bytecode.*;
139 * the method will be rejected by the bytecode verifier.
315 * @see javassist.bytecode.Descriptor
316 * @see javassist.bytecode.SignatureAttribute
401 Bytecode b = jv.compileBody(this, src);
451 * See {@link javassist.bytecode.AttributeInfo}.
468 * See {@link javassist.bytecode.AttributeInfo}.
668 * Inserts bytecode at the beginning of the body.
671 * the bytecode is inserted befor
    [all...]

Completed in 988 milliseconds

1 2 3 45 6 7 8 91011>>