[llvm-commits] [llvm] r112653 - /llvm/trunk/docs/CodeGenerator.html
Jakob Stoklund Olesen
stoklund at 2pi.dk
Tue Aug 31 15:01:07 PDT 2010
Author: stoklund
Date: Tue Aug 31 17:01:07 2010
New Revision: 112653
URL: http://llvm.org/viewvc/llvm-project?rev=112653&view=rev
Log:
Stack slot access methods are in TargetInstrInfo.
Modified:
llvm/trunk/docs/CodeGenerator.html
Modified: llvm/trunk/docs/CodeGenerator.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.html?rev=112653&r1=112652&r2=112653&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.html (original)
+++ llvm/trunk/docs/CodeGenerator.html Tue Aug 31 17:01:07 2010
@@ -1457,8 +1457,8 @@
order to get and store values in memory. To assign a physical register to a
virtual register present in a given operand,
use <tt>MachineOperand::setReg(p_reg)</tt>. To insert a store instruction,
- use <tt>TargetRegisterInfo::storeRegToStackSlot(...)</tt>, and to insert a
- load instruction, use <tt>TargetRegisterInfo::loadRegFromStackSlot</tt>.</p>
+ use <tt>TargetInstrInfo::storeRegToStackSlot(...)</tt>, and to insert a
+ load instruction, use <tt>TargetInstrInfo::loadRegFromStackSlot</tt>.</p>
<p>The indirect mapping shields the application developer from the complexities
of inserting load and store instructions. In order to map a virtual register
More information about the llvm-commits
mailing list