HomeSort by relevance Sort by last modified time
    Searched defs:Opcode (Results 301 - 325 of 498) sorted by null

<<11121314151617181920

  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 50 // each having the opcode given by NewOpcode.
147 unsigned Opcode = getOpcodeForOffset(isHighReg(Reg) ? HighOpcode : LowOpcode,
149 MI.setDesc(get(Opcode));
204 unsigned Opcode;
208 Opcode = SystemZ::RISBHH;
210 Opcode = SystemZ::RISBHL;
212 Opcode = SystemZ::RISBLH;
219 BuildMI(MBB, MBBI, DL, get(Opcode), DestReg)
457 // Return true if MI is a shift of type Opcode by Imm bits.
458 static bool isShift(MachineInstr *MI, unsigned Opcode, int64_t Imm)
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 182 unsigned Opcode = Instruction::UserOp1;
188 Opcode = I->getOpcode();
192 Opcode = C->getOpcode();
209 switch (Opcode) {
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 556 static int Lookup(ArrayRef<TableEntry> Table, unsigned Opcode) {
557 const TableEntry *I = std::lower_bound(Table.begin(), Table.end(), Opcode);
558 if (I != Table.end() && I->from == Opcode)
746 static unsigned getConcreteOpcode(unsigned Opcode) {
748 int Opc = Lookup(OpcodeTable, Opcode);
799 int Opcode = Lookup(PopTable, I->getOpcode());
800 if (Opcode != -1) {
801 I->setDesc(TII->get(Opcode));
802 if (Opcode == X86::UCOM_FPPr)
    [all...]
X86MCInstLower.cpp 252 static void SimplifyShortImmForm(MCInst &Inst, unsigned Opcode) {
268 Inst.setOpcode(Opcode);
302 unsigned Opcode) {
347 Inst.setOpcode(Opcode);
429 default: llvm_unreachable("Invalid opcode");
454 default: llvm_unreachable("Invalid opcode");
470 unsigned Opcode = OutMI.getOpcode();
473 OutMI.setOpcode(Opcode);
506 unsigned Opcode;
508 default: llvm_unreachable("Invalid opcode");
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 62 CheckOpcode, // Fail if not opcode.
63 SwitchOpcode, // Dispatch based on opcode.
435 /// specified opcode, if not it fails to match.
437 const SDNodeInfo &Opcode;
439 CheckOpcodeMatcher(const SDNodeInfo &opcode)
440 : Matcher(CheckOpcode), Opcode(opcode) {}
442 const SDNodeInfo &getOpcode() const { return Opcode; }
454 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
455 /// to one matcher per opcode. If the opcode doesn't match any of the cases
    [all...]
  /external/mesa3d/src/mesa/program/
prog_instruction.h 223 enum prog_opcode Opcode;
274 _mesa_num_inst_src_regs(enum prog_opcode opcode);
277 _mesa_num_inst_dst_regs(enum prog_opcode opcode);
280 _mesa_is_tex_instruction(enum prog_opcode opcode);
286 _mesa_opcode_string(enum prog_opcode opcode);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 129 char Opcode;
132 UnaryExprAST(char opcode, ExprAST *operand)
133 : Opcode(opcode), Operand(operand) {}
562 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 134 char Opcode;
137 UnaryExprAST(char opcode, ExprAST *operand)
138 : Opcode(opcode), Operand(operand) {}
640 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 601 unsigned Opcode = LU->getOpcode();
605 if (Opcode == Instruction::Add ||
606 Opcode == Instruction::Sub ||
607 Opcode == Instruction::And ||
608 Opcode == Instruction::Or ||
609 Opcode == Instruction::Mul) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCDwarf.cpp 35 // First special line opcode - leave room for the standard opcodes.
40 // Minimum line offset in a special line info. opcode. This value
44 // Range of line offsets in a special line info. opcode.
249 // Standard opcode lengths
346 uint64_t Temp, Opcode;
371 // If the line increment is out of range of a special opcode, we must encode
385 // Use DW_LNS_copy instead of a "line +0, addr +0" special opcode.
391 // Bias the opcode by the special opcode base.
396 // Try using a special opcode
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMAsmPrinter.cpp     [all...]
ARMBaseInstrInfo.cpp 55 unsigned MLxOpc; // MLA / MLS opcode
56 unsigned MulOpc; // Expanded multiplication opcode
57 unsigned AddSubOpc; // Expanded add / sub opcode
    [all...]
ARMCodeEmitter.cpp 339 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
398 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
790 unsigned Opcode = MI.getDesc().Opcode;
799 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
806 switch (Opcode) {
835 unsigned Opcode = MI.getDesc().Opcode;
836 switch (Opcode) {
    [all...]
ARMConstantIslandPass.cpp 140 /// opcode.
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcher.h 59 CheckOpcode, // Fail if not opcode.
60 SwitchOpcode, // Dispatch based on opcode.
447 /// specified opcode, if not it fails to match.
449 const SDNodeInfo &Opcode;
451 CheckOpcodeMatcher(const SDNodeInfo &opcode)
452 : Matcher(CheckOpcode), Opcode(opcode) {}
454 const SDNodeInfo &getOpcode() const { return Opcode; }
469 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
470 /// to one matcher per opcode. If the opcode doesn't match any of the cases
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAG.h 201 /// Pool allocation for machine-opcode SDNode operands.
750 bool isUndef(unsigned Opcode, ArrayRef<SDValue> Ops);
764 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
766 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
768 SDValue getNode(unsigned Opcode, const SDLoc &DL, ArrayRef<EVT> ResultTys,
770 SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTs,
774 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT);
775 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N);
776 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
778 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 165 unsigned short Opcode; // The opcode number
202 /// \brief Return the opcode number for this descriptor.
203 unsigned getOpcode() const { return Opcode; }
559 /// or zero if the encoding size cannot be known from the opcode.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
SelectionDAG.h 243 /// Pool allocation for machine-opcode SDNode operands.
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCInstrDesc.h 165 unsigned short Opcode; // The opcode number
202 /// \brief Return the opcode number for this descriptor.
203 unsigned getOpcode() const { return Opcode; }
559 /// or zero if the encoding size cannot be known from the opcode.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
SelectionDAG.h 243 /// Pool allocation for machine-opcode SDNode operands.
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCInstrDesc.h 165 unsigned short Opcode; // The opcode number
202 /// \brief Return the opcode number for this descriptor.
203 unsigned getOpcode() const { return Opcode; }
559 /// or zero if the encoding size cannot be known from the opcode.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
SelectionDAG.h 244 /// Pool allocation for machine-opcode SDNode operands.
638 SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCInstrDesc.h 165 unsigned short Opcode; // The opcode number
202 /// \brief Return the opcode number for this descriptor.
203 unsigned getOpcode() const { return Opcode; }
568 /// or zero if the encoding size cannot be known from the opcode.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
SelectionDAG.h 244 /// Pool allocation for machine-opcode SDNode operands.
638 SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCInstrDesc.h 165 unsigned short Opcode; // The opcode number
202 /// \brief Return the opcode number for this descriptor.
203 unsigned getOpcode() const { return Opcode; }
568 /// or zero if the encoding size cannot be known from the opcode.

Completed in 1678 milliseconds

<<11121314151617181920