HomeSort by relevance Sort by last modified time
    Searched refs:OpCode (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Target/PTX/
PTXISelDAGToDAG.cpp 110 int OpCode;
119 OpCode = PTX::READPARAMPRED;
121 OpCode = PTX::READPARAMI16;
123 OpCode = PTX::READPARAMI32;
125 OpCode = PTX::READPARAMI64;
127 OpCode = PTX::READPARAMF32;
130 OpCode = PTX::READPARAMF64;
138 return CurDAG->getMachineNode(OpCode, dl, VT, Ops, 4);
146 int OpCode;
157 OpCode = PTX::WRITEPARAMPRED
    [all...]
  /external/llvm/include/llvm/
Instruction.h 90 static const char* getOpcodeName(unsigned OpCode);
92 static inline bool isTerminator(unsigned OpCode) {
93 return OpCode >= TermOpsBegin && OpCode < TermOpsEnd;
96 static inline bool isBinaryOp(unsigned Opcode) {
97 return Opcode >= BinaryOpsBegin && Opcode < BinaryOpsEnd;
100 /// @brief Determine if the Opcode is one of the shift instructions.
101 static inline bool isShift(unsigned Opcode) {
102 return Opcode >= Shl && Opcode <= AShr
    [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 96 const char *Instruction::getOpcodeName(unsigned OpCode) {
97 switch (OpCode) {
190 // We have two instructions of identical opcode and #operands. Check to see
245 // We have two instructions of identical opcode and #operands. Check to see
367 bool Instruction::isAssociative(unsigned Opcode) {
368 return Opcode == And || Opcode == Or || Opcode == Xor ||
369 Opcode == Add || Opcode == Mul
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 385 void visit(unsigned Opcode, const User &I);
476 void visitBinary(const User &I, unsigned OpCode);
477 void visitShift(const User &I, unsigned Opcode);
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 13188 unsigned opcode; local
    [all...]

Completed in 523 milliseconds