Home
last modified time | relevance | path

Searched refs:Inline (Results 1 – 25 of 127) sorted by relevance

123456

/llvm-project-15.0.7/llvm/lib/DebugInfo/GSYM/
H A DInlineInfo.cpp111 InlineInfo Inline; in lookup() local
113 if (Inline.Ranges.empty()) in lookup()
117 if (!Inline.Ranges.contains(Addr)) { in lookup()
125 Inline.Name = Data.getU32(&Offset); in lookup()
141 Inline.CallFile); in lookup()
151 SrcLoc.Line = Inline.CallLine; in lookup()
181 InlineInfo Inline; in decode() local
186 if (Inline.Ranges.empty()) in decode()
187 return Inline; in decode()
196 Inline.Name = Data.getU32(&Offset); in decode()
[all …]
H A DFunctionInfo.cpp31 if (FI.Inline) in operator <<()
32 OS << FI.Inline << '\n'; in operator <<()
83 FI.Inline = std::move(II.get()); in decode()
129 if (Inline) { in encode()
135 llvm::Error err = Inline->encode(O, Range.start()); in encode()
H A DDwarfTransformer.cpp413 FI.Inline = InlineInfo(); in handleDie()
414 FI.Inline->Name = *NameIndex; in handleDie()
415 FI.Inline->Ranges.insert(FI.Range); in handleDie()
416 parseInlineInfo(Gsym, CUI, Die, 0, FI, *FI.Inline); in handleDie()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/GSYM/
H A DFunctionInfo.h93 llvm::Optional<InlineInfo> Inline; member
105 bool hasRichInfo() const { return OptLineTable || Inline; } in hasRichInfo()
179 Inline = None; in clear()
185 LHS.OptLineTable == RHS.OptLineTable && LHS.Inline == RHS.Inline;
201 if (LHS.Inline.has_value() != RHS.Inline.has_value())
202 return RHS.Inline.has_value();
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-captured-block-var-inlined-layout.m20 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
25 // CHECK: Inline block variable layout: 0x0210, BL_STRONG:2, BL_BYREF:1, BL_OPERATOR:0
32 // CHECK: Inline block variable layout: 0x0230, BL_STRONG:2, BL_BYREF:3, BL_OPERATOR:0
41 // CHECK: Inline block variable layout: 0x0231, BL_STRONG:2, BL_BYREF:3, BL_WEAK:1, BL_OPERATOR:0
52 // CHECK: Inline block variable layout: 0x0235, BL_STRONG:2, BL_BYREF:3, BL_WEAK:5, BL_OPERATOR:0
67 // CHECK: Inline block variable layout: 0x035, BL_BYREF:3, BL_WEAK:5, BL_OPERATOR:0
79 // CHECK: Inline block variable layout: 0x01, BL_WEAK:1, BL_OPERATOR:0
84 // CHECK: Inline block variable layout: 0x020, BL_BYREF:2, BL_OPERATOR:0
90 // CHECK: Inline block variable layout: 0x0102, BL_STRONG:1, BL_WEAK:2, BL_OPERATOR:0
108 // CHECK: Inline block variable layout: 0x0201, BL_STRONG:2, BL_WEAK:1, BL_OPERATOR:0
H A Dmrr-captured-block-var-inlined-layout.m23 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
29 // CHECK: Inline block variable layout: 0x0210, BL_STRONG:2, BL_BYREF:1, BL_OPERATOR:0
37 // CHECK: Inline block variable layout: 0x0230, BL_STRONG:2, BL_BYREF:3, BL_OPERATOR:0
47 // CHECK: Inline block variable layout: 0x0230, BL_STRONG:2, BL_BYREF:3, BL_OPERATOR:0
57 // CHECK: Inline block variable layout: 0x020, BL_BYREF:2, BL_OPERATOR:0
H A Dblock-byref-variable-layout.m23 // Inline flag for BYREF variable layout (1107296256): BLOCK_BYREF_HAS_COPY_DISPOSE BLOCK_BYREF_LAY…
27 // Inline flag for BYREF variable layout (536870912): BLOCK_BYREF_LAYOUT_NON_OBJECT
31 // Inline flag for BYREF variable layout (838860800): BLOCK_BYREF_HAS_COPY_DISPOSE BLOCK_BYREF_LAYO…
35 // Inline flag for BYREF variable layout (268435456): BLOCK_BYREF_LAYOUT_EXTENDED
H A Darc-captured-32bit-block-var-layout-2.m14 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
19 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
24 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
29 // CHECK: Inline block variable layout: 0x0100, BL_STRONG:1, BL_OPERATOR:0
H A Darc-captured-block-var-layout.m36 // Inline instruction for block variable layout: 0x0320 (3 strong 2 byref)
37 // CHECK-LP64: Inline block variable layout: 0x0320, BL_STRONG:3, BL_BYREF:2, BL_OPERATOR:0
48 // Inline instruction for block variable layout: 0x0331 (3 strong 3 byref 1 weak)
49 // CHECK-LP64: Inline block variable layout: 0x0331, BL_STRONG:3, BL_BYREF:3, BL_WEAK:1, BL_OPERATO…
70 // Inline instruction for block variable layout: 0x0401 (4 strong 0 byref 1 weak)
71 // CHECK-LP64: Inline block variable layout: 0x0401, BL_STRONG:4, BL_WEAK:1, BL_OPERATOR:0
/llvm-project-15.0.7/llvm/test/tools/llvm-profdata/
H A Dmemprof-inline.test105 CHECK-NEXT: Inline: 1
111 CHECK-NEXT: Inline: 0
117 CHECK-NEXT: Inline: 0
123 CHECK-NEXT: Inline: 0
154 CHECK-NEXT: Inline: 1
160 CHECK-NEXT: Inline: 0
166 CHECK-NEXT: Inline: 0
172 CHECK-NEXT: Inline: 0
200 CHECK-NEXT: Inline: 1
207 CHECK-NEXT: Inline: 0
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DMemoryOpRemark.cpp126 static void inlineVolatileOrAtomicWithExtraArgs(bool *Inline, bool Volatile, in inlineVolatileOrAtomicWithExtraArgs() argument
129 if (Inline && *Inline) in inlineVolatileOrAtomicWithExtraArgs()
137 if ((Inline && !*Inline) || !Volatile || !Atomic) in inlineVolatileOrAtomicWithExtraArgs()
139 if (Inline && !*Inline) in inlineVolatileOrAtomicWithExtraArgs()
188 bool Inline = false; in visitIntrinsicCall() local
192 Inline = true; in visitIntrinsicCall()
239 inlineVolatileOrAtomicWithExtraArgs(&Inline, Volatile, Atomic, *R); in visitIntrinsicCall()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DNSArray.cpp210 template <typename D32, typename D64, bool Inline>
605 template <typename D32, typename D64, bool Inline>
606 lldb_private::formatters::GenericNSArrayISyntheticFrontEnd<D32, D64, Inline>::
622 template <typename D32, typename D64, bool Inline>
624 ~GenericNSArrayISyntheticFrontEnd<D32, D64, Inline>() { in ~GenericNSArrayISyntheticFrontEnd()
631 template <typename D32, typename D64, bool Inline>
642 template <typename D32, typename D64, bool Inline>
649 template <typename D32, typename D64, bool Inline>
683 template <typename D32, typename D64, bool Inline>
690 template <typename D32, typename D64, bool Inline>
[all …]
/llvm-project-15.0.7/llvm/test/MC/ARM/
H A Deh-directive-unwind_raw.s62 @ CHECK: Model: Compact (Inline)
70 @ CHECK: Model: Compact (Inline)
91 @ CHECK: Model: Compact (Inline)
99 @ CHECK: Model: Compact (Inline)
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/Inputs/
H A Dimport.yaml31 Kind: Inline
38 Kind: Inline
/llvm-project-15.0.7/llvm/unittests/DebugInfo/GSYM/
H A DGSYMTest.cpp144 FIWithLinesAndInline.Inline = InlineInfo(); in TEST()
145 FIWithLinesAndInline.Inline->Ranges.insert( in TEST()
238 InvalidInlineInfoFI.Inline = InlineInfo(); in TEST()
276 FI.Inline = InlineInfo(); in AddInline()
283 FI.Inline->Children.push_back(Inline1); in AddInline()
336 EXPECT_EQ(Inline, Decoded.get()); in TestInlineInfoEncodeDecode()
358 Inline.Ranges.empty() ? 0 : Inline.Ranges[0].start(); in TestInlineInfoEncodeError()
1200 FI.Inline = InlineInfo(); in TEST()
1203 FI.Inline->CallFile = MainFileIndex; in TEST()
1204 FI.Inline->CallLine = 6; in TEST()
[all …]
/llvm-project-15.0.7/mlir/test/Target/SPIRV/
H A Dmodule.mlir4 // CHECK-NEXT: spv.func @foo() "Inline" {
10 spv.func @foo() -> () "Inline" {
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/ARM/
H A Dunwind-non-relocatable.test18 # UNWIND-NEXT: Model: Compact (Inline)
29 # UNWIND-NEXT: Model: Compact (Inline)
39 # UNWIND-NEXT: Model: Compact (Inline)
54 # UNWIND-NEXT: Model: Compact (Inline)
/llvm-project-15.0.7/llvm/test/CodeGen/SPIRV/function/
H A Dtrivial-function-with-attributes.ll42 ; CHECK: [[FN3]] = OpFunction [[VOID]] Inline [[FN]]
71 ; CHECK: [[FN7]] = OpFunction [[VOID]] Inline|Pure [[FN]]
/llvm-project-15.0.7/mlir/include/mlir/TableGen/
H A DClass.h295 Inline = 0x10, enumerator
299 Constexpr = ConstexprValue | Inline,
301 StaticInline = Static | Inline,
302 ConstInline = Const | Inline,
336 bool isInline() const { return properties & Inline; } in isInline()
634 return addMethod<Properties | Method::Inline>( in addInlineMethod()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp26 Inline, enumerator
46 .Case("INLINE", Token::Inline) in stringTo()
152 case Token::Inline: in classify()
153 return Record::Inline; in classify()
330 if (consume<Token>(Line) != Token::Inline) in parse()
570 case Record::Inline: in toString()
/llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/
H A Dexport-inline.ll31 ; SUMMARY-NEXT: Kind: Inline
44 ; SUMMARY-NEXT: Kind: Inline
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/hicpp/
H A Dno-assembler.rst8 Inline assembler is forbidden by the `High Integrity C++ Coding Standard
/llvm-project-15.0.7/clang/test/ASTMerge/namespace/Inputs/
H A Dnamespace2.cpp26 inline namespace Inline { namespace
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticCategories.td9 class CatInlineAsm : DiagCategory<"Inline Assembly Issue">;
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dconcat-nested-namespaces.rst8 Inline namespaces are not modified.

123456