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

  /external/v8/src/ast/
scopes.h 19 class VariableMap: public ZoneHashMap {
21 explicit VariableMap(Zone* zone);
23 virtual ~VariableMap();
46 maps_[i] = new(zone->New(sizeof(VariableMap))) VariableMap(zone);
49 VariableMap* GetMap(VariableMode mode) {
56 VariableMap *maps_[3];
608 VariableMap variables_;
scopes.cc 25 VariableMap::VariableMap(Zone* zone)
28 VariableMap::~VariableMap() {}
30 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name,
50 Variable* VariableMap::Lookup(const AstRawString* name) {
660 for (VariableMap::Entry* p = variables_.Start();
904 static void PrintMap(int indent, VariableMap* map) {
905 for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 58 /// VariableMap - A map from variable names ('$dst') to the recorded operand
61 StringMap<unsigned> VariableMap;
65 /// VariableMap because that leads to identity checking if they are
66 /// encountered multiple times. Biased by 1 like VariableMap for
128 unsigned VarMapEntry = VariableMap[Name];
279 unsigned InputOperand = VariableMap[N->getName()] - 1;
449 unsigned &VarMapEntry = VariableMap[Name];
479 // If this node has a name associated with it, capture it in VariableMap. If
    [all...]

Completed in 1101 milliseconds