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

1 2 3 4 5

  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 46 uint64_t &Size, uint16_t &Insn) {
53 Insn = (Bytes[0] << 0) | (Bytes[1] << 8);
58 uint64_t &Size, uint32_t &Insn) {
65 Insn =
93 unsigned Insn,
98 unsigned Insn,
103 unsigned Insn,
108 unsigned Insn,
113 unsigned Insn,
118 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 30 extends Insn {
95 public Insn withAddedCatch(Type type) {
101 public Insn withRegisterOffset(int delta) {
109 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 186 static DecodeStatus DecodeBitfieldMaskOperand(MCInst &Inst, unsigned Insn,
188 static DecodeStatus DecodeCopMemInstruction(MCInst &Inst, unsigned Insn,
191 unsigned Insn,
194 static DecodeStatus DecodeSORegMemOperand(MCInst &Inst, unsigned Insn,
196 static DecodeStatus DecodeAddrMode3Instruction(MCInst &Inst,unsigned Insn,
198 static DecodeStatus DecodeSORegImmOperand(MCInst &Inst, unsigned Insn,
200 static DecodeStatus DecodeSORegRegOperand(MCInst &Inst, unsigned Insn,
204 unsigned Insn,
207 static DecodeStatus DecodeT2MOVTWInstruction(MCInst &Inst, unsigned Insn,
209 static DecodeStatus DecodeArmMOVTWInstruction(MCInst &Inst, unsigned Insn,
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 98 unsigned Insn,
132 unsigned Insn,
197 unsigned Insn,
242 unsigned Insn,
247 unsigned Insn,
252 unsigned Insn,
257 unsigned Insn,
262 unsigned Insn,
267 unsigned Insn,
272 unsigned Insn,
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 56 CodeGenInstruction &Insn,
74 addDagOperandMapping(Record *Rec, DagInit *Dag, CodeGenInstruction &Insn,
93 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec)
97 Insn.Operands[BaseIdx + i].Rec->getName() + "'");
101 for (unsigned I = 0, E = Insn.Operands[i].MINumOperands; I != E; ++I)
103 OpsAdded += Insn.Operands[i].MINumOperands;
112 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i);
140 CodeGenInstruction Insn(Operator);
142 if (Insn.isCodeGenOnly || Insn.isPseudo
    [all...]

Completed in 602 milliseconds

1 2 3 4 5