Lines Matching refs:Table
663 // See if this value already exists in the symbol table. If so, it is either
976 // Look this name up in the normal function symbol table.
989 // If we have the value in the symbol table or fwd-ref table, return it.
1029 // If we have the value in the symbol table or fwd-ref table, return it.
2031 // Look this name up in the normal function symbol table.
2043 // If we have the value in the symbol table or fwd-ref table, return it.
2073 // Look this name up in the normal function symbol table.
2085 // If we have the value in the symbol table or fwd-ref table, return it.
2205 // BB forward references are already in the function symbol table.
3058 // from the forward reference table and fill in the forward ref.
3114 // If the argument has a name, insert it into the argument symbol table.
3447 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3453 // Parse the jump table pairs.
3455 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3470 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
3475 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
3476 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3477 SI->addCase(Table[i].first, Table[i].second);