Searched defs:isMachineOpcode (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h151 inline bool isMachineOpcode() const;
366 /// pre-isel nodes (those for which isMachineOpcode returns false), these
382 /// isMachineOpcode - Test if this node has a post-isel opcode, directly
384 bool isMachineOpcode() const { return NodeType < 0; } function in class:llvm::SDNode
386 /// getMachineOpcode - This may only be called if isMachineOpcode returns
390 assert(isMachineOpcode() && "Not a MachineInstr opcode!");
582 while (!FoundNode->isMachineOpcode()) { function
859 inline bool SDValue::isMachineOpcode() const { function in class:llvm::SDValue
860 return Node->isMachineOpcode();
1780 return N->isMachineOpcode();
[all...]

Completed in 89 milliseconds