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

1 2 3 45 6 7 8 910

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowWranglerTest.java 1 package com.xtremelabs.robolectric.bytecode;
  /external/v8/src/interpreter/
bytecode-array-writer.cc 5 #include "src/interpreter/bytecode-array-writer.h"
8 #include "src/interpreter/bytecode-label.h"
9 #include "src/interpreter/bytecode-register.h"
56 DCHECK(!Bytecodes::IsJump(node->bytecode()));
63 DCHECK(Bytecodes::IsJump(node->bytecode()));
104 DCHECK_NE(node->bytecode(), Bytecode::kIllegal);
106 Bytecode bytecode = node->bytecode(); 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.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...]
  /external/v8/src/regexp/
regexp-macro-assembler-irregexp.cc 219 int bytecode; local
222 bytecode = BC_LOAD_4_CURRENT_CHARS;
224 bytecode = BC_LOAD_2_CURRENT_CHARS;
227 bytecode = BC_LOAD_CURRENT_CHAR;
231 bytecode = BC_LOAD_4_CURRENT_CHARS_UNCHECKED;
233 bytecode = BC_LOAD_2_CURRENT_CHARS_UNCHECKED;
236 bytecode = BC_LOAD_CURRENT_CHAR_UNCHECKED;
239 Emit(bytecode, cp_offset);
  /system/netd/server/
SockDiag.cpp 415 // A SOCK_DIAG bytecode program that accepts the sockets we intend to destroy.
416 struct bytecode { struct
420 } __attribute__((packed)) bytecode; local
427 constexpr uint8_t bytecodelen = sizeof(bytecode);
429 bytecode = (struct bytecode) {
441 // necessary to keep the kernel bytecode verifier happy. If we don't have a JMP the bytecode
458 { &bytecode, bytecodelen },
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
408 * Appends an 8bit value of bytecode.
417 * Appends a 16bit value of bytecode.
424 * Appends a 32bit value of bytecode.
431 * Appends a invokevirtual, inovkespecial, or invokestatic bytecode.
445 * Ends appending bytecode.
CodeAttribute.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
138 throw new RuntimeCopyException("bad bytecode. fatal?");
Descriptor.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
MethodInfo.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
25 import javassist.bytecode.stackmap.MapMaker;
440 * bytecode contained in this method.
443 * the position of the bytecode (&gt;= 0). an index into the code
StackMap.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
24 import javassist.bytecode.StackMapTable.InsertLocal;
25 import javassist.bytecode.StackMapTable.NewRemover;
26 import javassist.bytecode.StackMapTable.Shifter;
500 // see javassist.bytecode.stackmap.MapMaker
AnnotationsAttribute.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
23 import javassist.bytecode.annotation.*;
42 * import javassist.bytecode.annotation.Annotation;
101 * @see javassist.bytecode.annotation.Annotation
StackMapTable.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
72 throw new RuntimeCopyException("bad bytecode. fatal?");
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
23 import javassist.bytecode.AccessFlag;
24 import javassist.bytecode.BadBytecode;
25 import javassist.bytecode.CodeAttribute;
26 import javassist.bytecode.CodeIterator;
27 import javassist.bytecode.ConstPool;
28 import javassist.bytecode.Descriptor;
29 import javassist.bytecode.ExceptionTable;
30 import javassist.bytecode.MethodInfo
    [all...]
Executor.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
20 import javassist.bytecode.BadBytecode;
21 import javassist.bytecode.CodeIterator;
22 import javassist.bytecode.ConstPool;
23 import javassist.bytecode.Descriptor;
24 import javassist.bytecode.MethodInfo;
25 import javassist.bytecode.Opcode;
64 * @throws BadBytecode if the bytecode violates the jvm spec
685 // blah[3] = new Integer(); // compiler doesnt catch it (has legal bytecode),
    [all...]
Type.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.analysis;
88 * represents. It occurs when bytecode reuses a local variable table
  /external/javassist/src/main/javassist/bytecode/stackmap/
Tracer.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.stackmap;
18 import javassist.bytecode.ByteArray;
19 import javassist.bytecode.Opcode;
20 import javassist.bytecode.ConstPool;
21 import javassist.bytecode.Descriptor;
22 import javassist.bytecode.BadBytecode;
81 * Does abstract interpretation on the given bytecode instruction.
116 * @param code bytecode
126 * @param code bytecode
    [all...]
MapMaker.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.stackmap;
19 import javassist.bytecode.*;
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 1 package test.javassist.bytecode.analysis;
10 import javassist.bytecode.AccessFlag;
11 import javassist.bytecode.BadBytecode;
12 import javassist.bytecode.Bytecode;
13 import javassist.bytecode.CodeIterator;
14 import javassist.bytecode.MethodInfo;
15 import javassist.bytecode.Opcode;
16 import javassist.bytecode.analysis.Analyzer;
17 import javassist.bytecode.analysis.Frame
    [all...]
  /kernel/tests/net/test/
sock_diag.py 65 # Bytecode operations.
176 """Compiles instructions to inet_diag bytecode.
206 or the bytecode won't validate. It doesn't have to be jmp - any instruction
213 A string, the raw bytecode.
265 def DecodeBytecode(bytecode):
268 while bytecode:
269 op, rest = cstruct.Read(bytecode, InetDiagBcOp)
295 bytecode = rest
301 def Dump(self, diag_req, bytecode):
302 if bytecode
422 bytecode = "" variable in class:SockDiag
    [all...]
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/javassist/src/main/javassist/compiler/
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...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 1 package com.xtremelabs.robolectric.bytecode;
15 * IMPORTANT -- increment this number when the bytecode generated for modified classes changes
81 throw new IllegalStateException("shouldn't be modifying bytecode after we've started writing cache! class=" + className);
ShadowWrangler.java 1 package com.xtremelabs.robolectric.bytecode;
  /external/v8/src/
eh-frame.cc 479 byte bytecode = eh_frame_iterator.GetNextByte(); local
481 if (((bytecode >> EhFrameConstants::kLocationMaskSize) & 0xff) ==
483 int value = (bytecode & EhFrameConstants::kLocationMask) *
491 if (((bytecode >> EhFrameConstants::kSavedRegisterMaskSize) & 0xff) ==
495 bytecode & EhFrameConstants::kLocationMask)
502 if (((bytecode >> EhFrameConstants::kFollowInitialRuleMaskSize) & 0xff) ==
505 bytecode & EhFrameConstants::kLocationMask)
510 switch (static_cast<EhFrameConstants::DwarfOpcodes>(bytecode)) {

Completed in 489 milliseconds

1 2 3 45 6 7 8 910