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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstructionSelector.cpp 1562 const MachineOperand &Lod = MI.getOperand(ArgOffset + Intr->LodIndex);
1563 if (Lod.isImm()) {
1564 assert(Lod.getImm() == 0);
1569 // Optimize _mip away, when 'lod' is zero
1571 const MachineOperand &Lod = MI.getOperand(ArgOffset + Intr->MipIndex);
1572 if (Lod.isImm()) {
1573 assert(Lod.getImm() == 0);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 3652 LoadSDNode *Lod = cast<LoadSDNode>(N0.getOperand(0));
3655 if (Lod->isSimple() && Lod->isUnindexed()) {
3660 if (Lod->getExtensionType() != ISD::NON_EXTLOAD)
3661 origWidth = Lod->getMemoryVT().getSizeInBits();
3682 shouldReduceLoadWidth(Lod, ISD::NON_EXTLOAD, newVT)) {
3683 SDValue Ptr = Lod->getBasePtr();
3688 DAG.getLoad(newVT, dl, Lod->getChain(), Ptr,
3689 Lod->getPointerInfo().getWithOffset(bestOffset),
3690 Lod->getOriginalAlign())
    [all...]

Completed in 26 milliseconds