/prebuilts/misc/common/robolectric/lib/ |
robolectric-3.1.1-javadoc.jar | |
robolectric-utils-3.1.1-javadoc.jar | |
/external/v8/src/interpreter/ |
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...] |
bytecode-dead-code-optimizer.cc | 5 #include "src/interpreter/bytecode-dead-code-optimizer.h" 28 switch (node->bytecode()) { 29 case Bytecode::kReturn: 30 case Bytecode::kThrow: 31 case Bytecode::kReThrow: 49 switch (node->bytecode()) { 50 case Bytecode::kJump: 51 case Bytecode::kJumpConstant:
|
bytecode-peephole-table.h | 49 // Replacement bytecode (if valid). 50 Bytecode bytecode; member in struct:v8::internal::interpreter::final 57 static const PeepholeActionAndData* Lookup(Bytecode last, Bytecode current); 61 static_cast<size_t>(Bytecode::kLast) + 1;
|
bytecode-array-writer.h | 10 #include "src/interpreter/bytecode-pipeline.h" 23 // Class for emitting bytecode as the final stage of the bytecode 43 // Maximum sized packed bytecode is comprised of a prefix bytecode, 44 // plus the actual bytecode, plus the maximum number of operands times 47 2 * sizeof(Bytecode) +
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/ |
WithCustomClassListTestRunner.java | 13 addClassOrPackageToInstrument("com.xtremelabs.robolectric.bytecode.AndroidTranslatorClassIntrumentedTest$CustomPaint"); 14 addClassOrPackageToInstrument("com.xtremelabs.robolectric.bytecode.AndroidTranslatorClassIntrumentedTest$ClassWithPrivateConstructor");
|
WithTestDefaultsRunner.java | 7 import com.xtremelabs.robolectric.bytecode.ClassHandler; 8 import com.xtremelabs.robolectric.bytecode.RobolectricClassLoader;
|
/external/v8/src/regexp/ |
interpreter-irregexp.cc | 100 #define BYTECODE(name) \ 110 #define BYTECODE(name) \ 169 PrintF("\n\nStart bytecode interpreter\n\n"); 175 BYTECODE(BREAK) 178 BYTECODE(PUSH_CP) 185 BYTECODE(PUSH_BT) 192 BYTECODE(PUSH_REGISTER) 199 BYTECODE(SET_REGISTER) 203 BYTECODE(ADVANCE_REGISTER) 207 BYTECODE(SET_REGISTER_TO_CP [all...] |
/external/v8/src/compiler/ |
bytecode-branch-analysis.cc | 5 #include "src/compiler/bytecode-branch-analysis.h" 7 #include "src/interpreter/bytecode-array-iterator.h" 24 interpreter::Bytecode bytecode = iterator.current_bytecode(); local 26 if (interpreter::Bytecodes::IsJump(bytecode)) {
|
bytecode-branch-analysis.h | 18 // A class for identifying branch targets within a bytecode array. 20 // logic for high-level IR graphs built from bytecode. 23 // usage relies on the only backwards branches in bytecode being jumps 34 // Returns true if there are any forward branches to the bytecode at 40 // Returns true if there are any backward branches to the bytecode
|
/external/javassist/src/main/javassist/expr/ |
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...] |
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...] |
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...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/ |
bogus_code_obj.py | 2 Broken bytecode objects can easily crash the interpreter.
5 point in writing a bytecode verifier and putting it in CPython just for
|
/external/javassist/src/main/javassist/convert/ |
TransformBefore.java | 2 * Javassist, a Java-bytecode translator toolkit. 21 import javassist.bytecode.*; 83 Bytecode save = new Bytecode(cp, 0, 0); 84 Bytecode load = new Bytecode(cp, 0, 0); 96 private void makeCode2(Bytecode save, Bytecode load,
|
/external/javassist/src/main/javassist/ |
package.html | 5 <p>Javassist (<i>Java</i> programming <i>assist</i>ant) makes bytecode 7 bytecode in Java; it enables Java programs to define a new class at
|
/external/v8/tools/ignition/ |
bytecode_dispatches_report.py | 33 # Print the hottest 15 bytecode dispatch pairs reading from data.json 74 print "Top {} bytecode dispatch pairs:".format(top_count) 81 for bytecode, counters_from_bytecode in iteritems(dispatches_table): 82 top_bytecodes.append((bytecode, sum(itervalues(counters_from_bytecode)))) 91 for bytecode, counter in top_bytecodes: 92 print "{:>12d}\t{}".format(counter, bytecode) 96 dispatches_table, bytecode, top_count, sort_source_relative): 100 if bytecode in destinations: 101 count = destinations[bytecode] 105 bytecode_destinations = dispatches_table[bytecode] [all...] |
/art/test/952-invoke-custom/ |
info.txt | 3 This tests execution of invoke-custom. There is no bytecode to emit
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/ |
README.txt | 2 by bytecode analysis for import statements.
|
/external/javassist/src/main/javassist/compiler/ |
ProceedHandler.java | 2 * Javassist, a Java-bytecode translator toolkit. 18 import javassist.bytecode.Bytecode; 28 void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws CompileError;
|
/external/javassist/src/main/javassist/runtime/ |
package.html | 3 Runtime support classes required by modified bytecode.
|
/external/llvm/test/Assembler/ |
2004-10-22-BCWriterUndefBug.ll | 1 ;; The bytecode writer was trying to treat undef values as ConstantArray's when
|
/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...] |
/external/proguard/src/proguard/classfile/instruction/ |
package.html | 2 This package contains classes to represent Java bytecode instructions.
|