Home
last modified time | relevance | path

Searched refs:VariableMap (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceVariableSplitting.cpp49 class VariableMap { class
51 VariableMap() = delete;
52 VariableMap(const VariableMap &) = delete;
53 VariableMap &operator=(const VariableMap &) = delete;
73 explicit VariableMap(Cfg *Func) in VariableMap() function in Ice::__anone6facf990111::VariableMap
432 VariableMap VarMap;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp387 DenseMap<DebugVariable, std::pair<Value *, DIExpression *> > VariableMap; in removeRedundantDbgInstrsUsingForwardScan() local
393 auto VMI = VariableMap.find(Key); in removeRedundantDbgInstrsUsingForwardScan()
396 if (VMI == VariableMap.end() || in removeRedundantDbgInstrsUsingForwardScan()
399 VariableMap[Key] = { DVI->getValue(), DVI->getExpression() }; in removeRedundantDbgInstrsUsingForwardScan()
/third_party/skia/third_party/externals/tint/src/resolver/
Ddependency_graph.cc455 using VariableMap = std::unordered_map<Symbol, const ast::Variable*>; typedef in tint::resolver::__anon6cc0d6e10111::DependencyScanner