Home | History | Annotate | Download | only in Mips

Lines Matching defs:Address

26   // All possible address modes.
27 class Address {
43 // Innocuous defaults for our address.
44 Address() : Kind(RegBase), Offset(0), GV(0) { Base.Reg = 0; }
108 bool computeAddress(const Value *Obj, Address &Addr);
109 bool computeCallAddress(const Value *V, Address &Addr);
110 void simplifyAddress(Address &Addr);
114 bool emitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
116 bool emitStore(MVT VT, unsigned SrcReg, Address Addr,
118 bool emitStore(MVT VT, unsigned SrcReg, Address &Addr,
360 bool MipsFastISel::computeAddress(const Value *Obj, Address &Addr) {
382 Address SavedAddr = Addr;
430 Addr.setKind(Address::FrameIndexBase);
441 bool MipsFastISel::computeCallAddress(const Value *V, Address &Addr) {
618 bool MipsFastISel::emitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
679 bool MipsFastISel::emitStore(MVT VT, unsigned SrcReg, Address &Addr,
768 // See if we can handle this address.
769 Address Addr;
798 // See if we can handle this address.
799 Address Addr;
1057 Address Addr;
1058 Addr.setKind(Address::RegBase);
1148 Address Addr;
1442 void MipsFastISel::simplifyAddress(Address &Addr) {