HomeSort by relevance Sort by last modified time
    Searched defs:NewTy (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 188 if (const Type *NewTy = getBetterObjCType(CastE, C))
189 C.addTransition(C.getState()->setDynamicTypeInfo(ToR, QualType(NewTy,0)));
253 const ObjCObjectPointerType *NewTy =
255 if (!NewTy)
259 return NewTy;
267 if (OldTy->isObjCIdType() && !NewTy->isObjCIdType())
268 return NewTy;
271 const ObjCInterfaceDecl *ToI = NewTy->getInterfaceDecl();
274 return NewTy;
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 48 FunctionType *NewTy = IA->getFunctionType();
50 NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy));
52 if (NewTy != IA->getFunctionType())
53 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(),
137 Type *NewTy = C->getType();
139 NewTy = TypeMapper->remapType(NewTy);
143 if (OpNo == NumOperands && NewTy == C->getType())
164 return VM[V] = CE->getWithOperands(Ops, NewTy);
    [all...]
  /external/clang/test/CodeGenCXX/
new.cpp 257 typedef int MyClass::* NewTy;
260 NewTy* f() { return new NewTy[2](); }
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 333 PointerType *NewTy = PointerType::get(EltTy, AMDGPUAS::LOCAL_ADDRESS);
334 V->mutateType(NewTy);
  /external/llvm/lib/IR/
AutoUpgrade.cpp 193 StructType *NewTy =
206 ConstantStruct::get(NewTy, Init->getOperand(0), Init->getOperand(1),
214 ATy = ArrayType::get(NewTy, Initializers.size());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 181 Type *NewTy =
183 AllocaInst *New = Builder->CreateAlloca(NewTy, nullptr, AI.getName());
347 PointerType *NewTy = dyn_cast<PointerType>(LI.getType());
348 if (OldTy && NewTy &&
349 OldTy->getAddressSpace() != NewTy->getAddressSpace()) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 353 Type *NewTy;
358 NewTy = VectorTy; // Use the vector type.
378 NewTy = IntegerType::get(AI->getContext(), BitWidth);
380 AllocaInst *NewAI = new AllocaInst(NewTy, nullptr, "",
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]

Completed in 575 milliseconds