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

/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h183 inline bool isMachineOpcode() const;
398 /// pre-isel nodes (those for which isMachineOpcode returns false), these
414 /// isMachineOpcode - Test if this node has a post-isel opcode, directly
416 bool isMachineOpcode() const { return NodeType < 0; } function in class:llvm::SDNode
418 /// getMachineOpcode - This may only be called if isMachineOpcode returns
422 assert(isMachineOpcode() && "Not a MachineInstr opcode!");
623 while (!FoundNode->isMachineOpcode()) { function
901 inline bool SDValue::isMachineOpcode() const { function in class:llvm::SDValue
902 return Node->isMachineOpcode();
1932 return N->isMachineOpcode();
[all...]

Completed in 84 milliseconds