HomeSort by relevance Sort by last modified time
    Searched full:instruction (Results 751 - 775 of 6099) sorted by null

<<31323334353637383940>>

  /docs/source.android.com/src/devices/tech/dalvik/
constraints.jd 355 The index of instruction <code>n+1</code> must equal the index of
356 instruction <code>n</code> plus the length of instruction
367 The last instruction in the <code>insns</code> array must end at index
389 All targets of a <code>packed-switch</code> instruction must be
401 All targets of a <code>sparse-switch</code> instruction must be
493 instruction must be a valid index into the method constant pool. The
506 instruction must be a valid index into the method constant pool.
544 instruction must be less than <code>256</code>.
554 The <code>new</code> instruction must not refer to array classes
    [all...]
  /external/v8/src/compiler/
instruction.h 15 #include "src/compiler/instruction-codes.h"
109 // Lifetime of operand inside the instruction.
112 // instruction start. Register allocator is free to assign the same register
113 // to some other operand used inside instruction (i.e. temporary or
118 // instruction. This means that register allocator will not reuse it's
119 // register for any other operand inside instruction.
404 class Instruction : public ZoneObject {
438 static Instruction* New(Zone* zone, InstructionCode opcode) {
442 static Instruction* New(Zone* zone, InstructionCode opcode,
452 int size = static_cast<int>(RoundUp(sizeof(Instruction), kPointerSize)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 44 * middle of an instruction or is a definitely-dead opcode
56 * {@code non-null, sparse;} for each instruction offset to a branch of
57 * some sort, the list of targets for that instruction
62 * {@code non-null, sparse;} for each instruction offset to a throwing
63 * instruction, the list of exception handlers for that instruction
206 * possibility of throwing, so this instruction needs to
226 * only the jsr instruction) but is otherwise treated
228 * target and next instruction begin new blocks.)
285 * instruction at the end of this block, if any. I
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 29 class Instruction;
60 // ReplaceInstWithValue - Replace all uses of an instruction (specified by BI)
61 // with a value, then remove and delete the original instruction.
66 // ReplaceInstWithInst - Replace the instruction specified by BI with the
67 // instruction specified by I. The original instruction is deleted and BI is
68 // updated to point to the new instruction.
71 BasicBlock::iterator &BI, Instruction *I);
73 // ReplaceInstWithInst - Replace the instruction specified by From with the
74 // instruction specified by To
    [all...]
  /external/llvm/lib/Target/X86/
X86FixupLEAs.cpp 44 /// \brief Given a machine register, look for the instruction
46 /// try to replace it with an equivalent LEA instruction.
48 /// instruction.
52 /// \brief Given a memory access or LEA instruction
54 /// an opportunity to replace the instruction which sets the base or index
55 /// register with an equivalent LEA instruction.
59 /// \brief Given a LEA instruction which is unprofitable
60 /// on Silvermont try to replace it with an equivalent ADD instruction
64 /// \brief Determine if an instruction references a machine register
69 /// for an instruction which writes a register withi
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 40 // ConstantFold*Instruction Implementations
89 Instruction::CastOps firstOp = Instruction::CastOps(Op->getOpcode());
90 Instruction::CastOps secondOp = Instruction::CastOps(opc);
108 // the first element. If so, return the appropriate GEP instruction.
237 case Instruction::Or: {
252 case Instruction::And: {
266 case Instruction::LShr: {
288 case Instruction::Shl:
    [all...]
  /art/disassembler/
disassembler_mips.h 40 // Address and encoding of the last disassembled instruction.
41 // Needed to produce more readable disassembly of certain 2-instruction sequences.
  /art/runtime/arch/
instruction_set_features_test.cc 36 // Take the default set of instruction features from the build.
63 // Take the default set of instruction features from the build.
101 // Take the default set of instruction features from the build.
105 // Check we get the same instruction set features using /proc/cpuinfo.
135 // Take the default set of instruction features from the build.
139 // Check we get the same instruction set features using AT_HWCAP.
148 // Take the default set of instruction features from the build.
152 // Check we get the same instruction set features using assembly tests.
  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 32 const Instruction::ArrayDataPayload* payload =
33 reinterpret_cast<const Instruction::ArrayDataPayload*>(insns + payload_offset);
  /art/test/479-regression-implicit-null-check/src/
Main.java 31 // next instruction can do implicit null checks).
33 // instruction checks a different object.
  /art/tools/dexfuzz/src/dexfuzz/program/
MSwitchInsn.java 27 * The MInsns this switch instruction branches to.
36 * Clone this MSwitchInsn, and clone the wrapped Instruction.
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
NewMethodCaller.java 24 import dexfuzz.rawdex.Instruction;
25 import dexfuzz.rawdex.Instruction.InvokeFormatInfo;
144 newInsn.insn = new Instruction();
148 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_VIRTUAL);
151 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_DIRECT);
154 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_SUPER);
157 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_STATIC);
160 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_INTERFACE);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format00x.java 20 import dexfuzz.rawdex.Instruction;
31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format1.java 20 import dexfuzz.rawdex.Instruction;
31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format10x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format11x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format12x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format2.java 20 import dexfuzz.rawdex.Instruction;
31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format22x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format23x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format3.java 20 import dexfuzz.rawdex.Instruction;
31 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format32x.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format35mi.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format35ms.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
Format3rmi.java 20 import dexfuzz.rawdex.Instruction;
26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {

Completed in 121 milliseconds

<<31323334353637383940>>