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

  /external/swiftshader/third_party/subzero/src/
IceInstrumentation.h 58 virtual void instrumentAlloca(LoweringContext &, class InstAlloca *) {}
IceASanInstrumentation.cpp 225 std::vector<InstAlloca *> NewAllocas;
230 InstAlloca *Cur;
233 Cur = llvm::dyn_cast<InstAlloca>(iteratorToInst(Context.getCur()));
252 InstAlloca::create(Func, LastRzVar, ByteCount, Alignment));
283 InstAlloca::create(Func, Dest, ByteCount, Alignment));
302 for (InstAlloca *RzAlloca : NewAllocas) {
IceInst.h 276 class InstAlloca : public InstHighLevel {
277 InstAlloca() = delete;
278 InstAlloca(const InstAlloca &) = delete;
279 InstAlloca &operator=(const InstAlloca &) = delete;
282 static InstAlloca *create(Cfg *Func, Variable *Dest, Operand *ByteCount,
284 return new (Func->allocate<InstAlloca>())
285 InstAlloca(Func, Dest, ByteCount, AlignInBytes);
296 InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount
    [all...]
IceCfg.cpp 910 void Cfg::sortAndCombineAllocas(CfgVector<InstAlloca *> &Allocas,
916 std::sort(Allocas.begin(), Allocas.end(), [](InstAlloca *A1, InstAlloca *A2) {
    [all...]
IceInstrumentation.cpp 64 instrumentAlloca(Context, llvm::cast<InstAlloca>(Instr));
IceCfg.h 304 void sortAndCombineAllocas(CfgVector<InstAlloca *> &Allocas,
IceInst.cpp 273 InstAlloca::InstAlloca(Cfg *Func, Variable *Dest, Operand *ByteCount,
727 void InstAlloca::dump(const Cfg *Func) const {
    [all...]
IceTargetLowering.h 400 virtual void lowerAlloca(const InstAlloca *Instr) = 0;
IceTargetLowering.cpp 415 lowerAlloca(llvm::cast<InstAlloca>(Instr));
    [all...]
IceConverter.cpp 595 return Ice::InstAlloca::create(Func.get(), Dest, ByteCount, Align);
    [all...]
IceTargetLoweringMIPS32.h 765 void lowerAlloca(const InstAlloca *Instr) override;
    [all...]
IceTargetLoweringARM32.h 210 void lowerAlloca(const InstAlloca *Instr) override;
    [all...]
IceTargetLoweringX86Base.h 265 void lowerAlloca(const InstAlloca *Instr) override;
    [all...]
IceTargetLoweringMIPS32.cpp     [all...]
PNaClTranslator.cpp     [all...]
IceTargetLoweringARM32.cpp     [all...]
IceTargetLoweringX86BaseImpl.h     [all...]
  /external/swiftshader/src/Reactor/
Optimizer.cpp 120 if(!llvm::isa<Ice::InstAlloca>(alloca))
175 if(!llvm::isa<Ice::InstAlloca>(alloca))
276 if(!llvm::isa<Ice::InstAlloca>(alloca))
476 if(def && llvm::isa<Ice::InstAlloca>(def))
SubzeroReactor.cpp 625 auto alloca = Ice::InstAlloca::create(::function, address, bytes, typeSize);
    [all...]

Completed in 716 milliseconds