Home
last modified time | relevance | path

Searched refs:unmaterializedVariables (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Reactor/
DReactor.cpp74 thread_local Variable::UnmaterializedVariables *Variable::unmaterializedVariables = nullptr; member in rr::Variable
121 unmaterializedVariables->add(this); in Variable()
130 if(unmaterializedVariables) in ~Variable()
132 unmaterializedVariables->remove(this); in ~Variable()
193 unmaterializedVariables->materializeAll(); in materializeAll()
198 unmaterializedVariables->clear(); in killUnmaterialized()
DSubzeroReactor.cpp933 ASSERT(Variable::unmaterializedVariables == nullptr); in Nucleus()
935 Variable::unmaterializedVariables = new Variable::UnmaterializedVariables{}; in Nucleus()
940 delete Variable::unmaterializedVariables; in ~Nucleus()
941 Variable::unmaterializedVariables = nullptr; in ~Nucleus()
DLLVMReactor.cpp521 ASSERT(Variable::unmaterializedVariables == nullptr); in Nucleus()
525 Variable::unmaterializedVariables = new Variable::UnmaterializedVariables{}; in Nucleus()
530 delete Variable::unmaterializedVariables; in ~Nucleus()
531 Variable::unmaterializedVariables = nullptr; in ~Nucleus()
DReactor.hpp176 static thread_local UnmaterializedVariables *unmaterializedVariables; member in rr::Variable