/art/test/422-instanceof/ |
info.txt | 1 Tests for instanceof bytecode.
|
/art/test/112-double-math/ |
info.txt | 1 This checks the neg_double bytecode.
|
/art/test/088-monitor-verification/ |
info.txt | 2 lock checks in the bytecode verifier.
|
/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...] |
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-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...] |
mkpeephole.cc | 12 #include "src/interpreter/bytecode-peephole-table.h" 33 std::string BytecodeName(Bytecode bytecode) { 34 return "Bytecode::k" + std::string(Bytecodes::ToString(bytecode)); 40 static_cast<size_t>(Bytecode::kLast) + 1; 59 PeepholeActionAndData LookupActionAndData(Bytecode last, Bytecode current); 60 void BuildRow(Bytecode last, Row* row); 81 Bytecode last, Bytecode current) [all...] |
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...] |
interpreter-assembler.h | 13 #include "src/interpreter/bytecode-register.h" 23 InterpreterAssembler(Isolate* isolate, Zone* zone, Bytecode bytecode, 27 // Returns the count immediate for bytecode operand |operand_index| in the 28 // current bytecode. 30 // Returns the 8-bit flag for bytecode operand |operand_index| in the 31 // current bytecode. 33 // Returns the index immediate for bytecode operand |operand_index| in the 34 // current bytecode. 36 // Returns the UImm8 immediate for bytecode operand |operand_index| in th 191 Bytecode bytecode() const { return bytecode_; } function in class:v8::internal::interpreter::InterpreterAssembler [all...] |
/external/robolectric/v1/lib/main/ |
javassist-3.14.0-GA.jar | |
/external/javassist/src/main/javassist/bytecode/analysis/ |
package.html | 3 Bytecode Analysis API. 5 <p>This package provides an API for performing data-flow analysis on a method's bytecode. 8 bytecode, find dead bytecode, and identify unnecessary checkcasts. 11 class file and Java bytecode. For more details, read this book:
|
/external/guice/extensions/persist/lib/ |
javassist.jar | |
/prebuilts/misc/common/robolectric/lib/ |
robolectric-3.1.1-sources.jar | |
/external/guice/extensions/struts2/lib/ |
javassist.jar | |
/prebuilts/tools/common/m2/repository/org/javassist/javassist/3.19.0-GA/ |
javassist-3.19.0-GA.jar | |
/external/javassist/src/main/javassist/bytecode/annotation/ |
package.html | 3 Bytecode-level Annotations API.
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/ |
IgnorableClassNotFoundException.java | 1 package com.xtremelabs.robolectric.bytecode;
|
/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/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/javassist/src/main/javassist/bytecode/ |
package.html | 3 Bytecode-level API. 7 bytecode instruction, and so on. 10 class file and Java bytecode. For more details, read this book:
|
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);
|
/art/test/080-oom-throw/ |
info.txt | 3 the interpreter and re-execute the bytecode.
|
/external/iptables/extensions/ |
libxt_bpf.t | 2 -m bpf --bytecode "4,48 0 0 9,21 0 1 6,6 0 0 1,6 0 0 0";=;OK
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
2004-10-22-BCWriterUndefBug.ll | 1 ;; The bytecode writer was trying to treat undef values as ConstantArray's when
|
/external/v8/src/ |
DEPS | 13 "+src/interpreter/bytecode-array-iterator.h", 14 "+src/interpreter/bytecode-decoder.h", 15 "+src/interpreter/bytecode-flags.h", 16 "+src/interpreter/bytecode-register.h",
|