/hardware/google/apf/ |
apf_interpreter.c | 37 * @param program the program bytecode. 87 const uint8_t bytecode = program[pc++]; local 88 const uint32_t opcode = EXTRACT_OPCODE(bytecode); 89 const uint32_t reg_num = EXTRACT_REGISTER(bytecode); 93 const uint32_t len_field = EXTRACT_IMM_LENGTH(bytecode);
|
/dalvik/docs/ |
dexopt.html | 19 <li>Class data, notably bytecode, must be shared between multiple 29 <li>Bytecode verification is necessary, but slow, so we want to verify 31 <li>Bytecode optimization (quickened instructions, method pruning) is 41 pieces). On the other hand, having the bytecode on the local heap makes 52 <li>Bytecode verification is mandatory for all classes, but we want 54 <li>Optimizations that require rewriting bytecode must be done ahead 70 The bytecode cannot be memory-mapped and executed directly from the zip 167 The bytecode verification process involves scanning through the instructions 172 <a href="verifier.html">Dalvik Bytecode Verifier Notes</a> for more 190 <a href="verifier.html">Dalvik Bytecode Verifier Notes</a> documen [all...] |
debugger.html | 19 relies on bytecode insertion, something the Dalvik VM does not currently 59 for all bytecode, which made it necessary to scan for breakpoints by 73 bytecode and lists describing which registers are used to hold method 75 When <code>dx</code> converts Java bytecode to Dalvik bytecode, it must 81 Dalvik bytecode if the values are never used or no longer needed. 205 The translation from Java bytecode to Dalvik bytecode may result in 214 The Dalvik bytecode uses a common <code>return</code> instruction for both
|
/external/javassist/src/main/javassist/util/proxy/ |
ProxyFactory.java | 2 * Javassist, a Java-bytecode translator toolkit. 29 import javassist.bytecode.*; 860 Bytecode code = new Bytecode(cp, 0, 0); 867 code.addOpcode(Bytecode.RETURN); [all...] |
/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 },
|
/art/test/142-classloader2/src/ |
Main.java | 79 System.out.println("Should not be able to instantiate B with bad dex bytecode."); 89 System.out.println("Should not be able to instantiate B with bad dex bytecode.");
|
/dalvik/opcode-gen/ |
README.txt | 23 * Update the file bytecode.txt, in this directory. 55 * Update the file bytecode.txt, and run regen-all, as per above.
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IExceptionHandlerTable.java | 61 * with method's bytecode and the class's constant pool. 71 * in 'exception' will eventually be consistent with method's bytecode and
|
/external/freetype/include/freetype/ |
ftgasp.h | 47 * bytecode interpreter to duplicate the Windows text rendering results. 66 * This *really* means TrueType bytecode interpretation. If this bit
|
/external/javassist/src/main/javassist/bytecode/ |
EnclosingMethodAttribute.java | 2 * Javassist, a Java-bytecode translator toolkit. 16 package javassist.bytecode;
|
/external/javassist/src/main/javassist/convert/ |
TransformCall.java | 2 * Javassist, a Java-bytecode translator toolkit. 23 import javassist.bytecode.*;
|
/external/pdfium/third_party/freetype/include/freetype/ |
ftgasp.h | 47 * bytecode interpreter to duplicate the Windows text rendering results. 66 * This *really* means TrueType bytecode interpretation. If this bit
|
/external/v8/src/compiler/ |
liveness-analyzer.h | 36 // TODO(leszeks): Not used by bytecode, remove once AST graph builder is gone. 80 // TODO(leszeks): Always true for bytecode, remove once AST graph builder is
|
/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)) {
|
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftgasp.h | 47 * bytecode interpreter to duplicate the Windows text rendering results. 66 * This *really* means TrueType bytecode interpretation. If this bit
|
/prebuilts/tools/common/proguard/proguard4.7/docs/ |
FAQ.html | 59 Java source code (.java files) is typically compiled to bytecode (.class 60 files). Bytecode is more compact than Java source code, but it may still 62 Shrinking programs such as <b>ProGuard</b> can analyze bytecode and remove 68 By default, compiled bytecode still contains a lot of debugging information: 71 the bytecode and reverse-engineer entire programs. Sometimes, this is not 94 <b>ProGuard</b> can also perform optimizations at the bytecode level, inside 122 At the very least, your bytecode may become a bit smaller. 217 bytecode, in an attempt to fool decompilers. <b>ProGuard</b> does not do this,
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
CodeOutput.java | 20 * Output stream of code units, for writing out Dalvik bytecode.
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
Java7Compatibility.java | 30 * Visitor that ensures bytecode version <= 51 (Java 7) and that throws if it default or static 110 ClassReader bytecode = checkNotNull(factory.readIfKnown(internalName), local 113 bytecode.accept(copier, ClassReader.SKIP_DEBUG /* we're copying generated code anyway */); 235 // This does indicate the end of visiting bytecode instructions, so defensively reset mv.
|
/external/iproute2/include/linux/ |
inet_diag.h | 53 /* Bytecode is sequence of 4 byte commands followed by variable arguments.
|
/external/javassist/sample/preproc/ |
Assistant.java | 2 * Javassist, a Java-bytecode translator toolkit.
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
TypedBlock.java | 2 * Javassist, a Java-bytecode translator toolkit. 16 package javassist.bytecode.stackmap; 18 import javassist.bytecode.*; 142 * For example, <code>javassist.bytecode.stackmap.BasicBlock</code>.
|
/external/javassist/src/main/javassist/compiler/ast/ |
ASTree.java | 2 * Javassist, a Java-bytecode translator toolkit.
|
Expr.java | 2 * Javassist, a Java-bytecode translator toolkit.
|
NewExpr.java | 2 * Javassist, a Java-bytecode translator toolkit.
|
Visitor.java | 2 * Javassist, a Java-bytecode translator toolkit.
|