Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 6031) sorted by relevance

12345678910>>...242

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSmallVector.h383 this->destroy_range(this->begin(), this->end()); in growAndAssign()
432 this->uninitialized_move(this->begin(), this->end(), NewElts); in moveElementsForGrow()
572 this->destroy_range(this->begin(), this->end()); in assignRemote()
592 this->destroy_range(this->begin(), this->end()); in clear()
627 this->destroy_range(this->begin() + N, this->end()); in truncate()
700 this->destroy_range(this->begin() + NumElts, this->end()); in assign()
982 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
997 if (this == &RHS) return *this;
1044 if (this == &RHS) return *this;
1192 this->destroy_range(this->begin(), this->end()); in ~SmallVector()
[all …]
H A DAPSInt.h67 return *this;
73 return *this;
118 return *this;
126 return *this;
145 return *this;
199 return *this;
204 return *this;
208 return *this;
222 return *this;
227 return *this;
[all …]
H A DSmallString.h37 this->append(Refs); in SmallString()
57 this->clear(); in assign()
260 StringRef str() const { return StringRef(this->data(), this->size()); } in str()
264 this->push_back(0); in c_str()
265 this->pop_back(); in c_str()
273 return std::string(this->data(), this->size()); in string()
278 this->assign(RHS);
279 return *this;
284 return *this;
287 this->push_back(C);
[all …]
/llvm-project-15.0.7/libc/src/__support/
H A Dhigh_precision_decimal.h126 if (this->truncated) { in should_round_up()
165 while (this->num_digits > 0 && this->digits[this->num_digits - 1] == 0) { in trim_trailing_zeroes()
166 --this->num_digits; in trim_trailing_zeroes()
168 if (this->num_digits == 0) { in trim_trailing_zeroes()
169 this->decimal_point = 0; in trim_trailing_zeroes()
222 this->truncated = true; in right_shift()
255 this->truncated = true; in left_shift()
270 this->truncated = true; in left_shift()
306 this->digits[this->num_digits] = in HighPrecisionDecimal()
308 ++this->num_digits; in HighPrecisionDecimal()
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTVector.h192 this->grow(C, this->size()+NumInputs); in append()
198 this->setEnd(this->end() + NumInputs); in append()
205 this->grow(C, this->size()+NumInputs); in append()
209 this->setEnd(this->end() + NumInputs); in append()
225 if (this->End < this->capacity_ptr()) { in insert()
227 new (this->end()) T(this->back()); in insert()
228 this->setEnd(this->end()+1); in insert()
276 this->setEnd(this->end() + NumToInsert); in insert()
343 this->destroy_range(this->begin()+N, this->end()); in resize()
344 this->setEnd(this->begin()+N); in resize()
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/DeadArgElim/
H A Dreturned.ll9 ret %Ty* %this
16 ret %Ty* %this
19 ; dummy to keep 'this' alive
27 ret %Ty* %this
35 ret %Ty* %this
43 ret %Ty* %this
52 define %Ty* @caller(%Ty* %this) {
53 %1 = call %Ty* @test1(%Ty* %this)
54 %2 = call %Ty* @test2(%Ty* %this)
55 %3 = call %Ty* @test3(%Ty* %this)
[all …]
/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DOSTargets.h182 if (this->HasFloat128) in getOSDefines()
297 if (this->HasFloat128) in getOSDefines()
395 if (this->HasFloat128) in getOSDefines()
473 this->WCharType = this->WIntType = this->SignedInt; in OpenBSDTargetInfo()
535 this->LongWidth = this->LongAlign = 32; in PS3PPUTargetInfo()
536 this->PointerWidth = this->PointerAlign = 32; in PS3PPUTargetInfo()
572 this->NewAlign = 256; in PSOSTargetInfo()
689 this->WCharType = this->WIntType = this->SignedInt; in SolarisTargetInfo()
691 this->WCharType = this->WIntType = this->SignedLong; in SolarisTargetInfo()
778 this->WCharType = this->UnsignedInt; in AIXTargetInfo()
[all …]
H A DPNaCl.h29 this->LongAlign = 32; in PNaClTargetInfo()
30 this->LongWidth = 32; in PNaClTargetInfo()
31 this->PointerAlign = 32; in PNaClTargetInfo()
32 this->PointerWidth = 32; in PNaClTargetInfo()
35 this->DoubleAlign = 64; in PNaClTargetInfo()
36 this->LongDoubleWidth = 64; in PNaClTargetInfo()
37 this->LongDoubleAlign = 64; in PNaClTargetInfo()
38 this->SizeType = TargetInfo::UnsignedInt; in PNaClTargetInfo()
39 this->PtrDiffType = TargetInfo::SignedInt; in PNaClTargetInfo()
40 this->IntPtrType = TargetInfo::SignedInt; in PNaClTargetInfo()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DInstructionCost.h108 return *this;
114 return *this;
125 return *this;
131 return *this;
147 return *this;
153 return *this;
169 *this += 1;
175 ++*this;
180 *this -= 1;
186 --*this;
[all …]
H A DPGOOptions.h40 assert(this->CSAction == NoCSAction || in ProfileFile()
41 (this->Action != IRInstr && this->Action != SampleUse)); in ProfileFile()
44 assert(this->CSAction != CSIRInstr || !this->CSProfileGenFile.empty()); in ProfileFile()
48 assert(this->CSAction != CSIRUse || this->Action == IRUse); in ProfileFile()
52 assert(this->Action != NoAction || this->CSAction != NoCSAction || in ProfileFile()
53 this->DebugInfoForProfiling || this->PseudoProbeForProfiling); in ProfileFile()
/llvm-project-15.0.7/flang/include/flang/Common/
H A Duint128.h68 *this += 1;
208 *this = *this & that;
212 *this = *this | that;
216 *this = *this ^ that;
220 *this = *this << that;
224 *this = *this >> that;
228 *this = *this + that;
232 *this = *this - that;
236 *this = *this * that;
240 *this = *this / that;
[all …]
/llvm-project-15.0.7/bolt/include/bolt/Passes/
H A DReachingDefOrUse.h49 this->BC.MIB->getTouchedRegs(**I, BV); in isReachedBy()
57 return (*this->getStateAt(B))[this->ExprToIdx[&A]]; in doesAReachesB()
73 for (BinaryBasicBlock &BB : this->Func) { in preflight()
75 this->Expressions.push_back(&Inst); in preflight()
76 this->ExprToIdx[&Inst] = this->NumInstrs++; in preflight()
82 return BitVector(this->NumInstrs, false); in getStartingStateAtBB()
86 return BitVector(this->NumInstrs, false); in getStartingStateAtPoint()
120 for (auto I = this->expr_begin(Next), E = this->expr_end(); I != E; ++I) { in computeNext()
127 if (!this->BC.MIB->isCFI(Point)) { in computeNext()
130 Next.set(this->ExprToIdx[&Point]); in computeNext()
[all …]
H A DDominatorAnalysis.h43 uint64_t DomIdx = this->ExprToIdx[&Dom]; in getDominanceFrontierFor()
45 for (BinaryBasicBlock &BB : this->Func) { in getDominanceFrontierFor()
50 if ((*this->getStateAt(P))[DomIdx]) { in getDominanceFrontierFor()
67 return this->count(BIdx, A); in doesADominateB()
71 return this->count(B, A); in doesADominateB()
75 return this->count(B, A); in doesADominateB()
98 for (auto I = this->expr_begin(Inst), E = this->expr_end(); I != E; ++I) in doForAllDominators()
112 this->Expressions.push_back(&Inst); in preflight()
113 this->ExprToIdx[&Inst] = this->NumInstrs++; in preflight()
139 if (!this->BC.MIB->isCFI(Point)) in computeNext()
[all …]
/llvm-project-15.0.7/libcxx/test/support/type_classification/
H A Dswappable.h25 this_(this) {} in lvalue_adl_swappable()
29 this_(this) {} in lvalue_adl_swappable()
34 return *this;
60 this_(this) {} in lvalue_rvalue_adl_swappable()
65 this_(this) {} in lvalue_rvalue_adl_swappable()
70 return *this;
97 this_(this) {} in rvalue_lvalue_adl_swappable()
107 return *this;
142 return *this;
179 return *this;
[all …]
/llvm-project-15.0.7/libcxx/include/
H A Dostream228 { __pf(*this); return *this; }
232 { __pf(*this); return *this; }
417 if (__f.put(*this, *this, this->fill(), __n).failed())
444 if (__f.put(*this, *this, this->fill(),
500 if (__f.put(*this, *this, this->fill(),
555 if (__f.put(*this, *this, this->fill(), __n).failed())
581 if (__f.put(*this, *this, this->fill(), __n).failed())
607 if (__f.put(*this, *this, this->fill(), __n).failed())
633 if (__f.put(*this, *this, this->fill(), __n).failed())
685 if (__f.put(*this, *this, this->fill(), __n).failed())
[all …]
H A Dvector965 this->__begin_ = this->__end_ = this->__end_cap() = nullptr;
1454 return iterator(this, this->__begin_);
1472 return iterator(this, this->__end_);
1582 if (this->__end_ != this->__end_cap())
1596 if (this->__end_ < this->__end_cap())
1629 if (this->__end_ < this->__end_cap())
1752 if (this->__end_ < this->__end_cap())
1783 if (this->__end_ < this->__end_cap())
2004 if (this->__begin_ > this->__end_)
2483 this->__size_ = this->__cap() = 0;
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dthis-return-64.ll15 define ptr @C_ctor(ptr %this, i32 %y) {
19 %call = tail call ptr @B_ctor(ptr %this, i32 %y)
20 ret ptr %this
23 define ptr @C_ctor_nothisret(ptr %this, i32 %y) {
28 ret ptr %this
31 define ptr @D_ctor(ptr %this, i32 %y) {
38 %call = tail call ptr @A_ctor(ptr %this)
44 define ptr @D_ctor_nothisret(ptr %this, i32 %y) {
57 define ptr @E_ctor(ptr %this, i32 %x) {
66 ret ptr %this
[all …]
H A Dmusttail-indirect.ll33 %vtable = load ptr, ptr %this
46 %vtable = load ptr, ptr %this
60 %vtable = load ptr, ptr %this
73 %vtable = load ptr, ptr %this
86 %vtable = load ptr, ptr %this
99 %vtable = load ptr, ptr %this
112 %vtable = load ptr, ptr %this
124 %vtable = load ptr, ptr %this
139 %vtable = load ptr, ptr %this
154 %vtable = load ptr, ptr %this
[all …]
/llvm-project-15.0.7/flang/test/Semantics/
H A Dseparate-mp01.f907 module function ma_create_fun( ) result(this)
8 integer this
16 module function ma_create_fun() result(this)
17 integer this local
24 integer :: this local
44 integer this local
51 integer :: this local
60 function mc_create( ) result(this)
61 integer :: this local
69 module function mc_create() result(this)
[all …]
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DAffineExprVisitor.h82 return static_cast<SubClass *>(this)->visitAddExpr(binOpExpr); in walkPostOrder()
87 return static_cast<SubClass *>(this)->visitMulExpr(binOpExpr); in walkPostOrder()
92 return static_cast<SubClass *>(this)->visitModExpr(binOpExpr); in walkPostOrder()
105 return static_cast<SubClass *>(this)->visitConstantExpr( in walkPostOrder()
108 return static_cast<SubClass *>(this)->visitDimExpr( in walkPostOrder()
111 return static_cast<SubClass *>(this)->visitSymbolExpr( in walkPostOrder()
123 return static_cast<SubClass *>(this)->visitAddExpr(binOpExpr); in visit()
127 return static_cast<SubClass *>(this)->visitMulExpr(binOpExpr); in visit()
142 return static_cast<SubClass *>(this)->visitConstantExpr( in visit()
145 return static_cast<SubClass *>(this)->visitDimExpr( in visit()
[all …]
/llvm-project-15.0.7/compiler-rt/test/tsan/
H A Dcustom_mutex.h14 __tsan_mutex_create(this, create_flags); in prof_()
18 __tsan_mutex_destroy(this, destroy_flags_); in ~Mutex()
22 __tsan_mutex_pre_lock(this, 0); in Lock()
24 __tsan_mutex_post_lock(this, 0, 0); in Lock()
28 __tsan_mutex_pre_lock(this, __tsan_mutex_try_lock); in TryLock()
36 __tsan_mutex_pre_unlock(this, 0); in Unlock()
38 __tsan_mutex_post_unlock(this, 0); in Unlock()
50 __tsan_mutex_pre_signal(this, 0); in Broadcast()
54 __tsan_mutex_post_signal(this, 0); in Broadcast()
84 __tsan_mutex_pre_divert(this, 0); in Prof()
[all …]
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Darc-non-pod-memaccess.m25 // expected-note{{explicitly cast the pointer to silence this warning}}
27 // expected-note{{explicitly cast the pointer to silence this warning}}
29 // expected-note{{explicitly cast the pointer to silence this warning}}
33 // expected-note{{explicitly cast the pointer to silence this warning}}
35 // expected-note{{explicitly cast the pointer to silence this warning}}
37 // expected-note{{explicitly cast the pointer to silence this warning}}
41 // expected-note{{explicitly cast the pointer to silence this warning}}
43 // expected-note{{explicitly cast the pointer to silence this warning}}
45 // expected-note{{explicitly cast the pointer to silence this warning}}
49 // expected-note{{explicitly cast the pointer to silence this warning}}
[all …]
/llvm-project-15.0.7/llvm/test/FileCheck/
H A Dcheck-count.txt5 this is something else
10 CHECK-ERR1-COUNT-xx: this
35 this is duplicate
36 this is duplicate
37 this is not duplicate
38 this is duplicate
39 this is duplicate
40 this is duplicate
43 CHECK-CNT1-COUNT-1: this is duplicate
44 CHECK-CNT1: this is duplicate
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/PhaseOrdering/
H A Dgdce.ll36 %this.addr = alloca %class.Base*, align 8
37 store %class.Base* %this, %class.Base** %this.addr, align 8
38 %this1 = load %class.Base*, %class.Base** %this.addr
45 %this.addr = alloca %class.Base*, align 8
46 store %class.Base* %this, %class.Base** %this.addr, align 8
54 %this.addr = alloca %class.Base*, align 8
55 store %class.Base* %this, %class.Base** %this.addr, align 8
62 %this.addr = alloca %class.Base*, align 8
63 store %class.Base* %this, %class.Base** %this.addr, align 8
72 %this.addr = alloca %class.Base*, align 8
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SparseTensor/Pipelines/
H A DPasses.h34 *this, "parallelization-strategy",
40 *this, "vl", desc("Set the vector length"), init(1)};
42 *this, "enable-simd-index32",
45 *this, "enable-vla-vectorization",
48 *this, "test-bufferization-analysis-only",
61 *this, "s2s-strategy",
73 *this, "reassociate-fp-reductions",
77 *this, "enable-index-optimizations",
82 *this, "enable-amx",
89 PassOptions::Option<bool> armSVE{*this, "enable-arm-sve",
[all …]

12345678910>>...242