HomeSort by relevance Sort by last modified time
    Searched refs:insn (Results 151 - 175 of 1519) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
emit-rtl.h 75 /* Return the first insn of the current sequence or current function. */
83 /* Specify a new insn as the first in the chain. */
86 set_first_insn (rtx insn)
88 gcc_checking_assert (!insn || !PREV_INSN (insn));
89 crtl->emit.x_first_insn = insn;
92 /* Return the last insn emitted in current sequence or current function. */
100 /* Specify a new insn as the last in the chain. */
103 set_last_insn (rtx insn)
105 gcc_checking_assert (!insn || !NEXT_INSN (insn))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
adr.d 1 #objdump: -dr --prefix-addresses --show-raw-insn
adrl.d 1 #objdump: -dr --prefix-addresses --show-raw-insn
half-prec-psyntax.d 1 # objdump: -dr --prefix-addresses --show-raw-insn
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21h.java 45 public String insnArgString(DalvInsn insn) {
46 RegisterSpecList regs = insn.getRegisters();
47 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
54 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
55 RegisterSpecList regs = insn.getRegisters();
56 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
71 public boolean isCompatible(DalvInsn insn) {
72 RegisterSpecList regs = insn.getRegisters();
73 if (!((insn instanceof CstInsn) &&
79 CstInsn ci = (CstInsn) insn;
    [all...]
Form21c.java 48 public String insnArgString(DalvInsn insn) {
49 RegisterSpecList regs = insn.getRegisters();
50 return regs.get(0).regString() + ", " + cstString(insn);
55 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
57 return cstComment(insn);
71 public boolean isCompatible(DalvInsn insn) {
72 if (!(insn instanceof CstInsn)) {
76 RegisterSpecList regs = insn.getRegisters();
104 CstInsn ci = (CstInsn) insn;
125 public void writeTo(AnnotatedOutput out, DalvInsn insn) {
    [all...]
Form12x.java 45 public String insnArgString(DalvInsn insn) {
46 RegisterSpecList regs = insn.getRegisters();
61 public String insnCommentString(DalvInsn insn, boolean noteIndices) {
74 public boolean isCompatible(DalvInsn insn) {
75 if (!(insn instanceof SimpleInsn)) {
79 RegisterSpecList regs = insn.getRegisters();
118 public void writeTo(AnnotatedOutput out, DalvInsn insn) {
119 RegisterSpecList regs = insn.getRegisters();
128 write(out, opcodeUnit(insn,
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format22cs.java 27 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
30 //file.writeByte((byte) insn.info.value);
31 //file.writeByte((byte) (insn.vreg_a | (insn.vreg_b << 4)));
32 //file.writeUShort((short) insn.vreg_c);
57 public int getPoolIndex(Instruction insn) {
58 return (int) insn.vregC;
62 public void setPoolIndex(Instruction insn, int poolIndex) {
63 insn.vregC = poolIndex;
Format23x.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeByte((byte) insn.vregB);
30 file.writeByte((byte) insn.vregC);
Format3rmi.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
30 file.writeUShort((short) insn.vregC);
Format3rms.java 26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException {
27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
29 file.writeUShort((short) insn.vregB);
30 file.writeUShort((short) insn.vregC);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.cpp 68 Instruction *insn = new_Instruction(func, op, ty); local
70 insn->setDef(0, dst);
71 insn->setSrc(0, src);
73 insert(insn);
74 return insn;
81 Instruction *insn = new_Instruction(func, op, ty); local
83 insn->setDef(0, dst);
84 insn->setSrc(0, src0);
85 insn->setSrc(1, src1);
87 insert(insn);
95 Instruction *insn = new_Instruction(func, op, ty); local
109 Instruction *insn = new_Instruction(func, OP_LOAD, ty); local
125 Instruction *insn = new_Instruction(func, op, ty); local
142 Instruction *insn = mkOp1(OP_VFETCH, ty, dst, sym); local
165 Instruction *insn = mkOp1(op, ty, dst, sym); local
173 Instruction *insn = new_Instruction(func, OP_MOV, ty); local
185 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(src->reg.size)); local
198 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(dst->reg.size)); local
212 Instruction *insn = new_Instruction(func, op, dstTy); local
226 CmpInstruction *insn = new_CmpInstruction(func, op); local
284 Instruction *insn = NULL; local
309 FlowInstruction *insn = new_FlowInstruction(func, op, targ); local
337 Instruction *insn = mkOp(OP_NOP, TYPE_NONE, NULL); local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SourceInterpreter.java 54 public Value newOperation(final AbstractInsnNode insn) {
56 switch (insn.getOpcode()) {
64 Object cst = ((LdcInsnNode) insn).cst;
68 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
73 return new SourceValue(size, insn);
76 public Value copyOperation(final AbstractInsnNode insn, final Value value) {
77 return new SourceValue(value.getSize(), insn);
80 public Value unaryOperation(final AbstractInsnNode insn, final Value value)
83 switch (insn.getOpcode()) {
95 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
    [all...]
Analyzer.java 173 int insn = queue[--top]; local
174 Frame f = frames[insn];
175 Subroutine subroutine = subroutines[insn];
176 queued[insn] = false;
179 AbstractInsnNode insnNode = m.instructions.get(insn);
187 merge(insn + 1, f, subroutine);
188 newControlFlowEdge(insn, insn + 1);
196 merge(insn + 1, current, subroutine);
197 newControlFlowEdge(insn, insn + 1);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-fr30.c 33 const CGEN_INSN * insn; member in struct:__anon75147
114 fr30_insn insn;
120 insn.insn = fr30_cgen_assemble_insn
121 (gas_cgen_cpu_desc, str, & insn.fields, insn.buffer, & errmsg);
123 if (!insn.insn)
130 gas_cgen_finish_insn (insn.insn, insn.buffer
112 fr30_insn insn; local
226 const CGEN_INSN * insn; local
376 char * insn = delay_insns[i]; local
    [all...]
tc-epiphany.c 37 const CGEN_INSN * insn; member in struct:__anon75146
61 /* Flag to detect when switching to code section where insn alignment is
283 unsigned char *insn = (unsigned char *)where;
318 value = (((value & 0xff) << 5) | insn[0])
319 | (insn[1] << 8)
321 | (insn[2] << 16);
417 epiphany_insn insn;
422 memset (&insn, 0, sizeof (insn));
483 insn.insn = epiphany_cgen_assemble_ins
279 unsigned char *insn = (unsigned char *)where; local
411 epiphany_insn insn; local
766 const CGEN_INSN *insn; local
1041 const CGEN_INSN *insn = fixP->fx_cgen.insn; local
    [all...]
tc-tic30.c 271 struct tic30_insn insn; variable in typeref:struct:tic30_insn
388 debug ("parallel insn = %s\n", parallel_insn);
645 unsigned operands[2]; /* Number of given operands for each insn. */
748 ordinal_names[insn.operands]);
766 ordinal_names[insn.operands]);
783 ordinal_names[insn.operands]);
805 /* Now parse operand adding info to 'insn' as we go along. */
871 debug ("Number of operands in first insn: %d\n", p_insn.operands[0]);
872 debug ("Number of operands in second insn: %d\n", p_insn.operands[1]);
    [all...]
tc-mep.c 38 const CGEN_INSN * insn; member in struct:__anon75199
370 mep_check_for_disabled_registers (mep_insn *insn)
383 b = insn->buffer[0] * 256 + insn->buffer[1];
385 b = insn->buffer[1] * 256 + insn->buffer[0];
387 b = insn->buffer[0];
513 /* Variant of mep_cgen_assemble_insn. Assemble insn STR of cpu CD as a
514 coprocessor instruction, if possible, into FIELDS, BUF, and INSN. */
534 const CGEN_INSN *insn = ilist->insn
532 const CGEN_INSN *insn = ilist->insn; local
658 mep_insn insn; local
688 mep_insn insn; local
791 mep_insn insn; local
854 mep_insn insn; local
919 const CGEN_INSN *insn = saved_insns[idx].insn; local
1245 mep_insn insn; local
1353 mep_insn insn; local
1456 int insn; member in struct:__anon75201
2055 const CGEN_INSN *insn = NULL; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 123 * @param insn {@code non-null;} instruction to scrutinize
127 private static boolean hasLocalInfo(DalvInsn insn) {
128 if (insn instanceof LocalSnapshot) {
129 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals();
136 } else if (insn instanceof LocalStart) {
137 RegisterSpec spec = ((LocalStart) insn).getLocal();
168 for (DalvInsn insn : insns) {
169 addConstants(result, insn);
180 * @param insn {@code non-null;} instruction to scrutinize
183 DalvInsn insn) {
439 DalvInsn insn = insns.get(i); local
480 DalvInsn insn = insns.get(i); local
594 DalvInsn insn = insns.get(i); local
629 DalvInsn insn = insns.get(i); local
710 DalvInsn insn = insns.get(i); local
732 DalvInsn insn = insns.get(i); local
872 DalvInsn insn = insns.get(i); local
896 DalvInsn insn = insns.get(i); local
    [all...]
RopTranslator.java 24 import com.android.dx.rop.code.Insn;
188 method.getBlocks().forEachInsn(new Insn.BaseVisitor() {
190 public void visitPlainCstInsn(PlainCstInsn insn) {
191 if (insn.getOpcode().getOpcode()== RegOps.MOVE_PARAM) {
193 ((CstInteger) insn.getConstant()).getValue();
197 == insn.getResult().getReg());
270 Insn lastInsn = block.getLastInsn();
298 TargetInsn insn = local
302 output.add(insn);
449 * @param insn {@code non-null;} instruction in questio
677 Insn insn local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mxu.s 7 .macro test1 insn
8 \insn xr1, xr2, xr3, xr4,AA,WW
9 \insn xr1, xr2, xr3, xr4,AA,LW
10 \insn xr1, xr2, xr3, xr4,AA,HW
11 \insn xr1, xr2, xr3, xr4,AA,XW
13 \insn xr1, xr2, xr3, xr4,AA,0
14 \insn xr1, xr2, xr3, xr4,AA,1
15 \insn xr1, xr2, xr3, xr4,AA,2
16 \insn xr1, xr2, xr3, xr4,AA,3
18 \insn xr1, xr2, xr3, xr4,AS,W
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 22 import com.android.dexgen.rop.code.Insn;
183 method.getBlocks().forEachInsn(new Insn.BaseVisitor() {
184 public void visitPlainCstInsn(PlainCstInsn insn) {
185 if (insn.getOpcode().getOpcode()== RegOps.MOVE_PARAM) {
187 ((CstInteger) insn.getConstant()).getValue();
191 == insn.getResult().getReg());
264 Insn lastInsn = block.getLastInsn();
292 TargetInsn insn = local
296 output.add(insn);
443 * @param insn {@code non-null;} instruction in questio
668 Insn insn local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 24 import com.android.dx.rop.code.Insn;
189 method.getBlocks().forEachInsn(new Insn.BaseVisitor() {
191 public void visitPlainCstInsn(PlainCstInsn insn) {
192 if (insn.getOpcode().getOpcode()== RegOps.MOVE_PARAM) {
194 ((CstInteger) insn.getConstant()).getValue();
198 == insn.getResult().getReg());
271 Insn lastInsn = block.getLastInsn();
299 TargetInsn insn = local
303 output.add(insn);
450 * @param insn {@code non-null;} instruction in questio
675 Insn insn local
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
sparc-dis.c 32 /* 1 if INSN is for v9 only. */
33 #define V9_ONLY_P(insn) (! ((insn)->architecture & ~MASK_V9))
34 /* 1 if INSN is for v9. */
35 #define V9_P(insn) (((insn)->architecture & MASK_V9) != 0)
44 /* It is important that we only look at insn code bits as that is how the
48 #define HASH_INSN(INSN) \
49 ((((INSN) >> 24) & 0xc0) | (((INSN) & opcode_bits[((INSN) >> 30) & 3]) >> 19)
468 unsigned long insn; local
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
alpha.c 96 unsigned int insn; local
112 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
114 switch (insn & (0x3f << 26))
125 if ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
126 || (insn & (3 << 14)) == Jxx_FUNC_JSR_COROUTINE << 14)
131 ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
146 dest_pc = pc + 4 + (((bfd_signed_vma) (insn & 0x1fffff)

Completed in 1049 milliseconds

1 2 3 4 5 67 8 91011>>