Home
last modified time | relevance | path

Searched refs:AT (Results 1 – 25 of 210) sorted by relevance

123456789

/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCInstrMMA.td21 RegConstraint<"@earlyclobber $AT">;
41 RegConstraint<"@earlyclobber $AT">;
44 opcode, xo, (outs acc:$AT),
65 RegConstraint<"@earlyclobber $AT">;
68 opcode, xo, (outs acc:$AT),
92 opcode, xo, (outs acc:$AT),
118 opcode, xo, (outs acc:$AT),
214 opcode, xo, (outs acc:$AT),
258 opcode, xo, (outs acc:$AT),
297 XForm_AT3<31, 1, 177, (outs acc:$AT), (ins acc:$ATi), "xxmtacc $AT",
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Ddeduct.pass.cpp43 const auto AT = std::allocator_arg; in test_primary_template() local
85 std::tuple t1(AT, A, 42); in test_primary_template()
88 std::tuple t2(AT, A, 42, 0.0, x); in test_primary_template()
95 std::tuple t1(AT, A, T{}); in test_primary_template()
104 std::tuple t1(AT, A, p1); in test_primary_template()
108 std::tuple t2(AT, A, p2); in test_primary_template()
113 std::tuple t3(AT, A, p3); in test_primary_template()
117 std::tuple t4(AT, A, p4); in test_primary_template()
139 std::tuple t1(AT, A, t); in test_primary_template()
168 std::tuple t1{AT, A}; in test_empty_specialization()
[all …]
/llvm-project-15.0.7/clang/test/CodeCompletion/
H A Dobjc-expr.m7 …tterns -code-completion-at=%s:4:11 %s -fno-const-strings -o - | FileCheck -check-prefix=CHECK-AT %s
8 // CHECK-AT: COMPLETION: Pattern : [#NSString *#]"<#string#>"
9 // CHECK-AT: COMPLETION: Pattern : [#id#](<#expression#>)
10 // CHECK-AT: COMPLETION: Pattern : [#NSArray *#][<#objects, ...#>]
11 // CHECK-AT: COMPLETION: Pattern : [#char[]#]encode(<#type-name#>)
12 // CHECK-AT: COMPLETION: Pattern : [#Protocol *#]protocol(<#protocol-name#>)
13 // CHECK-AT: COMPLETION: Pattern : [#SEL#]selector(<#selector#>)
14 // CHECK-AT: COMPLETION: Pattern : [#NSDictionary *#]{<#key#>: <#object, ...#>}
/llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/
H A DTarget.cpp38 using AT = CodeGenSpecifics::Attributes; typedef
61 marshal.emplace_back(ptrTy, AT{}); in boxcharArgumentType()
92 AT{/*alignment=*/4, /*byval=*/true}); in complexArgumentType()
104 AT{}); in complexReturnType()
139 marshal.emplace_back(eleTy, AT{}); in complexArgumentType()
140 marshal.emplace_back(eleTy, AT{}); in complexArgumentType()
147 AT{/*align=*/16, /*byval=*/true}); in complexArgumentType()
166 AT{}); in complexReturnType()
216 AT{}); in complexReturnType()
239 marshal.emplace_back(eleTy, AT{}); in complexArgumentType()
[all …]
/llvm-project-15.0.7/lld/test/ELF/linkerscript/
H A Dlma-offset.s2 ## Test the difference between the VMA and the LMA for sections with AT().
17 ## .b has AT(). It starts a PT_LOAD segment which also includes .c
20 ## .d has AT(). It starts a PT_LOAD segment, even if the difference between
34 .b : AT(0x2005) { *(.b) }
36 .d : AT(0x2007) { *(.d) }
H A Doverlay-reject2.test6 # CHECK-NEXT: >>> .out.aaa { *(.aaa) } > AX AT>FLASH
14 OVERLAY 0x1000 : AT ( 0x2000 ) {
15 .out.aaa { *(.aaa) } > AX AT>FLASH
H A Dat3.test14 .foo1 : { *(.foo1) } > FOO AT>FLASH
15 .foo2 : { *(.foo2) BYTE(0x42) } > BAR AT>FLASH
16 .foo3 : { *(.foo3) } > ZED AT>FLASH
H A Dat8.test13 .sec1 : { *(.sec1) } > RAM AT > FLASH
14 .sec2 : { *(.sec2) } > RAM AT > FLASH
15 .sec3 : { *(.sec3) } > RAM AT > FLASH
H A Dlma-offset2.s2 ## If neither AT(lma) nor AT>lma_region is specified, don't propagate
H A Dat5.test11 .foo1 : AT(0x500) { *(.foo1) } > FLASH AT>FLASH
/llvm-project-15.0.7/compiler-rt/lib/hwasan/
H A Dhwasan_checks.h83 template <ErrorAction EA, AccessType AT, unsigned LogSize>
91 0x10 * (AT == AccessType::Store) + LogSize>(p); in CheckAddress()
97 template <ErrorAction EA, AccessType AT>
109 0x10 * (AT == AccessType::Store) + 0xf>(p, sz); in CheckAddressSized()
119 0x10 * (AT == AccessType::Store) + 0xf>(p, sz); in CheckAddressSized()
/llvm-project-15.0.7/clang/test/Layout/
H A Dms-x86-alias-avoidance-padding.cpp9 struct AT {}; struct
11 struct V : AT {
19 union { struct { int a; AT t; } y; int b; } x;
118 struct T0 : AT {
132 struct T2 : AT {
H A Dms-x86-vtordisp.cpp137 struct AT { struct
138 virtual ~AT(){} in ~AT() argument
140 struct CT : virtual AT {
/llvm-project-15.0.7/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
H A Dallocate.constexpr.size.verify.cpp25 typedef std::allocator_traits<A> AT; in test() typedef
27 TEST_IGNORE_NODISCARD a.allocate(AT::max_size(a) + 1); // just barely too large in test()
28 TEST_IGNORE_NODISCARD a.allocate(AT::max_size(a) * 2); // significantly too large in test()
H A Dallocate.size.pass.cpp36 typedef std::allocator_traits<A> AT; in test() typedef
38 test_max<T> (AT::max_size(a) + 1); // just barely too large in test()
39 test_max<T> (AT::max_size(a) * 2); // significantly too large in test()
/llvm-project-15.0.7/llvm/test/tools/llvm-tli-checker/
H A Derror-cases.test6 …checker %t0.txt 2>&1 | FileCheck %s -DFILE=%t0.txt --check-prefixes=FILE-NOT-FOUND,NOSYMBOLS-AT-ALL
10 # RUN: llvm-tli-checker %t1.o 2>&1 | FileCheck %s --check-prefixes=INVALID-FILE,NOSYMBOLS-AT-ALL
14 …-checker %t2.o 2>&1 | FileCheck %s -DFILE=%t2.o --check-prefixes=NOSYMBOLS-IN-FILE,NOSYMBOLS-AT-ALL
19 # NOSYMBOLS-AT-ALL-DAG: error: NO symbols found!
/llvm-project-15.0.7/lld/test/ELF/
H A Darm-adr-err-long.s8 .text.0 0x0100000 : AT(0x0100000) { *(.text.0) }
9 .text.1 0x0800000 : AT(0x0800000) { *(.text.1) }
10 .text.2 0xf0f0000 : AT(0xf0f0000) { *(.text.2) }
H A Darm-adr-long.s12 .text.0 0x0100000 : AT(0x0100000) { *(.text.0) }
13 .text.1 0x0800000 : AT(0x0800000) { *(.text.1) }
14 .text.2 0xf0f0000 : AT(0xf0f0000) { *(.text.2) }
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.h51 auto &AT = static_cast<const AMDGPUTargetMachine &>(TM); in lowerAddrSpaceCast() local
60 if (Op->isNullValue() && AT.getNullPointerValue(SrcAddr) == 0) { in lowerAddrSpaceCast()
62 return MCConstantExpr::create(AT.getNullPointerValue(DstAddr), in lowerAddrSpaceCast()
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dprogram-header-nobits.yaml44 # RUN: llvm-readelf --sections --segments %t3 | FileCheck %s --check-prefix=FILL-AT-END
46 # FILL-AT-END: [Nr] Name Type Address Off Size
47 # FILL-AT-END: [ 4] .nobits.2 NOBITS 0000000000000006 0000b4 000004
49 # FILL-AT-END: [ 5] .data.last PROGBITS 000000000000000f 0000bd 000006
51 # FILL-AT-END: Type Offset VirtAddr PhysAddr FileSiz MemSiz
52 # FILL-AT-END-NEXT: LOAD 0x0000b0 0x0000000000000000 0x0000000000000000 0x000001 0x000003
53 # FILL-AT-END-NEXT: LOAD 0x0000b4 0x0000000000000000 0x0000000000000000 0x000009 0x000009
/llvm-project-15.0.7/lld/docs/ELF/
H A Dlinker_script.rst82 section [address] [(type)] : [AT(lma)] [ALIGN(section_align)] [SUBALIGN](subsection_align)] {
85 } [>region] [AT>lma_region] [:phdr ...] [=fillexp] [,]
128 A load address (LMA) can be specified by ``AT(lma)`` or ``AT>lma_region``.
130 - ``AT(lma)`` specifies the exact load address. If the linker script does not
132 - ``AT>lma_region`` specifies the LMA region. The lack of ``AT>lma_region``
142 If neither ``AT(lma)`` nor ``AT>lma_region`` is specified:
/llvm-project-15.0.7/llvm/unittests/Linker/
H A DLinkModulesTest.cpp40 AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3); in SetUp()
42 GV = new GlobalVariable(*M.get(), AT, false /*=isConstant*/, in SetUp()
58 GV->setInitializer(ConstantArray::get(AT, Init)); in SetUp()
66 ArrayType *AT; member in __anon596f68b70111::LinkModuleTest
85 Value *GEP = Builder.CreateGEP(AT, GV, GEPIndices, "switch.gep"); in TEST_F()
86 Value *Load = Builder.CreateLoad(AT->getElementType(), GEP, "switch.load"); in TEST_F()
112 ArrayType *AT = ArrayType::get(Type::getInt8PtrTy(Ctx), 3); in TEST_F() local
113 EXPECT_EQ(AT, Init->getType()); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DFixItHintUtils.cpp213 const Type *AT = ParenStrippedType->getBaseElementTypeUnsafe(); in addQualifierToVarDecl() local
214 assert(AT && "Did not retrieve array element type for an array."); in addQualifierToVarDecl()
216 if (isValueType(AT)) in addQualifierToVarDecl()
219 if (AT->isPointerType()) in addQualifierToVarDecl()
220 return changePointer(Var, Qualifier, AT->getPointeeType().getTypePtr(), in addQualifierToVarDecl()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGNonTrivialStruct.cpp96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) { in visitWithKind() local
97 asDerived().visitArray(PCK, AT, FT.isVolatileQualified(), FD, in visitWithKind()
183 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile, in visitArray()
193 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); in visitArray()
279 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
296 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
397 QualType EltQT = AT->getElementType(); in visitArray()
589 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
629 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
658 CharUnits Size = Ctx.getTypeSizeInChars(QualType(AT, 0)); in visitArray()
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp119 } else if (const auto *AT = dyn_cast<AttributedType>(T)) { in isGlobalConstString() local
120 if (AT->getAttrKind() == attr::TypeNonNull) in isGlobalConstString()
122 Ty = AT->getModifiedType(); in isGlobalConstString()

123456789