HomeSort by relevance Sort by last modified time
    Searched full:opnum (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.h 39 void printSORegRegOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
40 void printSORegImmOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
42 void printAddrModeTBB(const MCInst *MI, unsigned OpNum, raw_ostream &O);
43 void printAddrModeTBH(const MCInst *MI, unsigned OpNum, raw_ostream &O);
44 void printAddrMode2Operand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
45 void printAM2PostIndexOp(const MCInst *MI, unsigned OpNum, raw_ostream &O);
46 void printAM2PreOrOffsetIndexOp(const MCInst *MI, unsigned OpNum,
48 void printAddrMode2OffsetOperand(const MCInst *MI, unsigned OpNum,
51 void printAddrMode3Operand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
52 void printAddrMode3OffsetOperand(const MCInst *MI, unsigned OpNum,
    [all...]
ARMInstPrinter.cpp 306 void ARMInstPrinter::printThumbLdrLabelOperand(const MCInst *MI, unsigned OpNum,
308 const MCOperand &MO1 = MI->getOperand(OpNum);
339 void ARMInstPrinter::printSORegRegOperand(const MCInst *MI, unsigned OpNum,
341 const MCOperand &MO1 = MI->getOperand(OpNum);
342 const MCOperand &MO2 = MI->getOperand(OpNum+1);
343 const MCOperand &MO3 = MI->getOperand(OpNum+2);
358 void ARMInstPrinter::printSORegImmOperand(const MCInst *MI, unsigned OpNum,
360 const MCOperand &MO1 = MI->getOperand(OpNum);
361 const MCOperand &MO2 = MI->getOperand(OpNum+1);
448 unsigned OpNum,
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 40 void printAddrRegExtendOperand(const MCInst *MI, unsigned OpNum,
42 printAddrRegExtendOperand(MI, OpNum, O, MemSize, RmSize);
46 void printAddrRegExtendOperand(const MCInst *MI, unsigned OpNum,
51 unsigned OpNum, raw_ostream &O);
53 unsigned OpNum, raw_ostream &O);
55 void printBareImmOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
58 void printBFILSBOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
59 void printBFIWidthOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
60 void printBFXWidthOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
63 void printCondCodeOperand(const MCInst *MI, unsigned OpNum,
    [all...]
AArch64InstPrinter.cpp 54 unsigned OpNum, raw_ostream &O) {
55 const MCOperand &MOImm = MI->getOperand(OpNum);
62 AArch64InstPrinter::printAddrRegExtendOperand(const MCInst *MI, unsigned OpNum,
65 unsigned ExtImm = MI->getOperand(OpNum).getImm();
93 unsigned OpNum, raw_ostream &O) {
94 const MCOperand &Imm12Op = MI->getOperand(OpNum);
107 AArch64InstPrinter::printAddSubImmLSL12Operand(const MCInst *MI, unsigned OpNum,
110 printAddSubImmLSL0Operand(MI, OpNum, O);
116 AArch64InstPrinter::printBareImmOperand(const MCInst *MI, unsigned OpNum,
118 const MCOperand &MO = MI->getOperand(OpNum);
    [all...]
  /external/llvm/lib/Target/SystemZ/InstPrinter/
SystemZInstPrinter.cpp 54 void SystemZInstPrinter::printU4ImmOperand(const MCInst *MI, int OpNum,
56 int64_t Value = MI->getOperand(OpNum).getImm();
61 void SystemZInstPrinter::printU6ImmOperand(const MCInst *MI, int OpNum,
63 int64_t Value = MI->getOperand(OpNum).getImm();
68 void SystemZInstPrinter::printS8ImmOperand(const MCInst *MI, int OpNum,
70 int64_t Value = MI->getOperand(OpNum).getImm();
75 void SystemZInstPrinter::printU8ImmOperand(const MCInst *MI, int OpNum,
77 int64_t Value = MI->getOperand(OpNum).getImm();
82 void SystemZInstPrinter::printS16ImmOperand(const MCInst *MI, int OpNum,
84 int64_t Value = MI->getOperand(OpNum).getImm()
    [all...]
SystemZInstPrinter.h 48 void printOperand(const MCInst *MI, int OpNum, raw_ostream &O);
49 void printBDAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
50 void printBDXAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
51 void printBDLAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
52 void printU4ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O);
53 void printU6ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O);
54 void printS8ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O);
55 void printU8ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O);
56 void printS16ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O);
57 void printU16ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O)
    [all...]
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 55 uint64_t getBDAddr12Encoding(const MCInst &MI, unsigned OpNum,
57 uint64_t getBDAddr20Encoding(const MCInst &MI, unsigned OpNum,
59 uint64_t getBDXAddr12Encoding(const MCInst &MI, unsigned OpNum,
61 uint64_t getBDXAddr20Encoding(const MCInst &MI, unsigned OpNum,
63 uint64_t getBDLAddr12Len8Encoding(const MCInst &MI, unsigned OpNum,
66 // Operand OpNum of MI needs a PC-relative fixup of kind Kind at
70 uint64_t getPCRelEncoding(const MCInst &MI, unsigned OpNum,
74 uint64_t getPC16DBLEncoding(const MCInst &MI, unsigned OpNum,
76 return getPCRelEncoding(MI, OpNum, Fixups, SystemZ::FK_390_PC16DBL, 2);
78 uint64_t getPC32DBLEncoding(const MCInst &MI, unsigned OpNum,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_fragshader.c 41 static void r200SetFragShaderArg( GLuint *afs_cmd, GLuint opnum, GLuint optype,
108 SET_INST(opnum, optype) |= reg0;
109 SET_INST_2(opnum, optype) |= reg2;
141 GLuint opnum = 0; local
147 SET_INST(opnum, 0) = 0;
148 SET_INST_2(opnum, 0) = 0;
149 SET_INST(opnum, 1) = 0;
150 SET_INST_2(opnum, 1) = 0;
166 SET_INST(opnum, optype) |= R200_TXC_NEG_ARG_C;
169 r200SetFragShaderArg(afs_cmd, opnum, optype
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_fragshader.c 41 static void r200SetFragShaderArg( GLuint *afs_cmd, GLuint opnum, GLuint optype,
108 SET_INST(opnum, optype) |= reg0;
109 SET_INST_2(opnum, optype) |= reg2;
141 GLuint opnum = 0; local
147 SET_INST(opnum, 0) = 0;
148 SET_INST_2(opnum, 0) = 0;
149 SET_INST(opnum, 1) = 0;
150 SET_INST_2(opnum, 1) = 0;
166 SET_INST(opnum, optype) |= R200_TXC_NEG_ARG_C;
169 r200SetFragShaderArg(afs_cmd, opnum, optype
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 144 bool AArch64AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
151 const MachineOperand &MO = MI->getOperand(OpNum);
183 return AsmPrinter::PrintAsmOperand(MI, OpNum, AsmVariant, ExtraCode, O);
185 if (!MI->getOperand(OpNum).isImm())
187 O << MI->getOperand(OpNum).getImm();
192 return printModifiedGPRAsmOperand(MI->getOperand(OpNum), TRI,
197 return printModifiedGPRAsmOperand(MI->getOperand(OpNum), TRI,
215 return printModifiedFPRAsmOperand(MI->getOperand(OpNum), TRI,
219 return printModifiedFPRAsmOperand(MI->getOperand(OpNum), TRI,
223 return printModifiedFPRAsmOperand(MI->getOperand(OpNum), TRI
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 41 void printOperand(const MachineInstr *MI, int opNum, raw_ostream &OS);
42 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &OS,
44 void printCCOperand(const MachineInstr *MI, int opNum, raw_ostream &OS);
71 void SparcAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
73 const MachineOperand &MO = MI->getOperand (opNum);
137 void SparcAsmPrinter::printMemOperand(const MachineInstr *MI, int opNum,
139 printOperand(MI, opNum, O);
144 printOperand(MI, opNum+1, O);
148 if (MI->getOperand(opNum+1).isReg() &&
149 MI->getOperand(opNum+1).getReg() == SP::G0
    [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.h 73 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
76 void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
77 void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O);
78 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O);
79 void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O);
80 void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
MipsAsmPrinter.cpp 332 bool MipsAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
339 const MachineOperand &MO = MI->getOperand(OpNum);
343 return AsmPrinter::PrintAsmOperand(MI,OpNum,AsmVariant,ExtraCode,O);
379 if (OpNum == 0)
381 const MachineOperand &FlagsOP = MI->getOperand(OpNum - 1);
397 unsigned RegOp = OpNum;
403 RegOp = (Subtarget->isLittle()) ? OpNum + 1 : OpNum;
406 RegOp = (Subtarget->isLittle()) ? OpNum : OpNum + 1
    [all...]
  /external/llvm/lib/Target/NVPTX/InstPrinter/
NVPTXInstPrinter.cpp 94 void NVPTXInstPrinter::printCvtMode(const MCInst *MI, int OpNum, raw_ostream &O,
96 const MCOperand &MO = MI->getOperand(OpNum);
144 void NVPTXInstPrinter::printCmpMode(const MCInst *MI, int OpNum, raw_ostream &O,
146 const MCOperand &MO = MI->getOperand(OpNum);
217 void NVPTXInstPrinter::printLdStCode(const MCInst *MI, int OpNum,
220 const MCOperand &MO = MI->getOperand(OpNum);
265 void NVPTXInstPrinter::printMemOperand(const MCInst *MI, int OpNum,
267 printOperand(MI, OpNum, O);
271 printOperand(MI, OpNum + 1, O);
273 if (MI->getOperand(OpNum + 1).isImm() &
    [all...]
NVPTXInstPrinter.h 39 void printCvtMode(const MCInst *MI, int OpNum, raw_ostream &O,
41 void printCmpMode(const MCInst *MI, int OpNum, raw_ostream &O,
43 void printLdStCode(const MCInst *MI, int OpNum,
45 void printMemOperand(const MCInst *MI, int OpNum,
  /external/llvm/lib/Target/MSP430/
MSP430AsmPrinter.cpp 49 void printOperand(const MachineInstr *MI, int OpNum,
51 void printSrcMemOperand(const MachineInstr *MI, int OpNum,
64 void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
66 const MachineOperand &MO = MI->getOperand(OpNum);
111 void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
113 const MachineOperand &Base = MI->getOperand(OpNum);
114 const MachineOperand &Disp = MI->getOperand(OpNum+1);
121 printOperand(MI, OpNum+1, O, "nohash");
126 printOperand(MI, OpNum, O);
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.h 37 void printInlineJT(const MCInst *MI, int opNum, raw_ostream &O);
38 void printInlineJT32(const MCInst *MI, int opNum, raw_ostream &O);
40 void printMemOperand(const MCInst *MI, int opNum, raw_ostream &O);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /dalvik/vm/mterp/armv5te/
alt_stub.S 10 adrl lr, dvmAsmInstructionStart + (${opnum} * 64)
  /dalvik/vm/mterp/mips/
alt_stub.S 10 la rBIX, dvmAsmInstructionStart + (${opnum} * 128)
  /dalvik/vm/mterp/x86/
alt_stub.S 22 jmp *dvmAsmInstructionStart+(${opnum}*4)
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.h 95 void printUnsignedImm(const MCInst *MI, int opNum, raw_ostream &O);
96 void printMemOperand(const MCInst *MI, int opNum, raw_ostream &O);
97 void printMemOperandEA(const MCInst *MI, int opNum, raw_ostream &O);
98 void printFCCOperand(const MCInst *MI, int opNum, raw_ostream &O);
MipsInstPrinter.cpp 178 void MipsInstPrinter::printUnsignedImm(const MCInst *MI, int opNum,
180 const MCOperand &MO = MI->getOperand(opNum);
184 printOperand(MI, opNum, O);
188 printMemOperand(const MCInst *MI, int opNum, raw_ostream &O) {
192 printOperand(MI, opNum+1, O);
194 printOperand(MI, opNum, O);
199 printMemOperandEA(const MCInst *MI, int opNum, raw_ostream &O) {
202 printOperand(MI, opNum, O);
204 printOperand(MI, opNum+1, O);
209 printFCCOperand(const MCInst *MI, int opNum, raw_ostream &O)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 538 milliseconds

1 2 3 4