HomeSort by relevance Sort by last modified time
    Searched refs:bytecode (Results 1 - 25 of 360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
Mnemonic.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
21 * <p>This interface has been separated from javassist.bytecode.Opcode
22 * because typical bytecode translators do not use mnemonics. If this
DuplicateMemberException.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
BadBytecode.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
19 * Signals that a bad bytecode sequence has been found.
23 super("bytecode " + opcode);
  /libcore/dalvik/src/main/java/dalvik/bytecode/
OpcodeInfo.java 17 package dalvik.bytecode;
  /external/javassist/src/main/javassist/convert/
Transformer.java 2 * Javassist, a Java-bytecode translator toolkit.
20 import javassist.bytecode.BadBytecode;
21 import javassist.bytecode.CodeAttribute;
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.ConstPool;
24 import javassist.bytecode.MethodInfo;
25 import javassist.bytecode.Opcode;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
IgnorableClassNotFoundException.java 1 package com.xtremelabs.robolectric.bytecode;
  /external/v8/src/interpreter/
bytecodes.h 13 #include "src/interpreter/bytecode-operands.h"
24 // Format is V(<bytecode>, <accumulator_use>, <operands>).
257 /* and one for each operand widening prefix bytecode */ \
272 /* Illegal bytecode (terminates execution) */ \
298 enum class Bytecode : uint8_t {
304 // evaluate to the same value as the last real bytecode.
319 // The maximum number of operands a bytecode may have.
322 // Returns string representation of |bytecode|.
323 static const char* ToString(Bytecode bytecode);
336 Bytecode bytecode = static_cast<Bytecode>(value); local
    [all...]
bytecode-pipeline.h 10 #include "src/interpreter/bytecode-register-allocator.h"
11 #include "src/interpreter/bytecode-register.h"
24 // Interface for bytecode pipeline stages.
29 // Write bytecode node |node| into pipeline. The node is only valid
34 // Write jump bytecode node |node| which jumps to |label| into pipeline.
40 // Binds |label| to the current bytecode location. This call implicitly
50 // Flush the pipeline and generate a bytecode array.
76 // statement position associated with 7 but no bytecode associated
133 // A container for a generated bytecode, it's operands, and source information.
137 INLINE(BytecodeNode(Bytecode bytecode
260 Bytecode bytecode() const { return bytecode_; } function in class:v8::internal::interpreter::final
    [all...]
bytecodes.cc 10 #include "src/interpreter/bytecode-traits.h"
61 const char* Bytecodes::ToString(Bytecode bytecode) {
62 switch (bytecode) {
64 case Bytecode::k##Name: \
74 std::string Bytecodes::ToString(Bytecode bytecode, OperandScale operand_scale) {
77 std::string value(ToString(bytecode));
79 Bytecode prefix_bytecode = OperandScaleToPrefixBytecode(operand_scale);
88 Bytecode Bytecodes::GetDebugBreak(Bytecode bytecode)
    [all...]
bytecode-peephole-optimizer.cc 5 #include "src/interpreter/bytecode-peephole-optimizer.h"
16 : next_stage_(next_stage), last_(Bytecode::kIllegal, BytecodeSourceInfo()) {
56 // bytecode to next stage as appropriate.
68 last_.set_bytecode(Bytecode::kIllegal);
72 return last_.bytecode() != Bytecode::kIllegal;
76 // An action shouldn't leave a NOP as last bytecode unless it has
79 DCHECK(node->bytecode() != Bytecode::kNop || node->source_info().is_valid());
86 // The rules for allowing the elision of the last bytecode base
    [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 2 * Javassist, a Java-bytecode translator toolkit.
21 import javassist.bytecode.*;
35 protected Bytecode bytecode; field in class:CodeGen
61 protected abstract boolean doit(Bytecode b, int opcode);
82 public CodeGen(Bytecode b) {
83 bytecode = b;
105 public int getMaxLocals() { return bytecode.getMaxLocals(); }
108 bytecode.setMaxLocals(n);
112 bytecode.incMaxLocals(size)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
NoSuchClassError.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
  /external/mesa3d/src/gallium/drivers/r600/
eg_asm.c 41 bc->bytecode[id++] =
49 bc->bytecode[id++] = EG_V_SQ_CF_ALU_WORD1_SQ_CF_INST_EXTENDED |
56 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) |
60 bc->bytecode[id++] = cf->inst |
69 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1);
70 bc->bytecode[id++] = cf->inst |
76 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr) |
80 bc->bytecode[id] = S_SQ_CF_ALLOC_EXPORT_WORD1_BURST_COUNT(cf->output.burst_count - 1) |
88 bc->bytecode[id] |= S_SQ_CF_ALLOC_EXPORT_WORD1_END_OF_PROGRAM(cf->output.end_of_program);
107 bc->bytecode[id++] = S_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(cf->output.gpr)
    [all...]
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/stackmap/
TypeTag.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.stackmap;
18 import javassist.bytecode.StackMapTable;
  /external/javassist/src/main/javassist/expr/
Expr.java 2 * Javassist, a Java-bytecode translator toolkit.
25 import javassist.bytecode.AccessFlag;
26 import javassist.bytecode.BadBytecode;
27 import javassist.bytecode.Bytecode;
28 import javassist.bytecode.ClassFile;
29 import javassist.bytecode.CodeAttribute;
30 import javassist.bytecode.CodeIterator;
31 import javassist.bytecode.ConstPool;
32 import javassist.bytecode.ExceptionTable
    [all...]
Cast.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
82 * Replaces the explicit cast operator with the bytecode derived from
114 Bytecode bytecode = jc.getBytecode(); local
115 storeStack(params, true, paramVar, bytecode);
118 bytecode.addConstZero(retType);
119 bytecode.addStore(retVar, retType); // initialize $_
122 bytecode.addLoad(retVar, retType);
124 replace0(pos, bytecode, 3)
    [all...]
Instanceof.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
85 * Replaces the instanceof operator with the bytecode derived from
120 Bytecode bytecode = jc.getBytecode(); local
121 storeStack(params, true, paramVar, bytecode);
124 bytecode.addConstZero(retType);
125 bytecode.addStore(retVar, retType); // initialize $_
128 bytecode.addLoad(retVar, retType);
130 replace0(pos, bytecode, 3)
    [all...]
FieldAccess.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
131 * @see javassist.bytecode.Descriptor#toCtClass(String, ClassPool)
140 * Replaces the method call with the bytecode derived from
195 Bytecode bytecode = jc.getBytecode(); local
196 storeStack(params, isStatic(), paramVar, bytecode);
201 bytecode.addOpcode(ACONST_NULL);
202 bytecode.addAstore(retVar);
205 bytecode.addConstZero(retType)
    [all...]
ConstructorCall.java 2 * Javassist, a Java-bytecode translator toolkit.
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.MethodInfo;
NewExpr.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
100 * @see javassist.bytecode.Descriptor
154 * Replaces the <tt>new</tt> expression with the bytecode derived from
199 Bytecode bytecode = jc.getBytecode(); local
200 storeStack(params, true, paramVar, bytecode);
203 bytecode.addConstZero(newType);
204 bytecode.addStore(retVar, newType); // initialize $_
208 bytecode.addAload(retVar)
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Util.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
17 import javassist.bytecode.CodeIterator;
18 import javassist.bytecode.Opcode;
FramePrinter.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
23 import javassist.bytecode.BadBytecode;
24 import javassist.bytecode.CodeAttribute;
25 import javassist.bytecode.CodeIterator;
26 import javassist.bytecode.ConstPool;
27 import javassist.bytecode.Descriptor;
28 import javassist.bytecode.InstructionPrinter;
29 import javassist.bytecode.MethodInfo;
41 * Constructs a bytecode printer
    [all...]
  /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/v1/src/test/java/com/xtremelabs/robolectric/
WithTestDefaultsRunner.java 7 import com.xtremelabs.robolectric.bytecode.ClassHandler;
8 import com.xtremelabs.robolectric.bytecode.RobolectricClassLoader;

Completed in 764 milliseconds

1 2 3 4 5 6 7 8 91011>>