Searched refs:isGAPlusOffset (Results 1 - 5 of 5) sorted by relevance
/external/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.h | 549 isGAPlusOffset(SDNode *N, const GlobalValue* &GA, int64_t &Offset) const;
|
H A D | X86ISelLowering.cpp | 13339 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the 13341 bool X86TargetLowering::isGAPlusOffset(SDNode *N, function in class:X86TargetLowering 13351 return TargetLowering::isGAPlusOffset(N, GA, Offset);
|
/external/llvm/include/llvm/Target/ |
H A D | TargetLowering.h | 945 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the 948 isGAPlusOffset(SDNode *N, const GlobalValue* &GA, int64_t &Offset) const;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 2659 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the 2661 bool TargetLowering::isGAPlusOffset(SDNode *N, const GlobalValue *&GA, function in class:TargetLowering 2673 if (isGAPlusOffset(N1.getNode(), GA, Offset)) { 2679 } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) {
|
H A D | SelectionDAG.cpp | 6079 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1); 6080 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); 6093 if (TLI.isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
|
Completed in 233 milliseconds