Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Table

611   // See if this value already exists in the symbol table.  If so, it is either
758 // Look this name up in the normal function symbol table.
771 // If we have the value in the symbol table or fwd-ref table, return it.
809 // If we have the value in the symbol table or fwd-ref table, return it.
1701 // Look this name up in the normal function symbol table.
1713 // If we have the value in the symbol table or fwd-ref table, return it.
1743 // Look this name up in the normal function symbol table.
1755 // If we have the value in the symbol table or fwd-ref table, return it.
1875 // BB forward references are already in the function symbol table.
2705 // from the forward reference table and fill in the forward ref.
2757 // If the argument has a name, insert it into the argument symbol table.
3091 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3097 // Parse the jump table pairs.
3099 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3114 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
3119 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
3120 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3121 SI->addCase(Table[i].first, Table[i].second);