Home
last modified time | relevance | path

Searched refs:HiOffset (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsTargetStreamer.cpp248 unsigned HiOffset = (Offset & 0xffff0000) >> 16; in emitStoreWithImmOffset() local
253 HiOffset++; in emitStoreWithImmOffset()
256 emitRI(Mips::LUi, ATReg, HiOffset, IDLoc, STI); in emitStoreWithImmOffset()
301 unsigned HiOffset = (Offset & 0xffff0000) >> 16; in emitLoadWithImmOffset() local
306 HiOffset++; in emitLoadWithImmOffset()
309 emitRI(Mips::LUi, TmpReg, HiOffset, IDLoc, STI); in emitLoadWithImmOffset()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/MCTargetDesc/
DMipsTargetStreamer.cpp280 unsigned HiOffset = (Offset & 0xffff0000) >> 16; in emitStoreWithImmOffset() local
285 HiOffset++; in emitStoreWithImmOffset()
288 emitRI(Mips::LUi, ATReg, HiOffset, IDLoc, STI); in emitStoreWithImmOffset()
333 unsigned HiOffset = (Offset & 0xffff0000) >> 16; in emitLoadWithImmOffset() local
338 HiOffset++; in emitLoadWithImmOffset()
341 emitRI(Mips::LUi, TmpReg, HiOffset, IDLoc, STI); in emitLoadWithImmOffset()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp1278 unsigned HiOffset = LoMemVT.getStoreSize(); in SplitVecRes_MLOAD() local
1281 MLD->getPointerInfo().getWithOffset(HiOffset), MachineMemOperand::MOLoad, in SplitVecRes_MLOAD()
1994 unsigned HiOffset = LoMemVT.getStoreSize(); in SplitVecOp_MSTORE() local
1997 N->getPointerInfo().getWithOffset(HiOffset), MachineMemOperand::MOStore, in SplitVecOp_MSTORE()
DDAGCombiner.cpp7483 unsigned HiOffset = LoMemVT.getStoreSize(); in visitMSTORE() local
7486 MST->getPointerInfo().getWithOffset(HiOffset), in visitMSTORE()
7633 unsigned HiOffset = LoMemVT.getStoreSize(); in visitMLOAD() local
7636 MLD->getPointerInfo().getWithOffset(HiOffset), in visitMLOAD()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp3598 int64_t HiOffset = OffsetOp.getImm() & ~0xffff; in expandMemInst() local
3603 HiOffset += 0x10000; in expandMemInst()
3605 bool IsLargeOffset = HiOffset != 0; in expandMemInst()
3608 bool Is32BitImm = (HiOffset >> 32) == 0; in expandMemInst()
3609 if (loadImmediate(HiOffset, TmpReg, Mips::NoRegister, Is32BitImm, true, in expandMemInst()