HomeSort by relevance Sort by last modified time
    Searched refs:InstLoad (Results 1 - 19 of 19) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceASanInstrumentation.h 53 void instrumentLoad(LoweringContext &Context, InstLoad *Instr) override;
IceInstrumentation.h 72 virtual void instrumentLoad(LoweringContext &, class InstLoad *) {}
IceInst.h 644 class InstLoad : public InstHighLevel {
645 InstLoad() = delete;
646 InstLoad(const InstLoad &) = delete;
647 InstLoad &operator=(const InstLoad &) = delete;
650 static InstLoad *create(Cfg *Func, Variable *Dest, Operand *SourceAddr,
654 return new (Func->allocate<InstLoad>()) InstLoad(Func, Dest, SourceAddr);
662 InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr)
    [all...]
IceInstrumentation.cpp 94 instrumentLoad(Context, llvm::cast<InstLoad>(Instr));
IceASanInstrumentation.cpp 365 InstLoad *Instr) {
368 auto *NewLoad = InstLoad::create(Context.getNode()->getCfg(),
IceInst.cpp 392 InstLoad::InstLoad(Cfg *Func, Variable *Dest, Operand *SourceAddr)
862 void InstLoad::dump(const Cfg *Func) const {
    [all...]
IceTargetLowering.cpp 363 if (llvm::isa<InstLoad>(*Context.getCur()))
455 lowerLoad(llvm::cast<InstLoad>(Instr));
    [all...]
IceTargetLowering.h 412 virtual void lowerLoad(const InstLoad *Instr) = 0;
WasmTranslator.cpp 286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr));
    [all...]
IceConverter.cpp 334 return Ice::InstLoad::create(Func.get(), Dest, Src);
    [all...]
IceTargetLoweringMIPS32.h 782 void lowerLoad(const InstLoad *Instr) override;
    [all...]
IceTargetLoweringX86BaseImpl.h 720 auto *Load = llvm::dyn_cast<InstLoad>(I1);
827 if (auto *Load = llvm::dyn_cast<InstLoad>(CurInst)) {
828 // An InstLoad always qualifies.
    [all...]
IceTargetLoweringARM32.h 286 void lowerLoad(const InstLoad *Instr) override;
    [all...]
IceTargetLoweringMIPS32.cpp     [all...]
IceTargetLoweringX86Base.h 279 void lowerLoad(const InstLoad *Instr) override;
    [all...]
IceTargetLoweringARM32.cpp     [all...]
PNaClTranslator.cpp     [all...]
  /external/swiftshader/src/Reactor/
Optimizer.cpp 592 if(llvm::isa<Ice::InstLoad>(&instruction))
631 if(auto *load = llvm::dyn_cast<Ice::InstLoad>(instruction))
690 if(auto *instLoad = llvm::dyn_cast<Ice::InstLoad>(load))
692 return instStore->getData()->getType() == instLoad->getDest()->getType();
SubzeroReactor.cpp 896 auto load = Ice::InstLoad::create(::function, result, ptr, align);
    [all...]

Completed in 106 milliseconds