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

  /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...]
FunctionInfo.cpp 31 if (FI.Inline)
32 OS << FI.Inline << '\n';
84 FI.Inline = std::move(II.get());
129 // Write out the inline function info if we have any and if it is valid.
130 if (Inline.hasValue()) {
136 llvm::Error err = Inline->encode(O, Range.Start);
210 // We will parse the inline info after our line table, but only if
244 // If we don't have inline information, we are done.
247 // We have inline information. Try to augment the lookup result with this
DwarfTransformer.cpp 410 FI.Inline = InlineInfo();
411 FI.Inline->Name = *NameIndex;
412 FI.Inline->Ranges.insert(FI.Range);
413 parseInlineInfo(Gsym, CUI, Die, 0, FI, *FI.Inline);
527 << NumDwarfInlineInfos << " DWARF inline frames and GSYM has "
GsymReader.cpp 353 if (FI.Inline)
354 dump(OS, *FI.Inline);
  /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/Transforms/IPO/
LowerTypeTests.cpp 423 /// ByteArray, Inline, AllOnes: log2 of the required global alignment
427 /// ByteArray, Inline, AllOnes: one less than the size of the memory region
437 /// Inline: the bit mask to test the address against.
666 /// lowered to TIL, which must be either an Inline or a ByteArray.
670 if (TIL.TheKind == TypeTestResolution::Inline) {
934 TIL.TheKind == TypeTestResolution::Inline ||
940 if (TIL.TheKind == TypeTestResolution::Inline)
954 if (TIL.TheKind == TypeTestResolution::Inline)
1015 TIL.TheKind == TypeTestResolution::Inline ||
1027 if (TIL.TheKind == TypeTestResolution::Inline)
    [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/
ModuleSummaryIndexYAML.h 23 io.enumCase(value, "Inline", TypeTestResolution::Inline);
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/lib/DebugInfo/CodeView/
EnumTables.cpp 418 CV_ENUM_CLASS_ENT(CallingConvention, Inline),
TypeDumpVisitor.cpp 133 ENUM_ENTRY(CallingConvention, Inline),
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 97 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, Inline , "inlinecall", OS)
  /src/external/lgpl3/gmp/dist/mpn/ia64/
divrem_2.asm 39 C * Inline and interleave limb inversion code with loop setup code.
divrem_1.asm 51 C * Inline and interleave limb inversion code with loop setup code.
  /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) {}
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 460 inline raw_ostream &operator<<(raw_ostream &OS, const NamedDecl &ND) {
520 /// to either the namespace or the inline keyword.
529 /// boolean value indicating whether this is an inline namespace.
532 NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline,
547 bool Inline, SourceLocation StartLoc,
576 /// Returns true if this is an inline namespace declaration.
581 /// Set whether this is an inline namespace declaration.
582 void setInline(bool Inline) {
583 AnonOrFirstNamespaceAndInline.setInt(Inline);
586 /// Returns true if the inline qualifier for \c Name is redundant
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp 2864 NamespaceDecl::NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline,
2869 AnonOrFirstNamespaceAndInline(nullptr, Inline) {
2877 bool Inline, SourceLocation StartLoc,
2880 return new (C, DC) NamespaceDecl(C, DC, Inline, StartLoc, IdLoc, Id,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 112 RETURN_CASE(CallingConvention, Inline, "inline");
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLTypes.cpp 260 IO.enumCase(Value, "Inline", CallingConvention::Inline);
674 static inline Expected<LeafRecord> fromCodeViewRecordImpl(CVType Type) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 158 static inline bool isNSStringType(QualType T, ASTContext &Ctx,
178 static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
4383 if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) {
4384 Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline;
4401 if (AlwaysInlineAttr *Inline =
4403 D->addAttr(Inline);
4468 // Only warn for "inline" when compiling for host, to cut down on noise.
7112 // MinGW doesn't allow dllimport on inline functions.
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 1028 // RData_small is a smaller version of the RData object, used for inline data storage embedded in a CacheRecord_struct
2676 #pragma mark - Inline functions
2682 #define mDNSinline static inline
2685 // If we're not doing inline functions, then this header needs to have the extern declarations
3184 static inline void SwapDNSHeaderBytesWithHeader(DNSMessageHeader *const hdr)
3197 static inline void SwapDNSHeaderBytes(DNSMessage *const msg)
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 835 inline void initializeIfNeeded();
852 inline void CreateModulePathSlot(StringRef Path);
964 inline void SlotTracker::initializeIfNeeded() {
1249 // Don't make slots for DIExpressions or DIArgLists. We just print them inline
2530 // Write DIExpressions and DIArgLists inline when used as a value. Improves
3013 case TypeTestResolution::Inline:
3014 return "inline";
3462 // Write DIExpressions inline.
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 773 // parse DIExpressions inline as a special case. They are still MDNodes,
780 // DIArgLists should only appear inline in a function, as they may
1483 static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
3481 parseToken(lltok::comma, "expected comma in inline asm expression") ||
5585 return error(ID.Loc, "invalid type for inline asm constraint string");
8185 /// ( 'unsat' | 'byteArray' | 'inline' | 'single' | 'allOnes' ) ','
8208 TTRes.TheKind = TypeTestResolution::Inline;

Completed in 90 milliseconds