HomeSort by relevance Sort by last modified time
    Searched refs:Insn (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 52 uint16_t &insn) {
61 insn = (Bytes[0] << 0) | (Bytes[1] << 8);
68 uint32_t &insn) {
77 insn = (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) |
99 unsigned Insn,
104 unsigned Insn,
109 unsigned Insn,
114 unsigned Insn,
119 unsigned Insn,
124 unsigned Insn,
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
InsnList.java 22 * List of {@link Insn} instances.
43 public Insn get(int n) {
44 return (Insn) get0(n);
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) {
54 set0(n, insn);
63 public Insn getLast() {
72 public void forEach(Insn.Visitor visitor) {
82 * The blocks must have the same number of insns, and each Insn mus
    [all...]
SwitchInsn.java 28 extends Insn {
76 public Insn withAddedCatch(Type type) {
82 public Insn withRegisterOffset(int delta) {
96 public boolean contentEquals(Insn b) {
102 public Insn withNewRegisters(RegisterSpec result,
CstInsn.java 25 extends Insn {
66 public boolean contentEquals(Insn b) {
69 * Insn.contentEquals compares classes of this and b.
FillArrayDataInsn.java 31 extends Insn {
96 public Insn withAddedCatch(Type type) {
102 public Insn withRegisterOffset(int delta) {
110 public Insn withNewRegisters(RegisterSpec result,
ThrowingInsn.java 29 extends Insn {
98 public Insn withAddedCatch(Type type) {
105 public Insn withRegisterOffset(int delta) {
113 public Insn withNewRegisters(RegisterSpec result,
PlainInsn.java 30 extends Insn {
84 public Insn withAddedCatch(Type type) {
90 public Insn withRegisterOffset(int delta) {
98 public Insn withLastSourceLiteral() {
132 public Insn withNewRegisters(RegisterSpec result,
PlainCstInsn.java 63 public Insn withAddedCatch(Type type) {
69 public Insn withRegisterOffset(int delta) {
78 public Insn withNewRegisters(RegisterSpec result,
ThrowingCstInsn.java 78 public Insn withAddedCatch(Type type) {
86 public Insn withRegisterOffset(int delta) {
95 public Insn withNewRegisters(RegisterSpec result,
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 22 * List of {@link Insn} instances.
43 public Insn get(int n) {
44 return (Insn) get0(n);
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) {
54 set0(n, insn);
63 public Insn getLast() {
72 public void forEach(Insn.Visitor visitor) {
82 * The blocks must have the same number of insns, and each Insn mus
    [all...]
SwitchInsn.java 28 extends Insn {
76 public Insn withAddedCatch(Type type) {
82 public Insn withRegisterOffset(int delta) {
96 public boolean contentEquals(Insn b) {
102 public Insn withNewRegisters(RegisterSpec result,
CstInsn.java 25 extends Insn {
66 public boolean contentEquals(Insn b) {
69 * Insn.contentEquals compares classes of this and b.
FillArrayDataInsn.java 31 extends Insn {
96 public Insn withAddedCatch(Type type) {
102 public Insn withRegisterOffset(int delta) {
110 public Insn withNewRegisters(RegisterSpec result,
ThrowingInsn.java 29 extends Insn {
98 public Insn withAddedCatch(Type type) {
105 public Insn withRegisterOffset(int delta) {
113 public Insn withNewRegisters(RegisterSpec result,
Insn.java 30 public abstract class Insn implements ToHuman {
51 public Insn(Rop opcode, SourcePosition position, RegisterSpec result,
225 public abstract Insn withAddedCatch(Type type);
234 public abstract Insn withRegisterOffset(int delta);
238 * possible, the insn is converted into a version in which a source
245 public Insn withSourceLiteral() {
250 * Returns an exact copy of this Insn
254 public Insn copy() {
271 * Compares Insn contents, since {@code Insn.equals()} is define
    [all...]
PlainCstInsn.java 63 public Insn withAddedCatch(Type type) {
69 public Insn withRegisterOffset(int delta) {
78 public Insn withNewRegisters(RegisterSpec result,
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
InsnList.java 22 * List of {@link Insn} instances.
43 public Insn get(int n) {
44 return (Insn) get0(n);
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) {
54 set0(n, insn);
63 public Insn getLast() {
72 public void forEach(Insn.Visitor visitor) {
82 * The blocks must have the same number of insns, and each Insn mus
    [all...]
SwitchInsn.java 28 extends Insn {
76 public Insn withAddedCatch(Type type) {
82 public Insn withRegisterOffset(int delta) {
96 public boolean contentEquals(Insn b) {
102 public Insn withNewRegisters(RegisterSpec result,
CstInsn.java 25 extends Insn {
66 public boolean contentEquals(Insn b) {
69 * Insn.contentEquals compares classes of this and b.
FillArrayDataInsn.java 31 extends Insn {
96 public Insn withAddedCatch(Type type) {
102 public Insn withRegisterOffset(int delta) {
110 public Insn withNewRegisters(RegisterSpec result,
ThrowingInsn.java 29 extends Insn {
98 public Insn withAddedCatch(Type type) {
105 public Insn withRegisterOffset(int delta) {
113 public Insn withNewRegisters(RegisterSpec result,
Insn.java 30 public abstract class Insn implements ToHuman {
51 public Insn(Rop opcode, SourcePosition position, RegisterSpec result,
225 public abstract Insn withAddedCatch(Type type);
234 public abstract Insn withRegisterOffset(int delta);
238 * possible, the insn is converted into a version in which a source
245 public Insn withSourceLiteral() {
250 * Returns an exact copy of this Insn
254 public Insn copy() {
271 * Compares Insn contents, since {@code Insn.equals()} is define
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 196 static DecodeStatus DecodeBitfieldMaskOperand(MCInst &Inst, unsigned Insn,
198 static DecodeStatus DecodeCopMemInstruction(MCInst &Inst, unsigned Insn,
201 unsigned Insn,
204 static DecodeStatus DecodeSORegMemOperand(MCInst &Inst, unsigned Insn,
206 static DecodeStatus DecodeAddrMode3Instruction(MCInst &Inst,unsigned Insn,
208 static DecodeStatus DecodeSORegImmOperand(MCInst &Inst, unsigned Insn,
210 static DecodeStatus DecodeSORegRegOperand(MCInst &Inst, unsigned Insn,
214 unsigned Insn,
217 static DecodeStatus DecodeT2MOVTWInstruction(MCInst &Inst, unsigned Insn,
219 static DecodeStatus DecodeArmMOVTWInstruction(MCInst &Inst, unsigned Insn,
409 uint32_t insn = (bytes[3] << 24) | local
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 127 unsigned Insn,
137 unsigned Insn,
152 unsigned Insn,
158 unsigned Insn,
163 unsigned Insn,
167 static DecodeStatus DecodeFMem(MCInst &Inst, unsigned Insn,
172 unsigned Insn,
177 unsigned Insn,
182 unsigned Insn,
187 unsigned Insn,
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 55 CodeGenInstruction &Insn,
73 addDagOperandMapping(Record *Rec, DagInit *Dag, CodeGenInstruction &Insn,
92 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec)
96 Insn.Operands[BaseIdx + i].Rec->getName() + "'");
100 for (unsigned I = 0, E = Insn.Operands[i].MINumOperands; I != E; ++I)
102 OpsAdded += Insn.Operands[i].MINumOperands;
111 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i);
139 CodeGenInstruction Insn(Operator);
141 if (Insn.isCodeGenOnly || Insn.isPseudo
    [all...]

Completed in 666 milliseconds

1 2 3 4