Searched refs:Ty (Results 226 - 250 of 295) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/
H A DIRBuilder.h795 AllocaInst *CreateAlloca(Type *Ty, Value *ArraySize = 0, argument
797 return Insert(new AllocaInst(Ty, ArraySize), Name);
1162 PHINode *CreatePHI(Type *Ty, unsigned NumReservedValues, argument
1164 return Insert(PHINode::Create(Ty, NumReservedValues), Name);
1208 VAArgInst *CreateVAArg(Value *List, Type *Ty, const Twine &Name = "") { argument
1209 return Insert(new VAArgInst(List, Ty), Name);
1255 LandingPadInst *CreateLandingPad(Type *Ty, Value *PersFn, unsigned NumClauses, argument
1257 return Insert(LandingPadInst::Create(Ty, PersFn, NumClauses, Name));
/external/llvm/include/llvm/Support/
H A DIntegersSubset.h165 static IntItem fromType(Type* Ty, const APInt& V) { argument
166 ConstantInt *C = cast<ConstantInt>(ConstantInt::get(Ty, V));
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.h472 virtual unsigned getByValTypeAlignment(Type *Ty) const;
583 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty)const;
H A DX86SelectionDAGInfo.cpp61 Entry.Ty = IntPtrTy;
H A DX86FastISel.cpp140 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
150 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) { argument
151 EVT evt = TLI.getValueType(Ty, /*HandleUnknown=*/true);
356 if (PointerType *Ty = dyn_cast<PointerType>(V->getType()))
357 if (Ty->getAddressSpace() > 255)
1617 PointerType *Ty = cast<PointerType>(ArgVal->getType()); local
1618 Type *ElementTy = Ty->getElementType();
/external/quake/
H A DNOTICE354 <signature of Ty Coon>, 1 April 1989
355 Ty Coon, President of Vice
699 <signature of Ty Coon>, 1 April 1989
700 Ty Coon, President of Vice
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp460 if (IntegerType *Ty = dyn_cast<IntegerType>(CmpLHS->getType())) {
461 if (TrueVal->getType() == Ty) {
473 Value *AShr = Builder->CreateAShr(CmpLHS, Ty->getBitWidth()-1);
H A DInstCombineCalls.cpp24 static Type *getPromotedType(Type *Ty) { argument
25 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
27 return Type::getInt32Ty(Ty->getContext());
29 return Ty;
/external/llvm/lib/Analysis/
H A DValueTracking.cpp39 static unsigned getBitWidth(Type *Ty, const TargetData *TD) { argument
40 if (unsigned BitWidth = Ty->getScalarSizeInBits())
42 assert(isa<PointerType>(Ty) && "Expected a pointer type!");
1011 Type *Ty = V->getType(); local
1013 Ty->getScalarSizeInBits();
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp196 llvm::GlobalVariable *MakeGlobal(llvm::StructType *Ty, argument
201 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
202 return new llvm::GlobalVariable(TheModule, Ty, false,
208 llvm::GlobalVariable *MakeGlobal(llvm::ArrayType *Ty, argument
213 llvm::Constant *C = llvm::ConstantArray::get(Ty, V);
214 return new llvm::GlobalVariable(TheModule, Ty, false,
219 llvm::GlobalVariable *MakeGlobalArray(llvm::Type *Ty, argument
224 llvm::ArrayType *ArrayTy = llvm::ArrayType::get(Ty, V.size());
230 llvm::Value* EnforceType(CGBuilderTy B, llvm::Value *V, llvm::Type *Ty){ argument
231 if (V->getType() == Ty) retur
[all...]
H A DCGBlocks.cpp1842 QualType Ty = D->getType();
1863 (Ty->isObjCRetainableType()) || getContext().getBlockVarCopyInits(D);
1890 llvm::Type *Ty = Int8Ty; local
1894 Ty = llvm::ArrayType::get(Ty, NumPaddingBytes);
1896 types.push_back(Ty);
1904 types.push_back(ConvertTypeForMem(Ty));
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp846 Type *Ty = CFP->getType(); local
847 if (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) {
849 } else if (Ty->isX86_FP80Ty()) {
856 } else if (Ty->isFP128Ty() || Ty->isPPC_FP128Ty()) {
/external/clang/lib/Parse/
H A DParseObjc.cpp891 ParsedType Ty; local
905 Ty = type.get();
918 Ty = Actions.ActOnObjCInstanceType(Tok.getLocation());
934 return Ty;
2759 TypeResult Ty = ParseTypeName(); local
2763 if (Ty.isInvalid())
2767 T.getOpenLocation(), Ty.get(),
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp318 Type *Ty = Types.pop_back_val(); local
319 switch (Ty->getTypeID()) {
324 SequentialType *STy = cast<SequentialType>(Ty);
329 StructType *STy = cast<StructType>(Ty);
666 Type *Ty = Init->getType(); local
676 if (StructType *STy = dyn_cast<StructType>(Ty)) {
698 } else if (SequentialType *STy = dyn_cast<SequentialType>(Ty)) {
2670 Type *Ty = AI->getType()->getElementType();
2671 AllocaTmps.push_back(new GlobalVariable(Ty, false,
2673 UndefValue::get(Ty),
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp720 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext()); local
721 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
826 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext()); local
827 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
875 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
877 TLI.getTargetData()->getABITypeAlignment(Ty);
1060 Type *Ty =
1063 TLI.getTargetData()->getABITypeAlignment(Ty);
1796 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
1845 Entry.Ty
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp2535 void InitializationSequence::AddQualificationConversionStep(QualType Ty, argument
2550 S.Type = Ty;
5156 // temporary, not a reference, so we should pass Ty.
5161 QualType Ty = ResultType ? ResultType->getNonReferenceType() : Step->Type; local
5163 InitializedEntity TempEntity = InitializedEntity::InitializeTemporary(Ty);
5165 InitList, Ty, /*VerifyOnly=*/false,
5173 Ty = S.Context.getRValueReferenceType(Ty);
5175 Ty = S.Context.getLValueReferenceType(Ty,
5303 QualType Ty = Step->Type; local
[all...]
/external/clang/lib/AST/
H A DItaniumMangle.cpp1778 const Type *ty = split.Ty;
3576 void ItaniumMangleContext::mangleCXXRTTI(QualType Ty,
3579 assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers");
3582 Mangler.mangleType(Ty);
3585 void ItaniumMangleContext::mangleCXXRTTIName(QualType Ty,
3590 Mangler.mangleType(Ty);
H A DTypePrinter.cpp135 print(split.Ty, split.Quals, OS, PlaceHolder);
236 dyn_cast<SubstTemplateTypeParmType>(Split.Ty))
239 printBefore(Split.Ty, Quals, OS);
292 printAfter(split.Ty, split.Quals, OS);
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2540 static bool HasPadding(Type *Ty, const TargetData &TD) { argument
2541 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
2542 Ty = ATy->getElementType();
2543 return TD.getTypeSizeInBits(Ty) != TD.getTypeAllocSizeInBits(Ty);
2547 StructType *STy = cast<StructType>(Ty);
H A DIndVarSimplify.cpp622 Type *Ty = Cast->getType();
623 uint64_t Width = SE->getTypeSizeInBits(Ty);
628 WI.WidestNativeType = SE->getEffectiveSCEVType(Ty);
638 WI.WidestNativeType = SE->getEffectiveSCEVType(Ty);
/external/clang/include/clang/Sema/
H A DDeclSpec.h920 /// \param Ty the type to which this conversion function is converting.
924 ParsedType Ty,
929 ConversionFunctionId = Ty;
1094 ParsedType Ty; member in struct:clang::DeclaratorChunk::TypeAndRange
923 setConversionFunctionId(SourceLocation OperatorLoc, ParsedType Ty, SourceLocation EndLoc) argument
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp53 static SDValue GetGlobalReg(SelectionDAG &DAG, EVT Ty) { argument
55 return DAG.getRegister(FI->getGlobalBaseReg(), Ty);
504 EVT Ty = N->getValueType(0);
505 unsigned LO = (Ty == MVT::i32) ? Mips::LO : Mips::LO64;
506 unsigned HI = (Ty == MVT::i32) ? Mips::HI : Mips::HI64;
518 SDValue CopyFromLo = DAG.getCopyFromReg(InChain, dl, LO, Ty,
528 HI, Ty, InGlue);
1544 EVT Ty = Op.getOperand(0).getValueType(); local
1545 SDValue Cond = DAG.getNode(ISD::SETCC, DL, getSetCCResultType(Ty),
1673 Entry.Ty
2822 EVT Ty = IsN64 ? MVT::i64 : MVT::i32; local
[all...]
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h99 uint64_t getTypeStoreSize(Type *Ty);
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h712 static EVT getEVT(Type *Ty, bool HandleUnknown = false);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.h295 virtual bool isLegalAddressingMode(const AddrMode &AM, Type *Ty)const;

Completed in 1085 milliseconds

1234567891011>>