HomeSort by: relevance | last modified time | path
    Searched defs:Inline (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
FunctionInfo.h 93 llvm::Optional<InlineInfo> Inline;
106 return OptLineTable.hasValue() || Inline.hasValue();
130 /// and the inline info.
184 Inline = None;
188 inline bool operator==(const FunctionInfo &LHS, const FunctionInfo &RHS) {
190 LHS.OptLineTable == RHS.OptLineTable && LHS.Inline == RHS.Inline;
192 inline bool operator!=(const FunctionInfo &LHS, const FunctionInfo &RHS) {
200 inline bool operator<(const FunctionInfo &LHS, const FunctionInfo &RHS) {
205 // Then sort by inline
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
InlineInfo.cpp 43 // there will be no name and we shoud clear the inline stack. Otherwise
44 // we have found an inline call stack that we need to insert.
82 Data.getU32(&Offset); // Skip Inline.Name.
83 Data.getULEB128(&Offset); // Skip Inline.CallFile.
84 Data.getULEB128(&Offset); // Skip Inline.CallLine.
111 InlineInfo Inline;
112 Inline.Ranges.decode(Data, BaseAddr, Offset);
113 if (Inline.Ranges.empty())
115 // Check if the address is contained within the inline information, and if
117 if (!Inline.Ranges.contains(Addr))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 53 inline Class operator|(Class a, Class b) { \
58 inline Class operator&(Class a, Class b) { \
63 inline Class operator~(Class a) { \
67 inline Class &operator|=(Class &a, Class b) { \
71 inline Class &operator&=(Class &a, Class b) { \
196 Inline =
606 inline uint32_t alignOf(CodeViewContainer Container) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndex.h 104 inline const char *getHotnessName(CalleeInfo::HotnessType HT) {
239 inline raw_ostream &operator<<(raw_ostream &OS, const ValueInfo &VI) {
246 inline bool operator==(const ValueInfo &A, const ValueInfo &B) {
252 inline bool operator!=(const ValueInfo &A, const ValueInfo &B) {
258 inline bool operator<(const ValueInfo &A, const ValueInfo &B) {
265 static inline ValueInfo getEmptyKey() {
269 static inline ValueInfo getTombstoneKey() {
273 static inline bool isSpecialKey(ValueInfo V) {
497 const inline GlobalValueSummary *GlobalValueSummary::getBaseObject() const {
503 inline GlobalValueSummary *GlobalValueSummary::getBaseObject()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 313 inline Qualifiers operator|=(Qualifiers &Q1, Qualifiers Q2) {
2228 T Inline[N] = {0};
2230 bool isInline() const { return First == Inline; }
2233 First = Inline;
2234 Last = Inline;
2235 Cap = Inline + N;
2256 PODSmallVector() : First(Inline), Last(First), Cap(Inline + N) {}

Completed in 35 milliseconds