HomeSort by relevance Sort by last modified time
    Searched refs:Ty (Results 251 - 275 of 381) sorted by null

<<111213141516

  /external/clang/lib/Sema/
SemaExprCXX.cpp 656 QualType Ty = E->getType();
658 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
659 Ty = Ptr->getPointeeType();
662 if (!isPointer || !Ty->isVoidType()) {
663 if (RequireCompleteType(ThrowLoc, Ty,
703 const RecordType *RecordTy = Ty->getAs<RecordType>();
726 PDiag(diag::err_access_dtor_exception) << Ty);
    [all...]
SemaCXXScopeSpec.cpp 34 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
35 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
42 } else if (isa<InjectedClassNameType>(Ty))
43 return cast<InjectedClassNameType>(Ty)->getDecl();
    [all...]
SemaOverload.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 614 unsigned Reg, Type *Ty) {
615 ComputeValueVTs(tli, Ty, ValueVTs);
    [all...]
FastISel.cpp 482 Type *Ty = I->getOperand(0)->getType();
487 if (StructType *StTy = dyn_cast<StructType>(Ty)) {
501 Ty = StTy->getElementType(Field);
503 Ty = cast<SequentialType>(Ty)->getElementType();
510 DL.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
531 uint64_t ElementSize = DL.getTypeAllocSize(Ty);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 492 QualType Ty = InitEx->getType();
494 Ty = getContext().getPointerType(Ty);
497 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 862 QualType Ty;
864 Ty = Ctx.getTypeDeclType(TD);
866 Ty = VD->getType();
868 Ctx.getObjCEncodingForType(Ty, encoding);
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 208 Value *SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *TD = nullptr,
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 322 static EVT getEVT(Type *Ty, bool HandleUnknown = false);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 247 Type *Ty, ExecutionContext &SF);
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 764 Type *Ty = CPE.getType();
765 Size += TD->getTypeAllocSize(Ty);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 210 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override;
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 123 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override;
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 572 Type *Ty = TripCnt->getType();
574 PHINode *TcPhi = PHINode::Create(Ty, 2, "tcphi", Body->begin());
578 Value *Opnd2 = cast<Value>(ConstantInt::get(Ty, 1));
589 LbCond->setOperand(1, cast<Value>(ConstantInt::get(Ty, 0)));
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 426 Type *Ty = AI->getType();
427 Type *Int8PtrTy = Type::getInt8PtrTy(Ty->getContext(),
428 Ty->getPointerAddressSpace());
429 if (Ty == Int8PtrTy)
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
Type.h 497 const Type *Ty;
502 SplitQualType() : Ty(nullptr), Quals() {}
503 SplitQualType(const Type *ty, Qualifiers qs) : Ty(ty), Quals(qs) {}
509 return std::pair<const Type *, Qualifiers>(Ty, Quals);
513 return a.Ty == b.Ty && a.Quals == b.Quals;
516 return a.Ty != b.Ty || a.Quals != b.Quals
    [all...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 567 Type *Ty = AI->getAllocatedType();
568 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 113 bool isTypeLegal(Type *Ty, MVT &VT);
114 bool isLoadStoreTypeLegal(Type *Ty, MVT &VT);
322 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
323 if (Ty->getAddressSpace() > 255)
414 bool AArch64FastISel::isTypeLegal(Type *Ty, MVT &VT) {
415 EVT evt = TLI.getValueType(Ty, true);
431 bool AArch64FastISel::isLoadStoreTypeLegal(Type *Ty, MVT &VT) {
432 if (isTypeLegal(Ty, VT))
882 Type *Ty = Src1Value->getType();
883 EVT SrcEVT = TLI.getValueType(Ty, true)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 110 unsigned FastEmit_i(MVT Ty, MVT RetTy, unsigned Opc, uint64_t Imm) override;
141 bool isTypeLegal(Type *Ty, MVT &VT);
142 bool isLoadTypeLegal(Type *Ty, MVT &VT);
252 // Determine whether the type Ty is simple enough to be handled by
255 bool PPCFastISel::isTypeLegal(Type *Ty, MVT &VT) {
256 EVT Evt = TLI.getValueType(Ty, true);
267 // Determine whether the type Ty is simple enough to be handled by
269 bool PPCFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
270 if (isTypeLegal(Ty, VT)) return true;
735 Type *Ty = SrcValue1->getType()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 412 QualType Ty = D->getType();
413 while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
415 Ty = PT->getInnerType();
418 if (const FunctionType *AFT = Ty->getAs<FunctionType>()) {
563 Ty.print(Out, Policy, Proto);
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 279 Type *Ty = I.getAllocatedType();
280 AllocatedSize += Ty->getPrimitiveSizeInBits() * AllocSize->getZExtValue();
287 Type *Ty = I.getAllocatedType();
288 AllocatedSize += (DL ? DL->getTypeAllocSize(Ty) :
289 Ty->getPrimitiveSizeInBits());
    [all...]

Completed in 849 milliseconds

<<111213141516