Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Name

50       t_LocalName, t_GlobalName,       // Name in StrVal.
162 /// Restore the internal name and slot mappings using the mappings that
166 /// GetGlobalVal - Get a value with the specified name or ID, creating a
172 /// Get a Comdat with the specified name, creating a forward reference
270 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage,
274 bool ParseAlias(const std::string &Name, LocTy Loc, unsigned Linkage,
303 bool ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
329 /// GetVal - Get a value with the specified name or ID, creating a
332 Value *GetVal(const std::string &Name, Type *Ty, LocTy Loc);
336 /// basic block, this installs its name.
340 /// GetBB - Get a basic block with the specified name or ID, creating a
343 BasicBlock *GetBB(const std::string &Name, LocTy Loc);
349 BasicBlock *DefineBB(const std::string &Name, LocTy Loc);
423 bool ParseMDField(LocTy Loc, StringRef Name, FieldTy &Result);
424 template <class FieldTy> bool ParseMDField(StringRef Name, FieldTy &Result);
440 std::string Name;
442 : Loc(L), Ty(ty), Attrs(Attr), Name(N) {}