Searched refs:StackVariable (Results 1 – 1 of 1) sorted by relevance
343 class StackVariable final : public Variable {344 StackVariable() = delete;345 StackVariable(const StackVariable &) = delete;346 StackVariable &operator=(const StackVariable &) = delete;349 static StackVariable *create(Cfg *Func, Type Ty, SizeT Index) { in create()350 return new (Func->allocate<StackVariable>()) StackVariable(Func, Ty, Index); in create()362 StackVariable(const Cfg *Func, Type Ty, SizeT Index) in StackVariable() function