Searched refs:Base (Results 201 - 225 of 454) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp519 Overlap.Base.ValueCounts[ValueKind],
522 I->Count, J->Count, FuncLevelOverlap.Base.ValueCounts[ValueKind],
559 accumulateCounts(FuncLevelOverlap.Base);
587 Overlap.Base.CountSum, Overlap.Test.CountSum);
597 FuncLevelOverlap.Base.CountSum,
1184 auto Ret = getProfileSum(BaseFilename, Base);
1245 OS << " Edge profile base count sum: " << format("%.0f", Base.CountSum)
1251 if (Base.ValueCounts[I] < 1.0f && Test.ValueCounts[I] < 1.0f)
1276 << " profile base count sum: " << format("%.0f", Base.ValueCounts[I])
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp116 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n';
215 bool selectAddr(SDNode *Parent, SDValue N, SDValue &Base,
219 SDValue ScaleOp, SDValue &Base, SDValue &Scale,
222 bool selectLEAAddr(SDValue N, SDValue &Base,
225 bool selectLEA64_32Addr(SDValue N, SDValue &Base,
228 bool selectTLSADDRAddr(SDValue N, SDValue &Base,
234 SDValue &Base, SDValue &Scale,
240 SDValue &Base, SDValue &Scale,
243 return tryFoldLoad(P, P, N, Base, Scale, Index, Disp, Segment);
247 SDValue &Base, SDValu
239 tryFoldLoad(SDNode *P, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
260 getAddressOperands(X86ISelAddressMode &AM, const SDLoc &DL, MVT VT, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2397 selectVectorAddr(MemSDNode *Parent, SDValue BasePtr, SDValue IndexOp, SDValue ScaleOp, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2432 selectAddr(SDNode *Parent, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2493 selectLEA64_32Addr(SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2530 selectLEAAddr(SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2620 selectTLSADDRAddr(SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2678 tryFoldLoad(SDNode *Root, SDNode *P, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
2692 tryFoldBroadcast(SDNode *Root, SDNode *P, SDValue N, SDValue &Base, SDValue &Scale, SDValue &Index, SDValue &Disp, SDValue &Segment) argument
3079 SDValue Base, Scale, Index, Disp, Segment; local
4449 SDValue Base = Node->getOperand(3); local
5489 SDValue Base, Scale, Index, Disp, Segment; local
5562 SDValue Base, Scale, Index, Disp, Segment; local
[all...]
H A DX86ShuffleDecodeConstantPool.cpp145 unsigned Base = i & ~0xf; local
148 int Index = Base + (Element & 0xf);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h202 /// This function computes the integer multiple of Base that equals V. If
207 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
279 Value *Base = local
283 return Base;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DVTableBuilder.h279 AddressPointLocation getAddressPoint(BaseSubobject Base) const {
280 assert(AddressPoints.count(Base) && "Did not find address point!");
281 return AddressPoints.find(Base)->second;
423 /// Base must be a virtual base class or an unambiguous base.
H A DCXXInheritance.h48 const CXXBaseSpecifier *Base; member in struct:clang::CXXBasePathElement
54 /// \c Base->getType()) this base path element refers to.
56 /// This value is only valid if \c !Base->isVirtual(), because there
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp169 auto Base = JSONCompilationDatabase::loadFromFile( variable
171 return Base ? inferTargetAndDriverMode(
173 std::move(Base), llvm::vfs::getRealFileSystem())))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCOptAddrMode.cpp199 MachineOperand &Base = Ldst.getOperand(BasePos); local
202 assert(Base.isReg() && "Base operand must be register");
208 Register B = Base.getReg();
210 LLVM_DEBUG(dbgs() << "[ABAW] Base is not VReg\n");
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp176 const CXXBaseSpecifier *Base = *I; local
177 assert(!Base->isVirtual() && "Should not see virtual bases here!");
183 cast<CXXRecordDecl>(Base->getType()->castAs<RecordType>()->getDecl());
198 assert(PathBegin != PathEnd && "Base path should not be empty!");
219 const CXXRecordDecl *Base,
228 Offset = Layout.getVBaseClassOffset(Base);
230 Offset = Layout.getBaseClassOffset(Base);
239 V = Builder.CreateElementBitCast(V, ConvertType(Base));
296 assert(PathBegin != PathEnd && "Base path should not be empty!");
404 assert(PathBegin != PathEnd && "Base pat
217 GetAddressOfDirectBaseInCompleteClass(Address This, const CXXRecordDecl *Derived, const CXXRecordDecl *Base, bool BaseIsVirtual) argument
467 const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent(); local
512 CallBaseDtor(const CXXRecordDecl *Base, bool BaseIsVirtual) argument
2539 getVTablePointers(BaseSubobject Base, const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, bool BaseIsNonVirtualPrimaryBase, const CXXRecordDecl *VTableClass, VisitedVirtualBasesSetTy &VBases, VPtrsVector &Vptrs) argument
[all...]
H A DCGOpenMPRuntime.cpp47 /// Base class for handling code generation inside OpenMP regions.
976 const Expr *Base = OASE->getBase()->IgnoreParenImpCasts(); local
977 while (const auto *TempOASE = dyn_cast<OMPArraySectionExpr>(Base))
978 Base = TempOASE->getBase()->IgnoreParenImpCasts();
979 while (const auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
980 Base = TempASE->getBase()->IgnoreParenImpCasts();
981 DE = cast<DeclRefExpr>(Base);
984 const Expr *Base = ASE->getBase()->IgnoreParenImpCasts(); local
985 while (const auto *TempASE = dyn_cast<ArraySubscriptExpr>(Base))
986 Base
3499 LValue Base = local
3592 LValue Base = CGF.EmitLoadOfPointerLValue( local
3691 LValue Base = CGF.EmitLoadOfPointerLValue( local
3892 LValue Base = CGF.EmitLValueForField( local
3907 LValue Base = CGF.EmitLValueForField( local
4021 const Expr *Base = OASE->getBase(); local
4314 LValue Base = local
4348 LValue Base = CGF.MakeAddrLValue( local
4383 LValue Base = CGF.MakeNaturalAlignAddrLValue(NewTaskNewTaskTTy, local
4507 LValue Base = CGF.EmitLoadOfPointerLValue( local
4548 LValue Base; local
4608 LValue Base = CGF.EmitLoadOfPointerLValue( local
4667 LValue Base = CGF.EmitLoadOfPointerLValue( local
4886 LValue Base = CGF.MakeAddrLValue(DependenciesArray, KmpDependInfoTy); local
4915 LValue Base = CGF.EmitLoadOfPointerLValue( local
4947 LValue Base; local
7002 Address Base = Address::invalid(); member in struct:__anon1781::MappableExprsHandler::StructRangeInfoTy
7767 const auto *Base = I.getType()->getAsCXXRecordDecl(); local
7780 const auto *Base = I.getType()->getAsCXXRecordDecl(); local
9170 emitUDMapperArrayInitOrDel( CodeGenFunction &MapperCGF, llvm::Value *Handle, llvm::Value *Base, llvm::Value *Begin, llvm::Value *Size, llvm::Value *MapType, CharUnits ElementSize, llvm::BasicBlock *ExitBB, bool IsInit) argument
[all...]
H A DCGCXXABI.h165 Address Base, llvm::Value *MemPtr,
432 getVTableAddressPoint(BaseSubobject Base,
439 BaseSubobject Base,
445 getVTableAddressPointForConstExpr(BaseSubobject Base,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h1067 /// Base index of CurrentChunk.
1070 unsigned Base = 0; member in class:llvm::TargetRegisterInfo::BitMaskClassIterator
1072 /// Base index + how many bit we read within CurrentChunk.
1088 Base += 32;
1089 if (Base >= NumRegClasses) {
1094 Idx = Base;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h203 RECOVERABLE(pointer_overflow, PointerOverflowData *Data, ValueHandle Base,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h198 uintptr_t Base; member in union:clang::__anon1465
345 InitializeBase(ASTContext &Context, const CXXBaseSpecifier *Base,
454 return reinterpret_cast<const CXXBaseSpecifier *>(Base & ~0x1);
460 return Base & 0x1;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h195 void emitBaseConstants(Instruction *Base, Constant *Offset, Type *Ty,
/freebsd-13-stable/sys/contrib/edk2/Include/Uefi/
H A DUefiBaseType.h15 #include <Base.h>
/freebsd-13-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S78 movl %eax,%ebp # Base of user stack
369 .long gdt # Base
/freebsd-13-stable/stand/i386/pxeldr/
H A Dpxeldr.S292 .long gdt # Base
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacclib.h268 UINT32 Base);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp169 : AccessedEntity(Context.getDiagAllocator(), Base, BaseClass, DerivedClass,
932 const CXXRecordDecl *Base = Target.getDeclaringClass(); local
935 bool isDerived = Derived->isDerivedFrom(const_cast<CXXRecordDecl*>(Base),
969 AccessSpecifier BaseAccess = I->Base->getAccessSpecifier();
1200 const CXXBaseSpecifier *base = i->Base;
1246 const CXXBaseSpecifier *base = constrainingBase->Base;
1521 AccessTarget::Base,
1827 QualType Base,
1840 BaseD = cast<CXXRecordDecl>(Base->castAs<RecordType>()->getDecl());
1843 AccessTarget Entity(Context, AccessTarget::Base, Base
1826 CheckBaseClassAccess(SourceLocation AccessLoc, QualType Base, QualType Derived, const CXXBasePath &Path, unsigned DiagID, bool ForceCheck, bool ForceUnprivileged) argument
1846 Entity.setDiag(DiagID) << Derived << Base; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp242 unsigned Base; member in struct:__anon4304::SparcOperand::MemOp
299 return Mem.Base;
475 MorphToMEMrr(unsigned Base, std::unique_ptr<SparcOperand> Op) { argument
478 Op->Mem.Base = Base;
485 CreateMEMr(unsigned Base, SMLoc S, SMLoc E) { argument
487 Op->Mem.Base = Base;
496 MorphToMEMri(unsigned Base, std::unique_ptr<SparcOperand> Op) { argument
499 Op->Mem.Base
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h507 FPOptions Base(LO);
508 FPOptions result((Base.getAsOpaqueInt() & ~OverrideMask) |
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.cpp156 const Record::Base *BD = Record->getBase(I);
163 const Record::Base *VD = Record->getVirtualBase(I);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp241 SrcLoc.Base = GR.getString(LineEntryFile->Base);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h357 void setBaseAddress(const MCSymbol *Base) { BaseAddress = Base; } argument

Completed in 180 milliseconds

1234567891011>>