mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Apparently, the style needs to be agreed upon first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d96e362b3f
commit
cd52a7a381
@ -1896,11 +1896,11 @@ inline APInt Xor(const APInt &LHS, const APInt &RHS) { return LHS ^ RHS; }
|
|||||||
/// Performs a bitwise complement operation on APInt.
|
/// Performs a bitwise complement operation on APInt.
|
||||||
inline APInt Not(const APInt &APIVal) { return ~APIVal; }
|
inline APInt Not(const APInt &APIVal) { return ~APIVal; }
|
||||||
|
|
||||||
} // namespace APIntOps
|
} // End of APIntOps namespace
|
||||||
|
|
||||||
// See friend declaration above. This additional declaration is required in
|
// See friend declaration above. This additional declaration is required in
|
||||||
// order to compile LLVM with IBM xlC compiler.
|
// order to compile LLVM with IBM xlC compiler.
|
||||||
hash_code hash_value(const APInt &Arg);
|
hash_code hash_value(const APInt &Arg);
|
||||||
} // namespace llvm
|
} // End of llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -366,6 +366,6 @@ namespace llvm {
|
|||||||
template <typename T> struct isPodLike<ArrayRef<T> > {
|
template <typename T> struct isPodLike<ArrayRef<T> > {
|
||||||
static const bool value = true;
|
static const bool value = true;
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -568,7 +568,7 @@ private:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
/// Implement std::swap in terms of BitVector swap.
|
/// Implement std::swap in terms of BitVector swap.
|
||||||
|
@ -42,7 +42,7 @@ struct DenseMapPair : public std::pair<KeyT, ValueT> {
|
|||||||
ValueT &getSecond() { return std::pair<KeyT, ValueT>::second; }
|
ValueT &getSecond() { return std::pair<KeyT, ValueT>::second; }
|
||||||
const ValueT &getSecond() const { return std::pair<KeyT, ValueT>::second; }
|
const ValueT &getSecond() const { return std::pair<KeyT, ValueT>::second; }
|
||||||
};
|
};
|
||||||
} // namespace detail
|
}
|
||||||
|
|
||||||
template <
|
template <
|
||||||
typename KeyT, typename ValueT, typename KeyInfoT = DenseMapInfo<KeyT>,
|
typename KeyT, typename ValueT, typename KeyInfoT = DenseMapInfo<KeyT>,
|
||||||
|
@ -32,7 +32,7 @@ public:
|
|||||||
DenseSetEmpty &getSecond() { return *this; }
|
DenseSetEmpty &getSecond() { return *this; }
|
||||||
const DenseSetEmpty &getSecond() const { return *this; }
|
const DenseSetEmpty &getSecond() const { return *this; }
|
||||||
};
|
};
|
||||||
} // namespace detail
|
}
|
||||||
|
|
||||||
/// DenseSet - This implements a dense probed hash-table based set.
|
/// DenseSet - This implements a dense probed hash-table based set.
|
||||||
template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
|
template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
|
||||||
|
@ -288,6 +288,6 @@ iterator_range<idf_ext_iterator<T, SetTy>> inverse_depth_first_ext(const T& G,
|
|||||||
return make_range(idf_ext_begin(G, S), idf_ext_end(G, S));
|
return make_range(idf_ext_begin(G, S), idf_ext_end(G, S));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -278,6 +278,6 @@ public:
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -101,6 +101,6 @@ struct GraphTraits<Inverse<Inverse<T> > > {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -80,6 +80,6 @@ template <typename T, typename ToIndexT = llvm::identity<unsigned> >
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -83,6 +83,6 @@ public:
|
|||||||
void uncompress();
|
void uncompress();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -204,6 +204,6 @@ void operator>=(const Optional<T> &X, const Optional<U> &Y);
|
|||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
void operator>(const Optional<T> &X, const Optional<U> &Y);
|
void operator>(const Optional<T> &X, const Optional<U> &Y);
|
||||||
|
|
||||||
} // namespace llvm
|
} // end llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -507,6 +507,6 @@ namespace llvm {
|
|||||||
RHS.template get<U>()));
|
RHS.template get<U>()));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -295,6 +295,6 @@ public:
|
|||||||
rpo_iterator end() { return Blocks.rend(); }
|
rpo_iterator end() { return Blocks.rend(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -79,6 +79,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -240,6 +240,6 @@ template <class T> scc_iterator<Inverse<T> > scc_end(const Inverse<T> &G) {
|
|||||||
return scc_iterator<Inverse<T> >::end(G);
|
return scc_iterator<Inverse<T> >::end(G);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -417,6 +417,6 @@ template <typename T> struct deref {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -66,6 +66,6 @@ void set_subtract(S1Ty &S1, const S2Ty &S2) {
|
|||||||
S1.erase(*SI);
|
S1.erase(*SI);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -225,7 +225,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
// vim: sw=2 ai
|
// vim: sw=2 ai
|
||||||
#endif
|
#endif
|
||||||
|
@ -588,7 +588,7 @@ operator^(const SmallBitVector &LHS, const SmallBitVector &RHS) {
|
|||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
/// Implement std::swap in terms of BitVector swap.
|
/// Implement std::swap in terms of BitVector swap.
|
||||||
|
@ -334,7 +334,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
/// Implement std::swap in terms of SmallPtrSet swap.
|
/// Implement std::swap in terms of SmallPtrSet swap.
|
||||||
|
@ -292,6 +292,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -924,7 +924,7 @@ static inline size_t capacity_in_bytes(const SmallVector<T, N> &X) {
|
|||||||
return X.capacity_in_bytes();
|
return X.capacity_in_bytes();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
/// Implement std::swap in terms of SmallVector swap.
|
/// Implement std::swap in terms of SmallVector swap.
|
||||||
@ -940,6 +940,6 @@ namespace std {
|
|||||||
swap(llvm::SmallVector<T, N> &LHS, llvm::SmallVector<T, N> &RHS) {
|
swap(llvm::SmallVector<T, N> &LHS, llvm::SmallVector<T, N> &RHS) {
|
||||||
LHS.swap(RHS);
|
LHS.swap(RHS);
|
||||||
}
|
}
|
||||||
} // namespace std
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -176,6 +176,6 @@ void PrintStatistics();
|
|||||||
/// \brief Print statistics to the given output stream.
|
/// \brief Print statistics to the given output stream.
|
||||||
void PrintStatistics(raw_ostream &OS);
|
void PrintStatistics(raw_ostream &OS);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -207,6 +207,6 @@ inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) {
|
|||||||
return join_impl(Begin, End, Separator, tag());
|
return join_impl(Begin, End, Separator, tag());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -447,6 +447,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -566,6 +566,6 @@ namespace llvm {
|
|||||||
// StringRefs can be treated like a POD type.
|
// StringRefs can be treated like a POD type.
|
||||||
template <typename T> struct isPodLike;
|
template <typename T> struct isPodLike;
|
||||||
template <> struct isPodLike<StringRef> { static const bool value = true; };
|
template <> struct isPodLike<StringRef> { static const bool value = true; };
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -29,6 +29,6 @@ namespace llvm {
|
|||||||
return base::insert(std::make_pair(Key, '\0'));
|
return base::insert(std::make_pair(Key, '\0'));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif // LLVM_ADT_STRINGSET_H
|
#endif // LLVM_ADT_STRINGSET_H
|
||||||
|
@ -609,7 +609,7 @@ public:
|
|||||||
/// @}
|
/// @}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -537,6 +537,6 @@ namespace llvm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -97,6 +97,6 @@ unsigned ComputeEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
|
|||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -655,7 +655,7 @@ struct ilist : public iplist<NodeTy> {
|
|||||||
void resize(size_type newsize) { resize(newsize, NodeTy()); }
|
void resize(size_type newsize) { resize(newsize, NodeTy()); }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
// Ensure that swap uses the fast list swap...
|
// Ensure that swap uses the fast list swap...
|
||||||
|
@ -101,6 +101,6 @@ public:
|
|||||||
/// @}
|
/// @}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -239,6 +239,6 @@ struct pointee_iterator
|
|||||||
T &operator*() const { return **this->I; }
|
T &operator*() const { return **this->I; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -51,6 +51,6 @@ template <class T> iterator_range<T> make_range(T x, T y) {
|
|||||||
template <typename T> iterator_range<T> make_range(std::pair<T, T> p) {
|
template <typename T> iterator_range<T> make_range(std::pair<T, T> p) {
|
||||||
return iterator_range<T>(std::move(p.first), std::move(p.second));
|
return iterator_range<T>(std::move(p.first), std::move(p.second));
|
||||||
}
|
}
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -570,6 +570,6 @@ bool isIdentifiedObject(const Value *V);
|
|||||||
/// IdentifiedObjects.
|
/// IdentifiedObjects.
|
||||||
bool isIdentifiedFunctionLocal(const Value *V);
|
bool isIdentifiedFunctionLocal(const Value *V);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -443,6 +443,6 @@ inline raw_ostream& operator<<(raw_ostream &OS, const AliasSetTracker &AST) {
|
|||||||
return OS;
|
return OS;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -63,6 +63,6 @@ public:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -628,7 +628,7 @@ void IrreducibleGraph::addEdges(const BlockNode &Node,
|
|||||||
else
|
else
|
||||||
addBlockEdges(*this, Irr, OuterLoop);
|
addBlockEdges(*this, Irr, OuterLoop);
|
||||||
}
|
}
|
||||||
} // namespace bfi_detail
|
}
|
||||||
|
|
||||||
/// \brief Shared implementation for block frequency analysis.
|
/// \brief Shared implementation for block frequency analysis.
|
||||||
///
|
///
|
||||||
@ -1133,7 +1133,7 @@ template <class BT> struct BlockEdgesAdder {
|
|||||||
G.addEdge(Irr, BFI.getNode(*I), OuterLoop);
|
G.addEdge(Irr, BFI.getNode(*I), OuterLoop);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace bfi_detail
|
}
|
||||||
template <class BT>
|
template <class BT>
|
||||||
void BlockFrequencyInfoImpl<BT>::computeIrreducibleMass(
|
void BlockFrequencyInfoImpl<BT>::computeIrreducibleMass(
|
||||||
LoopData *OuterLoop, std::list<LoopData>::iterator Insert) {
|
LoopData *OuterLoop, std::list<LoopData>::iterator Insert) {
|
||||||
|
@ -158,6 +158,6 @@ private:
|
|||||||
bool calcInvokeHeuristics(BasicBlock *BB);
|
bool calcInvokeHeuristics(BasicBlock *BB);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -78,6 +78,6 @@ bool isPotentiallyReachable(const BasicBlock *From, const BasicBlock *To,
|
|||||||
const DominatorTree *DT = nullptr,
|
const DominatorTree *DT = nullptr,
|
||||||
const LoopInfo *LI = nullptr);
|
const LoopInfo *LI = nullptr);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -119,7 +119,7 @@ struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class FunctionPass;
|
class FunctionPass;
|
||||||
|
@ -485,6 +485,6 @@ CGSCCToFunctionPassAdaptor<FunctionPassT>
|
|||||||
createCGSCCToFunctionPassAdaptor(FunctionPassT Pass) {
|
createCGSCCToFunctionPassAdaptor(FunctionPassT Pass) {
|
||||||
return CGSCCToFunctionPassAdaptor<FunctionPassT>(std::move(Pass));
|
return CGSCCToFunctionPassAdaptor<FunctionPassT>(std::move(Pass));
|
||||||
}
|
}
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -481,6 +481,6 @@ struct GraphTraits<const CallGraph *> : public GraphTraits<
|
|||||||
static const CallGraphNode &CGdereference(PairTy P) { return *P.second; }
|
static const CallGraphNode &CGdereference(PairTy P) { return *P.second; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -102,6 +102,6 @@ public:
|
|||||||
iterator end() const { return Nodes.end(); }
|
iterator end() const { return Nodes.end(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -102,6 +102,6 @@ struct CodeMetrics {
|
|||||||
SmallPtrSetImpl<const Value *> &EphValues);
|
SmallPtrSetImpl<const Value *> &EphValues);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -97,6 +97,6 @@ bool canConstantFoldCallTo(const Function *F);
|
|||||||
/// with the specified arguments, returning null if unsuccessful.
|
/// with the specified arguments, returning null if unsuccessful.
|
||||||
Constant *ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
|
Constant *ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
|
||||||
const TargetLibraryInfo *TLI = nullptr);
|
const TargetLibraryInfo *TLI = nullptr);
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -25,6 +25,6 @@ namespace llvm {
|
|||||||
FunctionPass *createPostDomOnlyPrinterPass();
|
FunctionPass *createPostDomOnlyPrinterPass();
|
||||||
FunctionPass *createPostDomViewerPass();
|
FunctionPass *createPostDomViewerPass();
|
||||||
FunctionPass *createPostDomOnlyViewerPass();
|
FunctionPass *createPostDomOnlyViewerPass();
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -205,6 +205,6 @@ public:
|
|||||||
EXTERN_TEMPLATE_INSTANTIATION(class DominanceFrontierBase<BasicBlock>);
|
EXTERN_TEMPLATE_INSTANTIATION(class DominanceFrontierBase<BasicBlock>);
|
||||||
EXTERN_TEMPLATE_INSTANTIATION(class ForwardDominanceFrontierBase<BasicBlock>);
|
EXTERN_TEMPLATE_INSTANTIATION(class ForwardDominanceFrontierBase<BasicBlock>);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -221,6 +221,6 @@ ForwardDominanceFrontierBase<BlockT>::calculate(const DomTreeT &DT,
|
|||||||
return *Result;
|
return *Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -178,6 +178,6 @@ protected:
|
|||||||
|
|
||||||
Pass *createIVUsersPass();
|
Pass *createIVUsersPass();
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -36,7 +36,7 @@ namespace InlineConstants {
|
|||||||
/// Do not inline functions which allocate this many bytes on the stack
|
/// Do not inline functions which allocate this many bytes on the stack
|
||||||
/// when the caller is recursive.
|
/// when the caller is recursive.
|
||||||
const unsigned TotalAllocaSizeRecursiveCaller = 1024;
|
const unsigned TotalAllocaSizeRecursiveCaller = 1024;
|
||||||
} // namespace InlineConstants
|
}
|
||||||
|
|
||||||
/// \brief Represents the cost of inlining a function.
|
/// \brief Represents the cost of inlining a function.
|
||||||
///
|
///
|
||||||
@ -138,6 +138,6 @@ public:
|
|||||||
bool isInlineViable(Function &Callee);
|
bool isInlineViable(Function &Callee);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -145,6 +145,6 @@ template <> struct GraphTraits<Inverse<Interval*> > {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -263,6 +263,6 @@ inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) {
|
|||||||
return interval_part_interval_iterator();
|
return interval_part_interval_iterator();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -106,6 +106,6 @@ private:
|
|||||||
void updatePredecessors(Interval *Int);
|
void updatePredecessors(Interval *Int);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -92,5 +92,5 @@ private:
|
|||||||
const SmallPtrSetImpl<BasicBlock *> *DefBlocks;
|
const SmallPtrSetImpl<BasicBlock *> *DefBlocks;
|
||||||
SmallVector<BasicBlock *, 32> PHIBlocks;
|
SmallVector<BasicBlock *, 32> PHIBlocks;
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -66,6 +66,6 @@ private:
|
|||||||
/// bound specifies the maximum number of bytes needed to represent an
|
/// bound specifies the maximum number of bytes needed to represent an
|
||||||
/// unconditional jump or a trap instruction in the back end currently in use.
|
/// unconditional jump or a trap instruction in the back end currently in use.
|
||||||
ModulePass *createJumpInstrTableInfoPass(unsigned Bound);
|
ModulePass *createJumpInstrTableInfoPass(unsigned Bound);
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif /* LLVM_ANALYSIS_JUMPINSTRTABLEINFO_H */
|
#endif /* LLVM_ANALYSIS_JUMPINSTRTABLEINFO_H */
|
||||||
|
@ -569,6 +569,6 @@ public:
|
|||||||
static StringRef name() { return "LazyCallGraphPrinterPass"; }
|
static StringRef name() { return "LazyCallGraphPrinterPass"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -66,6 +66,6 @@ namespace llvm {
|
|||||||
ImmutableCallSite CS,
|
ImmutableCallSite CS,
|
||||||
const MemoryLocation &Loc);
|
const MemoryLocation &Loc);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
} // End of llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -44,6 +44,6 @@ void lintFunction(
|
|||||||
const Function &F ///< The function to be checked
|
const Function &F ///< The function to be checked
|
||||||
);
|
);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -52,6 +52,6 @@ Value *FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
|
|||||||
AliasAnalysis *AA = nullptr,
|
AliasAnalysis *AA = nullptr,
|
||||||
AAMDNodes *AATags = nullptr);
|
AAMDNodes *AATags = nullptr);
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -555,6 +555,6 @@ private:
|
|||||||
DominatorTree *DT;
|
DominatorTree *DT;
|
||||||
LoopInfo *LI;
|
LoopInfo *LI;
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -763,6 +763,6 @@ public:
|
|||||||
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -535,6 +535,6 @@ void LoopInfoBase<BlockT, LoopT>::verify() const {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -169,6 +169,6 @@ private:
|
|||||||
Loop *CurrentLoop;
|
Loop *CurrentLoop;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -262,6 +262,6 @@ public:
|
|||||||
SizeOffsetEvalType visitInstruction(Instruction &I);
|
SizeOffsetEvalType visitInstruction(Instruction &I);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -445,6 +445,6 @@ namespace llvm {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -137,6 +137,6 @@ template <> struct DenseMapInfo<MemoryLocation> {
|
|||||||
return LHS == RHS;
|
return LHS == RHS;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -173,6 +173,6 @@ namespace llvm {
|
|||||||
//
|
//
|
||||||
FunctionPass *createMemDerefPrinter();
|
FunctionPass *createMemDerefPrinter();
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -112,6 +112,6 @@ template <> struct GraphTraits<PostDominatorTree*>
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -280,6 +280,6 @@ protected:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -906,5 +906,5 @@ EXTERN_TEMPLATE_INSTANTIATION(class RegionBase<RegionTraits<Function>>);
|
|||||||
EXTERN_TEMPLATE_INSTANTIATION(class RegionNodeBase<RegionTraits<Function>>);
|
EXTERN_TEMPLATE_INSTANTIATION(class RegionNodeBase<RegionTraits<Function>>);
|
||||||
EXTERN_TEMPLATE_INSTANTIATION(class RegionInfoBase<RegionTraits<Function>>);
|
EXTERN_TEMPLATE_INSTANTIATION(class RegionInfoBase<RegionTraits<Function>>);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
#endif
|
#endif
|
||||||
|
@ -123,6 +123,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -981,6 +981,6 @@ namespace llvm {
|
|||||||
/// to locate them all and call their destructors.
|
/// to locate them all and call their destructors.
|
||||||
SCEVUnknown *FirstUnknown;
|
SCEVUnknown *FirstUnknown;
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -275,6 +275,6 @@ namespace llvm {
|
|||||||
Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
|
Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
|
||||||
Type *ExpandTy, Type *IntTy, bool useSubtract);
|
Type *ExpandTy, Type *IntTy, bool useSubtract);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -829,6 +829,6 @@ static inline const SCEV *apply(const SCEV *Scev, LoopToScevMapT &Map,
|
|||||||
return SCEVApplyRewriter::rewrite(Scev, Map, SE);
|
return SCEVApplyRewriter::rewrite(Scev, Map, SE);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -73,6 +73,6 @@ const SCEV *TransformForPostIncUse(TransformKind Kind,
|
|||||||
ScalarEvolution &SE,
|
ScalarEvolution &SE,
|
||||||
DominatorTree &DT);
|
DominatorTree &DT);
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -265,6 +265,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -908,6 +908,6 @@ public:
|
|||||||
/// clients.
|
/// clients.
|
||||||
ImmutablePass *createTargetTransformInfoWrapperPass(TargetIRAnalysis TIRA);
|
ImmutablePass *createTargetTransformInfoWrapperPass(TargetIRAnalysis TIRA);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -446,6 +446,6 @@ public:
|
|||||||
U->getNumOperands() == 1 ? U->getOperand(0)->getType() : nullptr);
|
U->getNumOperands() == 1 ? U->getOperand(0)->getType() : nullptr);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -67,6 +67,6 @@ std::unique_ptr<Module> parseAssembly(MemoryBufferRef F, SMDiagnostic &Err,
|
|||||||
/// @return true on error.
|
/// @return true on error.
|
||||||
bool parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err);
|
bool parseAssemblyInto(MemoryBufferRef F, Module &M, SMDiagnostic &Err);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -77,7 +77,7 @@ namespace bitc {
|
|||||||
// [id, name]
|
// [id, name]
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace bitc
|
} // End bitc namespace
|
||||||
|
|
||||||
/// BitCodeAbbrevOp - This describes one or more operands in an abbreviation.
|
/// BitCodeAbbrevOp - This describes one or more operands in an abbreviation.
|
||||||
/// This is actually a union of two different things:
|
/// This is actually a union of two different things:
|
||||||
@ -180,6 +180,6 @@ public:
|
|||||||
OperandList.push_back(OpInfo);
|
OperandList.push_back(OpInfo);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -56,6 +56,6 @@ public:
|
|||||||
static StringRef name() { return "BitcodeWriterPass"; }
|
static StringRef name() { return "BitcodeWriterPass"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -512,6 +512,6 @@ public:
|
|||||||
bool ReadBlockInfoBlock();
|
bool ReadBlockInfoBlock();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -520,6 +520,6 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -416,7 +416,7 @@ namespace bitc {
|
|||||||
COMDAT_SELECTION_KIND_SAME_SIZE = 5,
|
COMDAT_SELECTION_KIND_SAME_SIZE = 5,
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace bitc
|
} // End bitc namespace
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -166,7 +166,7 @@ namespace llvm {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
template <> struct is_error_code_enum<llvm::BitcodeError> : std::true_type {};
|
template <> struct is_error_code_enum<llvm::BitcodeError> : std::true_type {};
|
||||||
|
@ -115,6 +115,6 @@ bool returnTypeIsEligibleForTailCall(const Function *F,
|
|||||||
// or we are in LTO.
|
// or we are in LTO.
|
||||||
bool canBeOmittedFromSymbolTable(const GlobalValue *GV);
|
bool canBeOmittedFromSymbolTable(const GlobalValue *GV);
|
||||||
|
|
||||||
} // namespace llvm
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -535,6 +535,6 @@ private:
|
|||||||
void EmitXXStructorList(const Constant *List, bool isCtor);
|
void EmitXXStructorList(const Constant *List, bool isCtor);
|
||||||
GCMetadataPrinter *GetOrCreateGCPrinter(GCStrategy &C);
|
GCMetadataPrinter *GetOrCreateGCPrinter(GCStrategy &C);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -830,6 +830,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -74,6 +74,6 @@ namespace llvm {
|
|||||||
const MachineBlockFrequencyInfo &MBFI,
|
const MachineBlockFrequencyInfo &MBFI,
|
||||||
VirtRegAuxInfo::NormalizingFn norm =
|
VirtRegAuxInfo::NormalizingFn norm =
|
||||||
normalizeSpillWeight);
|
normalizeSpillWeight);
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif // LLVM_CODEGEN_CALCSPILLWEIGHTS_H
|
#endif // LLVM_CODEGEN_CALCSPILLWEIGHTS_H
|
||||||
|
@ -159,6 +159,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -635,6 +635,6 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
} // end llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -69,6 +69,6 @@ private:
|
|||||||
void emitFunctionInfo(const MCSymbol *FnLabel, const FunctionFaultInfos &FFI);
|
void emitFunctionInfo(const MCSymbol *FnLabel, const FunctionFaultInfos &FFI);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -201,6 +201,6 @@ public:
|
|||||||
/// will soon change.
|
/// will soon change.
|
||||||
GCFunctionInfo &getFunctionInfo(const Function &F);
|
GCFunctionInfo &getFunctionInfo(const Function &F);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -59,6 +59,6 @@ public:
|
|||||||
|
|
||||||
virtual ~GCMetadataPrinter();
|
virtual ~GCMetadataPrinter();
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -172,6 +172,6 @@ public:
|
|||||||
/// register your GCMetadataPrinter subclass with the
|
/// register your GCMetadataPrinter subclass with the
|
||||||
/// GCMetadataPrinterRegistery as well.
|
/// GCMetadataPrinterRegistery as well.
|
||||||
typedef Registry<GCStrategy> GCRegistry;
|
typedef Registry<GCStrategy> GCRegistry;
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -41,6 +41,6 @@ void linkErlangGCPrinter();
|
|||||||
void linkShadowStackGC();
|
void linkShadowStackGC();
|
||||||
|
|
||||||
void linkStatepointExampleGC();
|
void linkStatepointExampleGC();
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -892,8 +892,8 @@ namespace ISD {
|
|||||||
CVT_INVALID /// Marker - Invalid opcode
|
CVT_INVALID /// Marker - Invalid opcode
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ISD
|
} // end llvm::ISD namespace
|
||||||
|
|
||||||
} // namespace llvm
|
} // end llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -54,6 +54,6 @@ namespace llvm {
|
|||||||
/// simple integer bswap.
|
/// simple integer bswap.
|
||||||
static bool LowerToByteSwap(CallInst *CI);
|
static bool LowerToByteSwap(CallInst *CI);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -93,6 +93,6 @@ private:
|
|||||||
void AdjustPriorityOfUnscheduledPreds(SUnit *SU);
|
void AdjustPriorityOfUnscheduledPreds(SUnit *SU);
|
||||||
SUnit *getSingleUnscheduledPred(SUnit *SU);
|
SUnit *getSingleUnscheduledPred(SUnit *SU);
|
||||||
};
|
};
|
||||||
} // namespace llvm
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user