/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCHazardRecognizers.cpp | 281 bool &isLoad, bool &isStore) { in GetInstrType() 284 isLoad = MCID.mayLoad(); in GetInstrType() 334 bool isFirst, isSingle, isCracked, isLoad, isStore; in getHazardType() local 337 isLoad, isStore); in getHazardType() 375 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType() 392 bool isFirst, isSingle, isCracked, isLoad, isStore; in EmitInstruction() local 395 isLoad, isStore); in EmitInstruction() 278 GetInstrType(unsigned Opcode, bool &isFirst, bool &isSingle, bool &isCracked, bool &isLoad, bool &isStore) GetInstrType() argument
|
H A D | PPCHazardRecognizers.h | 92 bool &isLoad, bool &isStore);
|
H A D | PPCISelLowering.cpp | 2591 bool isLoad = true; in getPreIndexedAddressParts() 2603 isLoad = false; in getPreIndexedAddressParts() 2610 if (isLoad && usePartialVectorLoads(N, Subtarget)) { in getPreIndexedAddressParts() 2634 else if (!isLoad) { in getPreIndexedAddressParts()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemoryDependenceAnalysis.cpp | 329 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getPointerDependencyFrom() 342 MemLoc, isLoad, ScanIt, BB, QueryInst, Limit, OBB); in getPointerDependencyFrom() 442 const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, in getSimplePointerDependencyFrom() 483 if (isLoad && QueryInst) { in getSimplePointerDependencyFrom() 581 if (isLoad) { in getSimplePointerDependencyFrom() 682 if (isLoad && FI->getOrdering() == AtomicOrdering::Release) in getSimplePointerDependencyFrom() 699 if (isLoad) in getSimplePointerDependencyFrom() 750 bool isLoad = !isModSet(MR); in getDependency() local 752 isLoad |= II->getIntrinsicID() == Intrinsic::lifetime_start; in getDependency() 755 getPointerDependencyFrom(MemLoc, isLoad, ScanPo in getDependency() 328 getPointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, OrderedBasicBlock *OBB) getPointerDependencyFrom() argument 441 getSimplePointerDependencyFrom( const MemoryLocation &MemLoc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, OrderedBasicBlock *OBB) getSimplePointerDependencyFrom() argument 918 bool isLoad = isa<LoadInst>(QueryInst); getNonLocalPointerDependency() local 978 GetNonLocalInfoForBlock( Instruction *QueryInst, const MemoryLocation &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries) GetNonLocalInfoForBlock() argument 1093 getNonLocalPointerDepFromBB( Instruction *QueryInst, const PHITransAddr &Pointer, const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock *, Value *> &Visited, bool SkipFirstBlock) getNonLocalPointerDepFromBB() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | MemoryDependenceAnalysis.h | 439 /// If isLoad is true, this routine ignores may-aliases with read-only 440 /// operations. If isLoad is false, this routine ignores may-aliases 450 MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad, 458 getSimplePointerDependencyFrom(const MemoryLocation &MemLoc, bool isLoad, 492 const MemoryLocation &Loc, bool isLoad, 498 const MemoryLocation &Loc, bool isLoad,
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Optimizer.cpp | 52 static bool isLoad(const Ice::Inst &instruction); 254 if(isLoad(*use)) // Direct use of base address in performScalarReplacementOfAggregates() 441 else if(isLoad(inst)) in optimizeSingleBasicBlockLoadsStores() 611 if(isLoad(*use) && use->getLoadAddress() == allocaAddress) in isStaticallyIndexedArray() 685 bool Optimizer::isLoad(const Ice::Inst &instruction) in isLoad() function in __anon22923::Optimizer 712 assert(isLoad(*load) && isStore(*store)); in loadTypeMatchesStore() 775 else if(isLoad(inst)) in collectDiagnostics() 834 if(isLoad(*instruction)) in insert()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineOperand.cpp | 1018 assert((isLoad() || isStore()) && "Not a load/store!"); in MachineMemOperand() 1083 assert((isLoad() || isStore()) && in print() 1085 if (isLoad()) in print() 1103 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print() 1106 OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into "); in print()
|
H A D | TargetInstrInfo.cpp | 358 if ((*o)->isLoad() && in hasLoadFromStackSlot()
|
H A D | MachineVerifier.cpp | 1492 if ((*I)->isLoad() && !MI->mayLoad()) in visitMachineInstrBefore()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
H A D | ARCInstrInfo.cpp | 53 static bool isLoad(int Opcode) { in isLoad() function 71 if (isLoad(Opcode)) { in isLoadFromStackSlot()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/Disassembler/ |
H A D | SparcDisassembler.cpp | 372 bool isLoad, DecodeFunc DecodeRD) { in DecodeMem() 386 if (isLoad) { in DecodeMem() 409 if (!isLoad) { in DecodeMem() 370 DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, const void *Decoder, bool isLoad, DecodeFunc DecodeRD) DecodeMem() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineMemOperand.h | 258 bool isLoad() const { return FlagVals & MOLoad; } in isLoad() function in llvm::MachineMemOperand
|
H A D | SelectionDAGNodes.h | 1299 bool readMem() const { return MMO->isLoad(); } in readMem()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 649 bool isLoad() const { in isLoad() function in __anon25107::EarlyCSE::ParseMemoryInst 1088 if (MemInst.isValid() && MemInst.isLoad()) { in processNode()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_peephole.cpp | 3173 bool isLoad = true; in runOpt() local 3198 isLoad = false; in runOpt() 3228 if (isLoad) { in runOpt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.cpp | 171 bool isLoad = !MI.mayStore(); in convertToThreeAddress() local 172 const MachineOperand &WB = isLoad ? MI.getOperand(1) : MI.getOperand(0); in convertToThreeAddress() 240 if (isLoad) in convertToThreeAddress() 256 if (isLoad) in convertToThreeAddress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerARM32.cpp | 2044 constexpr bool isLoad = false; 2051 emitMemOp(Cond, kInstTypeMemImmediate, isLoad, isByte, Rt, Address);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGISel.cpp | 3543 if (MMO->isLoad()) { in SelectCodeCommon()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 7123 bool isLoad = (Mnemonic == "ldrexd" || Mnemonic == "ldaexd"); in ParseInstruction() local 7124 unsigned Idx = isLoad ? 2 : 3; in ParseInstruction() 7140 isLoad ? "destination operands must be sequential" in ParseInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86InstrInfo.cpp | 5369 if (!MMO->isLoad()) in extractLoadMMOs() 5393 if (!MMO->isLoad()) { in extractStoreMMOs()
|