|
13 | 13 | #ifndef LLVM_EXECUTIONENGINE_JITLINK_JITLINK_H |
14 | 14 | #define LLVM_EXECUTIONENGINE_JITLINK_JITLINK_H |
15 | 15 |
|
16 | | -#include "llvm/Support/Compiler.h" |
17 | 16 | #include "llvm/ADT/DenseMap.h" |
18 | 17 | #include "llvm/ADT/DenseSet.h" |
19 | 18 | #include "llvm/ADT/FunctionExtras.h" |
|
28 | 27 | #include "llvm/Support/Allocator.h" |
29 | 28 | #include "llvm/Support/BinaryStreamReader.h" |
30 | 29 | #include "llvm/Support/BinaryStreamWriter.h" |
| 30 | +#include "llvm/Support/Compiler.h" |
31 | 31 | #include "llvm/Support/Endian.h" |
32 | 32 | #include "llvm/Support/Error.h" |
33 | 33 | #include "llvm/Support/FormatVariadic.h" |
@@ -712,7 +712,7 @@ class Symbol { |
712 | 712 | LLVM_ABI raw_ostream &operator<<(raw_ostream &OS, const Symbol &A); |
713 | 713 |
|
714 | 714 | LLVM_ABI void printEdge(raw_ostream &OS, const Block &B, const Edge &E, |
715 | | - StringRef EdgeKindName); |
| 715 | + StringRef EdgeKindName); |
716 | 716 |
|
717 | 717 | /// Represents an object file section. |
718 | 718 | class Section { |
@@ -1663,7 +1663,7 @@ class LinkGraph { |
1663 | 1663 |
|
1664 | 1664 | private: |
1665 | 1665 | LLVM_ABI std::vector<Block *> splitBlockImpl(std::vector<Block *> Blocks, |
1666 | | - SplitBlockCache *Cache); |
| 1666 | + SplitBlockCache *Cache); |
1667 | 1667 |
|
1668 | 1668 | // Put the BumpPtrAllocator first so that we don't free any of the underlying |
1669 | 1669 | // memory until the Symbol/Addressable destructors have been run. |
@@ -2000,10 +2000,10 @@ LLVM_ABI Error markAllSymbolsLive(LinkGraph &G); |
2000 | 2000 |
|
2001 | 2001 | /// Create an out of range error for the given edge in the given block. |
2002 | 2002 | LLVM_ABI Error makeTargetOutOfRangeError(const LinkGraph &G, const Block &B, |
2003 | | - const Edge &E); |
| 2003 | + const Edge &E); |
2004 | 2004 |
|
2005 | | -LLVM_ABI Error makeAlignmentError(llvm::orc::ExecutorAddr Loc, uint64_t Value, int N, |
2006 | | - const Edge &E); |
| 2005 | +LLVM_ABI Error makeAlignmentError(llvm::orc::ExecutorAddr Loc, uint64_t Value, |
| 2006 | + int N, const Edge &E); |
2007 | 2007 |
|
2008 | 2008 | /// Creates a new pointer block in the given section and returns an |
2009 | 2009 | /// Anonymous symbol pointing to it. |
@@ -2074,7 +2074,8 @@ absoluteSymbolsLinkGraph(Triple TT, std::shared_ptr<orc::SymbolStringPool> SSP, |
2074 | 2074 | orc::SymbolMap Symbols); |
2075 | 2075 |
|
2076 | 2076 | /// Link the given graph. |
2077 | | -LLVM_ABI void link(std::unique_ptr<LinkGraph> G, std::unique_ptr<JITLinkContext> Ctx); |
| 2077 | +LLVM_ABI void link(std::unique_ptr<LinkGraph> G, |
| 2078 | + std::unique_ptr<JITLinkContext> Ctx); |
2078 | 2079 |
|
2079 | 2080 | } // end namespace jitlink |
2080 | 2081 | } // end namespace llvm |
|
0 commit comments