HomeSort by: relevance | last modified time | path
    Searched refs:Load2 (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrInfo.h 420 bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2, int64_t &Offset1,
438 bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, int64_t Offset1,
X86InstrInfo.cpp 6548 X86InstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
6550 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
6553 unsigned Opc2 = Load2->getMachineOpcode();
6723 return Load1->getOperand(I) == Load2->getOperand(I);
6737 auto Disp2 = dyn_cast<ConstantSDNode>(Load2->getOperand(X86::AddrDisp));
6746 bool X86InstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
6754 unsigned Opc2 = Load2->getMachineOpcode();
X86ISelLowering.cpp 8753 // load2, load3, load4, <0, 1, 2, 3> into a vector load if the load addresses
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 1296 virtual bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1310 virtual bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 247 bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2, int64_t &Offset1,
258 bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
ARMBaseInstrInfo.cpp 1924 bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1930 if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1954 switch (Load2->getMachineOpcode()) {
1975 if (Load1->getOperand(0) != Load2->getOperand(0) ||
1976 Load1->getOperand(4) != Load2->getOperand(4))
1980 if (Load1->getOperand(3) != Load2->getOperand(3))
1985 isa<ConstantSDNode>(Load2->getOperand(1))) {
1987 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
2005 bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
2021 if ((Load1->getMachineOpcode() != Load2->getMachineOpcode()) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIInstrInfo.h 184 bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 10232 LoadSDNode *Load2 = cast<LoadSDNode>(Op2);
10234 !TLI.isLoadExtLegal(ExtLoadOpcode, VT, Load2->getMemoryVT()))

Completed in 59 milliseconds