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

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 44 DynamicTypeInfo NewTy);
48 const MemRegion *Reg, QualType NewTy,
51 DynamicTypeInfo(NewTy, CanBeSubClassed));
  /external/clang/lib/StaticAnalyzer/Core/
DynamicTypeMap.cpp 43 DynamicTypeInfo NewTy) {
45 ProgramStateRef NewState = State->set<DynamicTypeMap>(Reg, NewTy);
  /external/clang/test/CodeGenCXX/
new.cpp 288 typedef int MyClass::* NewTy;
291 NewTy* f() { return new NewTy[2](); }
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 65 FunctionType *NewTy = IA->getFunctionType();
67 NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy));
69 if (NewTy != IA->getFunctionType())
70 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(),
122 Type *NewTy = C->getType();
124 NewTy = TypeMapper->remapType(NewTy);
128 if (OpNo == NumOperands && NewTy == C->getType())
153 return VM[V] = CE->getWithOperands(Ops, NewTy, false, NewSrcTy)
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSX86CallConvPass.cpp 116 llvm::FunctionType *NewTy = llvm::FunctionType::get(FTy->getReturnType(),
119 llvm::Function *NewFn = llvm::Function::Create(NewTy,
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 287 if (const Type *NewTy = getBetterObjCType(CE, C)) {
288 State = setDynamicTypeInfo(State, ToR, QualType(NewTy, 0));
352 const ObjCObjectPointerType *NewTy =
354 if (!NewTy)
358 return NewTy;
366 if (OldTy->isObjCIdType() && !NewTy->isObjCIdType())
367 return NewTy;
370 const ObjCInterfaceDecl *ToI = NewTy->getInterfaceDecl();
373 return NewTy;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 183 Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getZExtValue());
184 AllocaInst *New = IC.Builder->CreateAlloca(NewTy, nullptr, AI.getName());
312 /// metadata, etc., and returns the new instruction. The \c NewTy should be the
318 static LoadInst *combineLoadToNewType(InstCombiner &IC, LoadInst &LI, Type *NewTy,
326 IC.Builder->CreateBitCast(Ptr, NewTy->getPointerTo(AS)),
356 if (NewTy->isPointerTy()) {
361 if (NewTy->isIntegerTy()) {
362 auto *ITy = cast<IntegerType>(NewTy);
375 if (NewTy->isPointerTy())
    [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 213 Type *NewTy = getCorrespondingIntegerType(LI->getType(),
219 Type *PT = PointerType::get(NewTy,
296 Type *NewTy = getCorrespondingIntegerType(SI->getValueOperand()->getType(),
298 Value *NewVal = Builder.CreateBitCast(SI->getValueOperand(), NewTy);
301 Type *PT = PointerType::get(NewTy,
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
ScalarReplAggregates.cpp 359 Type *NewTy;
364 NewTy = VectorTy; // Use the vector type.
384 NewTy = IntegerType::get(AI->getContext(), BitWidth);
387 new AllocaInst(NewTy, nullptr, "", &AI->getParent()->front());
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 364 PointerType *NewTy = PointerType::get(EltTy, AMDGPUAS::LOCAL_ADDRESS);
372 V->mutateType(NewTy);
  /external/llvm/lib/IR/
DIBuilder.cpp 490 auto NewTy = Ty->clone();
491 NewTy->setFlags(NewTy->getFlags() | FlagsToSet);
492 return MDNode::replaceWithUniqued(std::move(NewTy));
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 559 StructType *NewTy = cast<StructType>(NewInit->getType());
560 const StructLayout *CombinedGlobalLayout = DL.getStructLayout(NewTy);
583 GlobalAlias *GAlias = GlobalAlias::create(NewTy->getElementType(I * 2), 0,
    [all...]
GlobalOpt.cpp 571 Type *NewTy = NewGlobals[Val]->getValueType();
581 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
589 NewTy, NewPtr, Idxs, GEPI->getName() + "." + Twine(Val), GEPI);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 248 milliseconds