Searched refs:StoreA (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 1220 auto *StoreA = cast<StoreSDNode>(N); in storeLoadCanUseBlockBinary() local 1221 auto *LoadA = cast<LoadSDNode>(StoreA->getValue().getOperand(1 - I)); in storeLoadCanUseBlockBinary() 1222 auto *LoadB = cast<LoadSDNode>(StoreA->getValue().getOperand(I)); in storeLoadCanUseBlockBinary() 1223 return !LoadA->isVolatile() && canUseBlockOperation(StoreA, LoadB); in storeLoadCanUseBlockBinary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 1421 auto *StoreA = cast<StoreSDNode>(N); in storeLoadCanUseBlockBinary() local 1422 auto *LoadA = cast<LoadSDNode>(StoreA->getValue().getOperand(1 - I)); in storeLoadCanUseBlockBinary() 1423 auto *LoadB = cast<LoadSDNode>(StoreA->getValue().getOperand(I)); in storeLoadCanUseBlockBinary() 1424 return !LoadA->isVolatile() && canUseBlockOperation(StoreA, LoadB); in storeLoadCanUseBlockBinary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | MemorySSA.cpp | 932 StoreInst *StoreA = B.CreateStore(B.getInt8(0), A); in TEST_F() local 939 auto *DefA = cast<MemoryDef>(MSSA.getMemoryAccess(StoreA)); in TEST_F() 946 StoreA->eraseFromParent(); in TEST_F()
|
/external/llvm/lib/Target/Sparc/ |
D | SparcInstrInfo.td | 383 multiclass StoreA<string OpcStr, bits<6> Op3Val, bits<6> StoreAOp3Val, 552 defm STB : StoreA<"stb", 0b000101, 0b010101, truncstorei8, IntRegs, i32>; 553 defm STH : StoreA<"sth", 0b000110, 0b010110, truncstorei16, IntRegs, i32>; 554 defm ST : StoreA<"st", 0b000100, 0b010100, store, IntRegs, i32>; 558 defm STD : StoreA<"std", 0b000111, 0b010111, store, IntPair, v2i32, IIC_std>; 572 defm STQF : StoreA<"stq", 0b100110, 0b110110, store, QFPRegs, f128>,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/ |
D | SparcInstrInfo.td | 387 multiclass StoreA<string OpcStr, bits<6> Op3Val, bits<6> StoreAOp3Val, 556 defm STB : StoreA<"stb", 0b000101, 0b010101, truncstorei8, IntRegs, i32>; 557 defm STH : StoreA<"sth", 0b000110, 0b010110, truncstorei16, IntRegs, i32>; 558 defm ST : StoreA<"st", 0b000100, 0b010100, store, IntRegs, i32>; 562 defm STD : StoreA<"std", 0b000111, 0b010111, store, IntPair, v2i32, IIC_std>; 576 defm STQF : StoreA<"stq", 0b100110, 0b110110, store, QFPRegs, f128>,
|