Searched refs:getType (Results 76 - 100 of 1017) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp174 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType());
393 cast<PointerType>(StartPtr->getType())->getElementType());
418 SI->getOperand(0)->getType());
423 LI->getType());
546 auto *T = LI->getType();
644 DL.getTypeStoreSize(SI->getOperand(0)->getType()),
675 auto *T = V->getType();
781 Type *StructTy = cast<PointerType>(A->getType())->getElementType();
864 if (cpySrc->getType()->getPointerAddressSpace() !=
865 cpyDest->getType()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp61 if (ShAmt0->getType() != ShAmt1->getType())
74 (Sh0->getType()->getScalarSizeInBits() - 1) +
75 (Sh1->getType()->getScalarSizeInBits() - 1);
77 APInt::getAllOnesValue(ShAmt0->getType()->getScalarSizeInBits());
108 unsigned NewShAmtBitWidth = NewShAmt->getType()->getScalarSizeInBits();
109 unsigned XBitWidth = X->getType()->getScalarSizeInBits();
134 NewShAmt = ConstantExpr::getZExtOrBitCast(NewShAmt, X->getType());
155 Ret = CastInst::Create(Instruction::Trunc, NewShift, Sh0->getType());
195 Type *NarrowestTy = OuterShift->getType();
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp106 return OI->getType()->isFloatingPointTy();
112 return OI->getType()->isFP128Ty();
135 if (!isIntN(CI->getType()->getPrimitiveSizeInBits(), Result))
138 return ConstantInt::get(CI->getType(), Result);
198 unsigned AS = CI->getArgOperand(ArgNo)->getType()->getPointerAddressSpace();
226 unsigned AS = CI->getArgOperand(ArgNo)->getType()->getPointerAddressSpace();
379 return Constant::getNullValue(CI->getType());
407 return Constant::getNullValue(CI->getType());
416 return ConstantInt::get(CI->getType(), 0);
424 return ConstantInt::get(CI->getType(), Str
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp49 CGM.getDataLayout().getABITypeAlignment(C->getType()));
57 return getSize(C->getType());
324 if (auto *Seq = dyn_cast<llvm::SequentialType>(CA->getType())) {
333 auto *ST = cast<llvm::StructType>(CA->getType());
406 llvm::Type *CommonType = Elems[0]->getType();
416 if (Elems[I]->getType() != CommonType ||
520 STy->getElementType(0) == Elems[First]->getType())
663 RecordDecl *RD = ILE->getType()->castAs<RecordType>()->getDecl();
700 (Field->getType()->isArrayType() || Field->getType()
[all...]
H A DCGExprComplex.cpp176 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
181 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
234 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
235 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
240 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
241 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
349 if (lvalue.getType()->isAtomicType())
358 Address RealP = CGF.emitAddrOfRealComponent(SrcPtr, lvalue.getType());
363 Address ImagP = CGF.emitAddrOfImagComponent(SrcPtr, lvalue.getType());
374 if (lvalue.getType()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp108 if (Ty != V->getType())
130 if (Ty && Ty != V->getType())
206 NewC = ConstantArray::get(UserCA->getType(), NewOps);
208 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTraceOptions.h26 lldb::TraceType getType() const { return m_type; } function in class:lldb_private::TraceOptions
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTraceOptions.cpp28 lldb::TraceType SBTraceOptions::getType() const { function in class:SBTraceOptions
29 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::TraceType, SBTraceOptions, getType);
32 return m_traceoptions_sp->getType();
139 LLDB_REGISTER_METHOD_CONST(lldb::TraceType, SBTraceOptions, getType, ());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp159 PHI.addIncoming(UndefValue::get(PHI.getType()), Block);
164 return V->getType()->isIntegerTy(1);
172 Type *Ty = cast<PointerType>(Srcs[0]->getType())->getElementType();
192 if (!CI->uge(getAggregateNumElements(Cur[0]->getType())))
199 uint64_t N = getAggregateNumElements(Cur[0]->getType());
223 if (auto *ArrayT = dyn_cast<ArrayType>(Cur[0]->getType()))
224 return V->getType() == ArrayT->getElementType();
226 auto *STy = cast<StructType>(Cur[0]->getType());
228 if (STy->getTypeAtIndex(I) == V->getType())
233 if (auto *ArrayT = dyn_cast<ArrayType>(Cur[0]->getType()))
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLocInfoType.h47 QualType getType() const { return getCanonicalTypeInternal(); } function in class:clang::LocInfoType
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DConstraintManager.cpp34 QualType Ty = Sym->getType();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeTableCollection.h27 CVType getType(TypeIndex Index) override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolData.h47 FORWARD_SYMBOL_ID_METHOD(getType)
H A DPDBSymbolThunk.h42 FORWARD_SYMBOL_ID_METHOD(getType)
H A DPDBSymbolTypeBaseClass.h44 FORWARD_SYMBOL_ID_METHOD(getType)
H A DPDBSymbolTypeEnum.h43 FORWARD_CONCRETE_SYMBOL_ID_METHOD_WITH_NAME(PDBSymbolTypeBuiltin, getType,
H A DPDBSymbolTypeTypedef.h40 FORWARD_SYMBOL_ID_METHOD(getType)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolCOFF.h33 uint16_t getType() const { function in class:llvm::MCSymbolCOFF
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVR.h44 return cast<PointerType>(V->getType())->getAddressSpace() == ProgramMemory;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFImportDumper.cpp29 switch (H->getType()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DFixedAddressChecker.cpp42 QualType T = B->getType();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp94 if (!Sym.getType() || *Sym.getType() != SymbolRef::ST_Function)
156 if (I->getType() && *I->getType() == SymbolRef::ST_Function) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp43 if (SE.getEffectiveSCEVType(AS->getType()) ==
44 SE.getEffectiveSCEVType(BS->getType())) {
45 unsigned BitWidth = SE.getTypeSizeInBits(AS->getType());
108 if (Last->getType()->isPointerTy())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp55 switch (MO.getType()) {
57 return hash_combine(MO.getType(), MO.getTargetFlags(),
61 MO.getType(), MO.getTargetFlags(),
155 : MRI.createGenericVirtualRegister(MRI.getType(VReg), LowerName);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalSplit.cpp72 const StructLayout *SL = DL.getStructLayout(Init->getType());
80 new GlobalVariable(*GV.getParent(), Init->getOperand(I)->getType(),
128 SplitGlobals[I]->getInitializer()->getType(), SplitGlobals[I], Ops,
136 GV.replaceAllUsesWith(UndefValue::get(GV.getType()));

Completed in 133 milliseconds

1234567891011>>