llvm-project/lldb/source/Plugins/ObjectFile
Abhina Sreeskantharajan c83cd8feef [NFC] Reordering parameters in getFile and getFileOrSTDIN
In future patches I will be setting the IsText parameter frequently so I will refactor the args to be in the following order. I have removed the FileSize parameter because it is never used.

```
  static ErrorOr<std::unique_ptr<MemoryBuffer>>
  getFile(const Twine &Filename, bool IsText = false,
          bool RequiresNullTerminator = true, bool IsVolatile = false);

  static ErrorOr<std::unique_ptr<MemoryBuffer>>
  getFileOrSTDIN(const Twine &Filename, bool IsText = false,
                 bool RequiresNullTerminator = true);

 static ErrorOr<std::unique_ptr<MB>>
 getFileAux(const Twine &Filename, uint64_t MapSize, uint64_t Offset,
            bool IsText, bool RequiresNullTerminator, bool IsVolatile);

  static ErrorOr<std::unique_ptr<WritableMemoryBuffer>>
  getFile(const Twine &Filename, bool IsVolatile = false);
```

Reviewed By: jhenderson

Differential Revision: https://reviews.llvm.org/D99182
2021-03-25 09:47:49 -04:00
..
Breakpad Support build-ids of other sizes than 16 in UUID::SetFromStringRef 2020-06-07 10:03:41 +00:00
ELF Add a progress class that can track long running operations in LLDB. 2021-03-24 12:58:13 -07:00
JIT [lldb] Use std::make_unique<> (NFC) 2020-06-24 17:48:40 -07:00
Mach-O Add a progress class that can track long running operations in LLDB. 2021-03-24 12:58:13 -07:00
PDB [NFC] Reordering parameters in getFile and getFileOrSTDIN 2021-03-25 09:47:49 -04:00
PECOFF [lldb][NFC] Refactor getUUID functionality 2020-10-30 10:44:37 -07:00
wasm [lldb][wasm] Parse DWO section names 2021-01-14 08:45:02 +01:00
CMakeLists.txt [lldb][PDB] Add ObjectFile PDB plugin 2020-10-26 10:28:48 -07:00