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

  /external/llvm/lib/MC/
MCContext.cpp 307 SmallVectorImpl<MCDwarfFile *>& MCDwarfFiles = MCDwarfFilesCUMap[CUID];
309 // Make space for this FileNumber in the MCDwarfFiles vector if needed.
310 if (FileNumber >= MCDwarfFiles.size()) {
311 MCDwarfFiles.resize(FileNumber + 1);
313 MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber];
320 MCDwarfFile *&File = MCDwarfFiles[FileNumber];
350 // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
352 // are stored at MCDwarfFiles[FileNumber].Name .
356 // Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles
369 SmallVectorImpl<MCDwarfFile *>& MCDwarfFiles = MCDwarfFilesCUMap[CUID]
    [all...]
MCDwarf.cpp 310 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
312 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
313 MCOS->EmitBytes(MCDwarfFiles[i]->getName()); // FileName
316 MCOS->EmitULEB128IntValue(MCDwarfFiles[i]->getDirIndex());
652 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
654 MCOS->EmitBytes(MCDwarfFiles[1]->getName());
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 629 const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles =
631 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) {
632 if (!MCDwarfFiles[i])
    [all...]

Completed in 1192 milliseconds