1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Update comments to indicate CopyFrom/ToReg take physregs as well as vregs.

llvm-svn: 19514
This commit is contained in:
Chris Lattner 2005-01-12 18:11:36 +00:00
parent 4b03f0f99e
commit f01a5206ea
2 changed files with 7 additions and 7 deletions

View File

@ -116,17 +116,17 @@ public:
SDOperand getBasicBlock(MachineBasicBlock *MBB);
SDOperand getExternalSymbol(const char *Sym, MVT::ValueType VT);
SDOperand getCopyToReg(SDOperand Chain, SDOperand N, unsigned VReg) {
SDOperand getCopyToReg(SDOperand Chain, SDOperand N, unsigned Reg) {
// Note: these are auto-CSE'd because the caller doesn't make requests that
// could cause duplicates to occur.
SDNode *NN = new CopyRegSDNode(Chain, N, VReg);
SDNode *NN = new CopyRegSDNode(Chain, N, Reg);
AllNodes.push_back(NN);
return SDOperand(NN, 0);
}
SDOperand getCopyFromReg(unsigned VReg, MVT::ValueType VT) {
SDOperand getCopyFromReg(unsigned Reg, MVT::ValueType VT) {
// Note: These nodes are auto-CSE'd by the caller of this method.
SDNode *NN = new CopyRegSDNode(VReg, VT);
SDNode *NN = new CopyRegSDNode(Reg, VT);
AllNodes.push_back(NN);
return SDOperand(NN, 0);
}

View File

@ -50,14 +50,14 @@ namespace ISD {
// CopyToReg - This node has chain and child nodes, and an associated
// register number. The instruction selector must guarantee that the value
// of the value node is available in the virtual register stored in the
// of the value node is available in the register stored in the
// CopyRegSDNode object.
CopyToReg,
// CopyFromReg - This node indicates that the input value is a virtual or
// physical register that is defined outside of the scope of this
// SelectionDAG. The virtual register is available from the
// CopyRegSDNode object.
// SelectionDAG. The register number is available from the CopyRegSDNode
// object.
CopyFromReg,
// EXTRACT_ELEMENT - This is used to get the first or second (determined by