Home
last modified time | relevance | path

Searched refs:ThisAddr (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp148 /// Update to match the state of the instruction between ThisAddr and
149 /// NextAddr. In the common case, any live range active at ThisAddr is
153 void LiveVariablePrinter::update(object::SectionedAddress ThisAddr, in update() argument
164 ActiveCols[ColIdx].LiveIn = LV.liveAtAddress(ThisAddr); in update()
166 LLVM_DEBUG(dbgs() << "pass 1, " << ThisAddr.Address << "-" in update()
183 bool LiveIn = LV.liveAtAddress(ThisAddr); in update()
189 LLVM_DEBUG(dbgs() << "pass 2, " << ThisAddr.Address << "-" in update()
H A DSourcePrinter.h96 void update(object::SectionedAddress ThisAddr,
H A Dllvm-objdump.cpp1560 const uint64_t ThisAddr = SectionAddr + Index; in addSymbolizer() local
1561 DisAsm->getInstruction(Inst, Size, ThisBytes, ThisAddr, nulls()); in addSymbolizer()
2293 uint64_t ThisAddr = SectionAddr + Index; in disassembleObject() local
2295 Inst, Size, ThisBytes, ThisAddr, CommentStream); in disassembleObject()
2299 DT->DisAsm->suggestBytesToSkip(ThisBytes, ThisAddr)); in disassembleObject()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp235 llvm::Value *emitExactDynamicCast(CodeGenFunction &CGF, Address ThisAddr,
628 CodeGenFunction &CGF, const Expr *E, Address ThisAddr, in EmitLoadOfMemberFunctionPointer() argument
654 llvm::Value *This = ThisAddr.emitRawPointer(CGF); in EmitLoadOfMemberFunctionPointer()
679 CGF.CGM.getDynamicOffsetAlignment(ThisAddr.getAlignment(), RD, in EmitLoadOfMemberFunctionPointer()
682 Address(This, ThisAddr.getElementType(), VTablePtrAlign), VTableTy, RD); in EmitLoadOfMemberFunctionPointer()
1619 CodeGenFunction &CGF, Address ThisAddr, QualType SrcRecordTy, in emitDynamicCastCall() argument
1637 llvm::Value *Value = ThisAddr.emitRawPointer(CGF); in emitDynamicCastCall()
1645 CGF.GetVTablePtr(ThisAddr, CGM.Int8PtrTy, SrcDecl, in emitDynamicCastCall()
1671 CodeGenFunction &CGF, Address ThisAddr, QualType SrcRecordTy, in emitExactDynamicCast() argument
1715 ThisAddr = Address(emitDynamicCastToVoid(CGF, ThisAddr, SrcRecordTy), in emitExactDynamicCast()
[all …]
H A DCGExprCXX.cpp2233 llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr, in EmitDynamicCast() argument
2262 EmitTypeCheck(TCK_DynamicOperation, DCE->getExprLoc(), ThisAddr, SrcRecordTy); in EmitDynamicCast()
2297 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr); in EmitDynamicCast()
2304 Value = CGM.getCXXABI().emitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy); in EmitDynamicCast()
2309 *this, ThisAddr, SrcRecordTy, DestTy, DestRecordTy, CastEnd, CastNull); in EmitDynamicCast()
2313 Value = CGM.getCXXABI().emitDynamicCastCall(*this, ThisAddr, SrcRecordTy, in EmitDynamicCast()
H A DCGVTables.cpp429 Address ThisAddr = GetAddrOfLocalVar(CXXABIThisDecl); in EmitMustTailThunk() local
430 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk()
433 Builder.CreateStore(AdjustedThisPtr, ThisAddr); in EmitMustTailThunk()