OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatchAddress
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp
106
bool
MatchAddress
(SDValue N, MSP430ISelAddressMode &AM);
169
/// MatchAddressBase - Helper for
MatchAddress
. Add the specified node to the
184
bool MSP430DAGToDAGISel::
MatchAddress
(SDValue N, MSP430ISelAddressMode &AM) {
185
DEBUG(errs() << "
MatchAddress
: "; AM.dump());
211
if (!
MatchAddress
(N.getNode()->getOperand(0), AM) &&
212
!
MatchAddress
(N.getNode()->getOperand(1), AM))
215
if (!
MatchAddress
(N.getNode()->getOperand(1), AM) &&
216
!
MatchAddress
(N.getNode()->getOperand(0), AM))
229
if (!
MatchAddress
(N.getOperand(0), AM) &&
252
if (
MatchAddress
(N, AM)
[
all
...]
/external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp
141
bool
MatchAddress
(SDValue N, SystemZRRIAddressMode &AM,
179
///
MatchAddress
- Add the specified node to the specified addressing mode,
182
bool SystemZDAGToDAGISel::
MatchAddress
(SDValue N, SystemZRRIAddressMode &AM,
185
DEBUG(errs() << "
MatchAddress
: "; AM.dump());
227
if (
MatchAddress
(N.getNode()->getOperand(0), AM, is12Bit, Depth+1)) {
267
if (!
MatchAddress
(N.getNode()->getOperand(0), AM, is12Bit, Depth+1) &&
268
!
MatchAddress
(N.getNode()->getOperand(1), AM, is12Bit, Depth+1))
271
if (!
MatchAddress
(N.getNode()->getOperand(1), AM, is12Bit, Depth+1) &&
272
!
MatchAddress
(N.getNode()->getOperand(0), AM, is12Bit, Depth+1))
301
!
MatchAddress
(N.getOperand(0), AM, is12Bit, Depth+1) &
[
all
...]
/external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp
198
bool
MatchAddress
(SDValue N, X86ISelAddressMode &AM);
691
///
MatchAddress
- Add the specified node to the specified addressing mode,
694
bool X86DAGToDAGISel::
MatchAddress
(SDValue N, X86ISelAddressMode &AM) {
727
dbgs() << "
MatchAddress
: ";
789
// in
MatchAddress
turns (,x,2) into (x,x), which is cheaper.
[
all
...]
Completed in 502 milliseconds