HomeSort by relevance Sort by last modified time
    Searched refs:getParamType (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp     [all...]
MergeFunctions.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 47 if (FTy->getParamType(0)->isIntegerTy(32) &&
48 FTy->getParamType(1)->isPointerTy() &&
49 FTy->getParamType(2)->isPointerTy()) {
62 if (FTy->getParamType(0)->isIntegerTy(32) &&
63 FTy->getParamType(1)->isPointerTy()) {
74 if (FTy->getNumParams() == 1 && FTy->getParamType(0)->isIntegerTy(32)) {
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 139 if (FT->getReturnType() != FT->getParamType(0))
150 if (NumParams != 3 || FT->getParamType(0) != FT->getParamType(1) ||
151 FT->getParamType(0) != PCharTy || !FT->getParamType(2)->isIntegerTy())
160 if (NumParams != 2 || FT->getParamType(0) != FT->getParamType(1) ||
161 FT->getParamType(0) != PCharTy)
170 if (NumParams != 3 || !FT->getParamType(0)->isPointerTy() ||
171 !FT->getParamType(1)->isPointerTy() || FT->getParamType(2) != SizeTTy
    [all...]
  /external/llvm/lib/Analysis/
MemoryLocation.cpp 101 isa<PointerType>(MemsetType->getParamType(0)) &&
102 isa<PointerType>(MemsetType->getParamType(1)) &&
103 isa<IntegerType>(MemsetType->getParamType(2)))
MemoryBuiltins.cpp 136 (FTy->getParamType(FstParam)->isIntegerTy(32) ||
137 FTy->getParamType(FstParam)->isIntegerTy(64))) &&
139 FTy->getParamType(SndParam)->isIntegerTy(32) ||
140 FTy->getParamType(SndParam)->isIntegerTy(64)))
351 if (FTy->getParamType(0) != Type::getInt8PtrTy(Callee->getContext()))
BasicAliasAnalysis.cpp 541 isa<PointerType>(MemsetType->getParamType(0)) &&
542 isa<PointerType>(MemsetType->getParamType(1)) &&
543 isa<IntegerType>(MemsetType->getParamType(2)))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 319 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
355 if (!FPT->getParamType(0)->isIntegralOrUnscopedEnumerationType())
359 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>();
399 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
571 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>();
600 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>();
722 if (!FTP->getParamType(i)->isIntegralOrUnscopedEnumerationType())
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 498 if (FTy->getParamType(0)->isIntegerTy(32) &&
499 FTy->getParamType(1)->isPointerTy() &&
500 FTy->getParamType(2)->isPointerTy()) {
513 if (FTy->getParamType(0)->isIntegerTy(32) &&
514 FTy->getParamType(1)->isPointerTy()) {
526 FTy->getParamType(0)->isIntegerTy(32)) {
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
159 Type *ArgType = F.getFunctionType()->getParamType(0);
  /external/clang/include/clang/AST/
CanonicalType.h 487 CanQualType getParamType(unsigned i) const {
488 return CanQualType::CreateUnsafe(this->getTypePtr()->getParamType(i));
  /external/clang/utils/TableGen/
NeonEmitter.cpp 390 Type getParamType(unsigned I) const { return Types[I + 1]; }
410 Idx += std::max(1U, getParamType(I).getNumVectors());
1026 Type T = getParamType(I);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 231 if (!isFuncParamTypeConvertible(FPT->getParamType(i)))
314 if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>())
CGCall.cpp 115 prefix.push_back(FPT->getParamType(I));
    [all...]
CGExprCXX.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 199 Type *ArgTy = FTy->getParamType(ArgNo);
211 Type *ArgTy = FTy->getParamType(ArgNo);
  /external/llvm/include/llvm/IR/
DerivedTypes.h 131 Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
  /external/llvm/lib/Target/AMDGPU/
AMDGPUOpenCLImageTypeLoweringPass.cpp 266 ArgTypes.push_back(FT->getParamType(i));
AMDGPUPromoteAlloca.cpp 66 Type *ParamTy = FTy->getParamType(i);
  /external/llvm/lib/IR/
Function.cpp 288 assert(!FT->getParamType(i)->isVoidTy() &&
290 ArgumentList.push_back(new Argument(FT->getParamType(i)));
484 Result += getMangledTypeStr(FT->getParamType(i));
    [all...]
Verifier.cpp     [all...]
AutoUpgrade.cpp 40 Type *Arg0Type = F->getFunctionType()->getParamType(0);
55 Type *LastArgType = F->getFunctionType()->getParamType(
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSScriptGroupFusion.cpp 255 llvm::Type* firstArgType = funcTy->getParamType(0);
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 790 Target->getParamType(i), TargetLoc, Source->getParamType(i),
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 442 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
444 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
446 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
    [all...]

Completed in 822 milliseconds

1 2 3