Home
last modified time | relevance | path

Searched refs:Ty (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/freebsd-9-stable/contrib/llvm/lib/IR/
DConstants.cpp111 Constant *Constant::getNullValue(Type *Ty) { in getNullValue() argument
112 switch (Ty->getTypeID()) { in getNullValue()
114 return ConstantInt::get(Ty, 0); in getNullValue()
116 return ConstantFP::get(Ty->getContext(), in getNullValue()
119 return ConstantFP::get(Ty->getContext(), in getNullValue()
122 return ConstantFP::get(Ty->getContext(), in getNullValue()
125 return ConstantFP::get(Ty->getContext(), in getNullValue()
128 return ConstantFP::get(Ty->getContext(), in getNullValue()
131 return ConstantFP::get(Ty->getContext(), in getNullValue()
135 return ConstantPointerNull::get(cast<PointerType>(Ty)); in getNullValue()
[all …]
DDataLayout.cpp52 Type *Ty = ST->getElementType(i); in StructLayout() local
53 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty); in StructLayout()
63 StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item in StructLayout()
357 Type *Ty) const { in getAlignmentInfo()
393 unsigned Align = getTypeAllocSize(cast<VectorType>(Ty)->getElementType()); in getAlignmentInfo()
394 Align *= cast<VectorType>(Ty)->getNumElements(); in getAlignmentInfo()
445 const StructLayout *DataLayout::getStructLayout(StructType *Ty) const { in getStructLayout()
450 StructLayout *&SL = (*STM)[Ty]; in getStructLayout()
455 int NumElts = Ty->getNumElements(); in getStructLayout()
463 new (L) StructLayout(Ty, *this); in getStructLayout()
[all …]
DInstructions.cpp834 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, in AllocaInst() argument
836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, in AllocaInst()
837 getAISize(Ty->getContext(), ArraySize), InsertBefore) { in AllocaInst()
839 assert(!Ty->isVoidTy() && "Cannot allocate void!"); in AllocaInst()
843 AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, in AllocaInst() argument
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, in AllocaInst()
846 getAISize(Ty->getContext(), ArraySize), InsertAtEnd) { in AllocaInst()
848 assert(!Ty->isVoidTy() && "Cannot allocate void!"); in AllocaInst()
852 AllocaInst::AllocaInst(Type *Ty, const Twine &Name, in AllocaInst() argument
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, in AllocaInst()
[all …]
DDIBuilder.cpp349 DIDerivedType DIBuilder::createTypedef(DIType Ty, StringRef Name, DIFile File, in createTypedef() argument
352 assert(Ty.isType() && "Invalid typedef type!"); in createTypedef()
363 Ty.getRef() in createTypedef()
369 DIDerivedType DIBuilder::createFriend(DIType Ty, DIType FriendTy) { in createFriend() argument
371 assert(Ty.isType() && "Invalid type!"); in createFriend()
376 Ty.getRef(), in createFriend()
390 DIDerivedType DIBuilder::createInheritance(DIType Ty, DIType BaseTy, in createInheritance() argument
393 assert(Ty.isType() && "Unable to create inheritance"); in createInheritance()
398 Ty.getRef(), in createInheritance()
416 DIType Ty) { in createMemberType() argument
[all …]
/freebsd-9-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp54 GenericValue Src2, Type *Ty) { in executeFAddInst() argument
55 switch (Ty->getTypeID()) { in executeFAddInst()
59 dbgs() << "Unhandled type for FAdd instruction: " << *Ty << "\n"; in executeFAddInst()
65 GenericValue Src2, Type *Ty) { in executeFSubInst() argument
66 switch (Ty->getTypeID()) { in executeFSubInst()
70 dbgs() << "Unhandled type for FSub instruction: " << *Ty << "\n"; in executeFSubInst()
76 GenericValue Src2, Type *Ty) { in executeFMulInst() argument
77 switch (Ty->getTypeID()) { in executeFMulInst()
81 dbgs() << "Unhandled type for FMul instruction: " << *Ty << "\n"; in executeFMulInst()
87 GenericValue Src2, Type *Ty) { in executeFDivInst() argument
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DTargetInfo.cpp106 if (llvm::Type *Ty = getCoerceToType()) in dump() local
107 Ty->print(OS); in dump()
299 static bool is32Or64BitBasicType(QualType Ty, ASTContext &Context) { in is32Or64BitBasicType() argument
301 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in is32Or64BitBasicType()
302 Ty = CTy->getElementType(); in is32Or64BitBasicType()
307 if (!Ty->getAs<BuiltinType>() && !Ty->hasPointerRepresentation() && in is32Or64BitBasicType()
308 !Ty->isEnumeralType() && !Ty->isBlockPointerType()) in is32Or64BitBasicType()
311 uint64_t Size = Context.getTypeSize(Ty); in is32Or64BitBasicType()
324 static bool canExpandIndirectArgument(QualType Ty, ASTContext &Context) { in canExpandIndirectArgument() argument
326 const RecordType *RT = Ty->getAs<RecordType>(); in canExpandIndirectArgument()
[all …]
DCGRTTI.cpp34 GetAddrOfTypeName(QualType Ty, llvm::GlobalVariable::LinkageTypes Linkage);
38 llvm::Constant *GetAddrOfExternalRTTIDescriptor(QualType Ty);
41 void BuildVTablePointer(const Type *Ty);
58 void BuildObjCObjectTypeInfo(const ObjCObjectType *Ty);
62 void BuildPointerToMemberTypeInfo(const MemberPointerType *Ty);
108 llvm::Constant *BuildTypeInfo(QualType Ty, bool Force = false);
113 RTTIBuilder::GetAddrOfTypeName(QualType Ty, in GetAddrOfTypeName() argument
117 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, Out); in GetAddrOfTypeName()
135 llvm::Constant *RTTIBuilder::GetAddrOfExternalRTTIDescriptor(QualType Ty) { in GetAddrOfExternalRTTIDescriptor() argument
139 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out); in GetAddrOfExternalRTTIDescriptor()
[all …]
DCodeGenTypes.cpp52 llvm::StructType *Ty, in addRecordTypeName() argument
80 Ty->setName(OS.str()); in addRecordTypeName()
102 bool CodeGenTypes::isRecordLayoutComplete(const Type *Ty) const { in isRecordLayoutComplete()
104 RecordDeclTypes.find(Ty); in isRecordLayoutComplete()
195 bool CodeGenTypes::isFuncTypeArgumentConvertible(QualType Ty) { in isFuncTypeArgumentConvertible() argument
197 const TagType *TT = Ty->getAs<TagType>(); in isFuncTypeArgumentConvertible()
296 const Type *Ty = T.getTypePtr(); in ConvertType() local
299 if (const RecordType *RT = dyn_cast<RecordType>(Ty)) in ConvertType()
303 llvm::DenseMap<const Type *, llvm::Type *>::iterator TCI = TypeCache.find(Ty); in ConvertType()
310 switch (Ty->getTypeClass()) { in ConvertType()
[all …]
DCGBuiltin.cpp48 llvm::FunctionType *Ty = in getBuiltinLibFunction() local
51 return GetOrCreateLLVMFunction(Name, Ty, D, /*ForVTable=*/false); in getBuiltinLibFunction()
407 Value *Ty = EmitScalarExpr(E->getArg(1)); in EmitBuiltinExpr() local
408 ConstantInt *CI = dyn_cast<ConstantInt>(Ty); in EmitBuiltinExpr()
550 llvm::Type *Ty = ConvertType(E->getArg(5)->getType()); in EmitBuiltinExpr() local
562 Value *IsZero = Builder.CreateFCmpOEQ(V, Constant::getNullValue(Ty), in EmitBuiltinExpr()
753 llvm::IntegerType *Ty in EmitBuiltinExpr() local
758 return RValue::get(llvm::UndefValue::get(Ty)); in EmitBuiltinExpr()
760 return RValue::get(llvm::ConstantInt::get(Ty, Column, true)); in EmitBuiltinExpr()
1655 Value *CodeGenFunction::EmitNeonShiftVector(Value *V, llvm::Type *Ty, in EmitNeonShiftVector() argument
[all …]
DCGDebugInfo.h108 llvm::DIType CreateType(const BuiltinType *Ty);
109 llvm::DIType CreateType(const ComplexType *Ty);
110 llvm::DIType CreateQualifiedType(QualType Ty, llvm::DIFile Fg);
111 llvm::DIType CreateType(const TypedefType *Ty, llvm::DIFile Fg);
112 llvm::DIType CreateType(const ObjCObjectPointerType *Ty,
114 llvm::DIType CreateType(const PointerType *Ty, llvm::DIFile F);
115 llvm::DIType CreateType(const BlockPointerType *Ty, llvm::DIFile F);
116 llvm::DIType CreateType(const FunctionType *Ty, llvm::DIFile F);
118 llvm::DIType CreateTypeDefinition(const RecordType *Ty);
119 llvm::DICompositeType CreateLimitedType(const RecordType *Ty);
[all …]
DCGDebugInfo.cpp516 llvm::DIType CGDebugInfo::CreateType(const ComplexType *Ty) { in CreateType() argument
519 if (Ty->isComplexIntegerType()) in CreateType()
522 uint64_t Size = CGM.getContext().getTypeSize(Ty); in CreateType()
523 uint64_t Align = CGM.getContext().getTypeAlign(Ty); in CreateType()
532 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) { in CreateQualifiedType() argument
534 const Type *T = Qc.strip(Ty); in CreateQualifiedType()
567 llvm::DIType CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty, in CreateType() argument
573 if (Ty->isObjCQualifiedIdType()) in CreateType()
577 CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty, in CreateType()
578 Ty->getPointeeType(), Unit); in CreateType()
[all …]
DCodeGenTBAA.cpp98 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in getTBAAInfo() local
100 if (llvm::MDNode *N = MetadataCache[Ty]) in getTBAAInfo()
104 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(Ty)) { in getTBAAInfo()
133 return MetadataCache[Ty] = in getTBAAInfo()
141 if (Ty->isPointerType()) in getTBAAInfo()
142 return MetadataCache[Ty] = createTBAAScalarType("any pointer", in getTBAAInfo()
147 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) { in getTBAAInfo()
153 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
159 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar()); in getTBAAInfo()
163 return MetadataCache[Ty] = getChar(); in getTBAAInfo()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/IR/
DDataLayout.h129 bool ABIAlign, Type *Ty) const;
136 unsigned getAlignment(Type *Ty, bool abi_or_pref) const;
282 unsigned getPointerTypeSize(Type *Ty) const { in getPointerTypeSize() argument
283 return getPointerTypeSizeInBits(Ty) / 8; in getPointerTypeSize()
306 uint64_t getTypeSizeInBits(Type *Ty) const;
311 uint64_t getTypeStoreSize(Type *Ty) const { in getTypeStoreSize() argument
312 return (getTypeSizeInBits(Ty)+7)/8; in getTypeStoreSize()
318 uint64_t getTypeStoreSizeInBits(Type *Ty) const { in getTypeStoreSizeInBits() argument
319 return 8*getTypeStoreSize(Ty); in getTypeStoreSizeInBits()
326 uint64_t getTypeAllocSize(Type *Ty) const { in getTypeAllocSize() argument
[all …]
DConstants.h55 ConstantInt(IntegerType *Ty, const APInt& V);
65 static Constant *getTrue(Type *Ty);
66 static Constant *getFalse(Type *Ty);
70 static Constant *get(Type *Ty, uint64_t V, bool isSigned = false);
78 static ConstantInt *get(IntegerType *Ty, uint64_t V,
86 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
87 static Constant *getSigned(Type *Ty, int64_t V);
95 static ConstantInt *get(IntegerType *Ty, StringRef Str,
100 static Constant *get(Type* Ty, const APInt& V);
152 static bool isValueValidForType(Type *Ty, uint64_t V);
[all …]
DInstrTypes.h37 TerminatorInst(Type *Ty, Instruction::TermOps iType,
40 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {} in Instruction() argument
42 TerminatorInst(Type *Ty, Instruction::TermOps iType, in TerminatorInst() argument
44 : Instruction(Ty, iType, Ops, NumOps, InsertAtEnd) {} in TerminatorInst()
93 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
95 : Instruction(Ty, iType, &Op<0>(), 1, IB) {
98 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) in UnaryInstruction() argument
99 : Instruction(Ty, iType, &Op<0>(), 1, IAE) { in UnaryInstruction()
142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
[all …]
/freebsd-9-stable/contrib/llvm/lib/CodeGen/
DBasicTargetTransformInfo.cpp33 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) const;
75 virtual bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
78 virtual int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
82 virtual bool isTypeLegal(Type *Ty) const;
86 virtual bool haveFastSqrt(Type *Ty) const;
97 virtual unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty,
115 virtual unsigned getAddressComputationCost(Type *Ty, bool IsComplex) const;
116 virtual unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwise) const;
142 bool BasicTTI::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, in isLegalAddressingMode() argument
150 return getTLI()->isLegalAddressingMode(AM, Ty); in isLegalAddressingMode()
[all …]
/freebsd-9-stable/contrib/llvm/lib/Analysis/
DConstantFolding.cpp499 Type *Ty = cast<PointerType>(CE->getType())->getElementType(); in ConstantFoldLoadFromConstPtr() local
500 unsigned NumBits = Ty->getPrimitiveSizeInBits(); in ConstantFoldLoadFromConstPtr()
504 (isa<IntegerType>(Ty) || Ty->isFloatingPointTy())) { in ConstantFoldLoadFromConstPtr()
523 if (Ty->isFloatingPointTy()) in ConstantFoldLoadFromConstPtr()
524 Res = ConstantExpr::getBitCast(Res, Ty); in ConstantFoldLoadFromConstPtr()
755 Type *Ty = Ptr->getType(); in SymbolicallyEvaluateGEP() local
756 assert(Ty->isPointerTy() && "Forming regular GEP of non-pointer type"); in SymbolicallyEvaluateGEP()
760 if (SequentialType *ATy = dyn_cast<SequentialType>(Ty)) { in SymbolicallyEvaluateGEP()
785 Ty = ATy->getElementType(); in SymbolicallyEvaluateGEP()
786 } else if (StructType *STy = dyn_cast<StructType>(Ty)) { in SymbolicallyEvaluateGEP()
[all …]
DTargetTransformInfo.cpp52 unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty, in getOperationCost() argument
54 return PrevTTI->getOperationCost(Opcode, Ty, OpTy); in getOperationCost()
112 bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, in isLegalAddressingMode() argument
116 return PrevTTI->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, in isLegalAddressingMode()
120 int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, in getScalingFactorCost() argument
124 return PrevTTI->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg, in getScalingFactorCost()
132 bool TargetTransformInfo::isTypeLegal(Type *Ty) const { in isTypeLegal()
133 return PrevTTI->isTypeLegal(Ty); in isTypeLegal()
153 bool TargetTransformInfo::haveFastSqrt(Type *Ty) const { in haveFastSqrt()
154 return PrevTTI->haveFastSqrt(Ty); in haveFastSqrt()
[all …]
DScalarEvolutionExpander.cpp32 Value *SCEVExpander::ReuseOrCreateCast(Value *V, Type *Ty, in ReuseOrCreateCast() argument
52 if (U->getType() == Ty) in ReuseOrCreateCast()
62 Ret = CastInst::Create(Op, V, Ty, "", IP); in ReuseOrCreateCast()
75 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP); in ReuseOrCreateCast()
89 Value *SCEVExpander::InsertNoopCastOfTo(Value *V, Type *Ty) { in InsertNoopCastOfTo() argument
90 Instruction::CastOps Op = CastInst::getCastOpcode(V, false, Ty, false); in InsertNoopCastOfTo()
95 assert(SE.getTypeSizeInBits(V->getType()) == SE.getTypeSizeInBits(Ty) && in InsertNoopCastOfTo()
100 if (V->getType() == Ty) in InsertNoopCastOfTo()
103 if (CI->getOperand(0)->getType() == Ty) in InsertNoopCastOfTo()
109 SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) { in InsertNoopCastOfTo()
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/Mips/
DMipsISelLowering.h251 SDValue getGlobalReg(SelectionDAG &DAG, EVT Ty) const;
258 SDValue getAddrLocal(NodeTy *N, EVT Ty, SelectionDAG &DAG, in getAddrLocal() argument
262 SDValue GOT = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty), in getAddrLocal()
263 getTargetNode(N, Ty, DAG, GOTFlag)); in getAddrLocal()
264 SDValue Load = DAG.getLoad(Ty, DL, DAG.getEntryNode(), GOT, in getAddrLocal()
268 SDValue Lo = DAG.getNode(MipsISD::Lo, DL, Ty, in getAddrLocal()
269 getTargetNode(N, Ty, DAG, LoFlag)); in getAddrLocal()
270 return DAG.getNode(ISD::ADD, DL, Ty, Load, Lo); in getAddrLocal()
278 SDValue getAddrGlobal(NodeTy *N, EVT Ty, SelectionDAG &DAG, in getAddrGlobal() argument
282 SDValue Tgt = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty), in getAddrGlobal()
[all …]
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/
DBodyFarm.cpp28 static bool isDispatchBlock(QualType Ty) { in isDispatchBlock() argument
30 const BlockPointerType *BPT = Ty->getAs<BlockPointerType>(); in isDispatchBlock()
51 BinaryOperator *makeAssignment(const Expr *LHS, const Expr *RHS, QualType Ty);
64 UnaryOperator *makeDereference(const Expr *Arg, QualType Ty);
67 Expr *makeIntegralCast(const Expr *Arg, QualType Ty);
73 ImplicitCastExpr *makeLvalueToRvalue(const Expr *Arg, QualType Ty);
87 QualType Ty) { in makeAssignment() argument
89 BO_Assign, Ty, VK_RValue, in makeAssignment()
122 UnaryOperator *ASTMaker::makeDereference(const Expr *Arg, QualType Ty) { in makeDereference() argument
123 return new (C) UnaryOperator(const_cast<Expr*>(Arg), UO_Deref, Ty, in makeDereference()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/
DDIBuilder.h79 StringRef Name, DIType Ty, Value *Val,
167 DIDerivedType createTypedef(DIType Ty, StringRef Name, DIFile File,
171 DIDerivedType createFriend(DIType Ty, DIType FriendTy);
180 DIDerivedType createInheritance(DIType Ty, DIType BaseTy,
196 uint64_t OffsetInBits, unsigned Flags, DIType Ty);
209 DIFile File, unsigned LineNo, DIType Ty,
232 unsigned Flags, DIType Ty,
252 unsigned Flags, DIType Ty,
269 DIType Ty);
341 createTemplateTypeParameter(DIDescriptor Scope, StringRef Name, DIType Ty,
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/
DTarget.cpp99 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits() argument
100 return unwrap(TD)->getTypeSizeInBits(unwrap(Ty)); in LLVMSizeOfTypeInBits()
103 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType() argument
104 return unwrap(TD)->getTypeStoreSize(unwrap(Ty)); in LLVMStoreSizeOfType()
107 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType() argument
108 return unwrap(TD)->getTypeAllocSize(unwrap(Ty)); in LLVMABISizeOfType()
111 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType() argument
112 return unwrap(TD)->getABITypeAlignment(unwrap(Ty)); in LLVMABIAlignmentOfType()
115 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType() argument
116 return unwrap(TD)->getCallFrameTypeAlignment(unwrap(Ty)); in LLVMCallFrameAlignmentOfType()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/ADT/
DSTLExtras.h32 template<class Ty>
33 struct identity : public std::unary_function<Ty, Ty> {
34 Ty &operator()(Ty &self) const { in operator()
37 const Ty &operator()(const Ty &self) const { in operator()
42 template<class Ty>
43 struct less_ptr : public std::binary_function<Ty, Ty, bool> {
44 bool operator()(const Ty* left, const Ty* right) const { in operator()
49 template<class Ty>
50 struct greater_ptr : public std::binary_function<Ty, Ty, bool> {
51 bool operator()(const Ty* left, const Ty* right) const { in operator()
/freebsd-9-stable/contrib/llvm/lib/Bitcode/Reader/
DBitcodeReader.h80 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
81 Value *getValueFwdRef(unsigned Idx, Type *Ty);
268 Value *getFnValueByID(unsigned ID, Type *Ty) { in getFnValueByID() argument
269 if (Ty && Ty->isMetadataTy()) in getFnValueByID()
271 return ValueList.getValueFwdRef(ID, Ty); in getFnValueByID()
311 unsigned InstNum, Type *Ty, Value *&ResVal) { in popValue() argument
312 if (getValue(Record, Slot, InstNum, Ty, ResVal)) in popValue()
321 unsigned InstNum, Type *Ty, Value *&ResVal) { in getValue() argument
322 ResVal = getValue(Record, Slot, InstNum, Ty); in getValue()
329 unsigned InstNum, Type *Ty) { in getValue() argument
[all …]

12345678910>>...16