Searched defs:Func (Results 51 - 75 of 83) sorted by relevance

1234

/external/clang/lib/CodeGen/
H A DCGBlocks.cpp965 llvm::Value *Func = Builder.CreateLoad(FuncPtr); local
975 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
978 return EmitCall(FnInfo, Func, ReturnValue, Args);
H A DCGBuiltin.cpp1061 llvm::Constant *Func = CGM.CreateRuntimeFunction(FTy, LibCallName); local
1062 return EmitCall(FuncInfo, Func, ReturnValueSlot(), Args);
H A DCGDebugInfo.cpp981 const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>(); local
983 return llvm::DICompositeType(getOrCreateType(QualType(Func, 0), Unit));
985 Func, Unit);
989 QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit) {
992 getOrCreateType(QualType(Func, 0), Unit)).getTypeArray();
988 getOrCreateInstanceMethodType( QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit) argument
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp231 static CheckFallThroughDiagnostics MakeForFunction(const Decl *Func) { argument
233 D.FuncLoc = Func->getLocation();
246 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func))
251 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Func))
H A DSemaTemplate.cpp4241 FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity); local
4245 if (!Func && !Var) {
4258 << !Func << Entity << Arg->getSourceRange();
4260 << !Func;
4263 << !Func << Entity << Arg->getSourceRange();
4265 << !Func;
4269 if (Func) {
4272 ArgType = S.Context.getPointerType(Func->getType());
4277 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
4290 ArgType = Func
[all...]
/external/llvm/include/llvm/MC/
H A DMCAssembler.h964 bool isThumbFunc(const MCSymbol *Func) const {
965 return ThumbFuncs.count(Func);
969 void setIsThumbFunc(const MCSymbol *Func) { ThumbFuncs.insert(Func); } argument
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp146 virtual void EmitThumbFunc(MCSymbol *Func);
400 void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) { argument
406 OS << '\t' << *Func; local
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp1612 const Function *Func = MF->getFunction(); local
1614 ? TD->getABITypeAlignment(Type::getInt64Ty(Func->getContext()))
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp475 GlobalAddressSDNode *Func = dyn_cast<GlobalAddressSDNode>(Callee.getNode()); local
477 if (Func) { // direct call
820 GlobalAddressSDNode *Func = dyn_cast<GlobalAddressSDNode>(Callee.getNode()); local
857 if (!Func) {
882 Chain = DAG.getNode(Func ? (NVPTXISD::PrintCallUni) : (NVPTXISD::PrintCall),
912 SDValue CallArgEndOps[] = { Chain, DAG.getConstant(Func ? 1 : 0, MVT::i32),
918 if (!Func) {
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp690 MachineFunction *Func = MBB->getParent(); local
691 MachineBasicBlock *NewMBB = Func->CreateMachineBasicBlock();
692 Func->push_back(NewMBB); //insert to function
695 MachineInstr *MI = Func->CloneMachineInstr(It);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3292 LibFunc::Func Func; local
3295 TLI->getLibFunc(CI->getCalledFunction()->getName(), Func) &&
3296 TLI->has(Func)) {
3297 if (Func == LibFunc::fabs || Func == LibFunc::fabsf ||
3298 Func == LibFunc::fabsl) {
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1702 LibFunc::Func Func; local
1705 if (TLI->getLibFunc(FloatFuncName, Func))
1706 return TLI->has(Func);
1761 LibFunc::Func Func; local
1778 if (TLI->getLibFunc(FuncName, Func) && TLI->has(Func)) {
1779 switch (Func) {
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp227 BoUpSLP(Function *Func, ScalarEvolution *Se, DataLayout *Dl, argument
230 F(Func), SE(Se), DL(Dl), TTI(Tti), AA(Aa), LI(Li), DT(Dt),
/external/llvm/include/llvm/IR/
H A DInstructions.h1172 void init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr);
1173 void init(Value *Func, const Twine &NameStr);
1177 inline CallInst(Value *Func, ArrayRef<Value *> Args,
1182 inline CallInst(Value *Func, ArrayRef<Value *> Args,
1195 static CallInst *Create(Value *Func, argument
1200 CallInst(Func, Args, NameStr, InsertBefore);
1202 static CallInst *Create(Value *Func, argument
1206 CallInst(Func, Args, NameStr, InsertAtEnd);
1406 CallInst::CallInst(Value *Func, ArrayRef<Value *> Args, argument
1408 : Instruction(cast<FunctionType>(cast<PointerType>(Func
1416 CallInst(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr, Instruction *InsertBefore) argument
2985 Create(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef<Value *> Args, const Twine &NameStr = Ó, Instruction *InsertBefore = 0) argument
2993 Create(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef<Value *> Args, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
3191 InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef<Value *> Args, unsigned Values, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h20 enum Func { enum in namespace:llvm::LibFunc
656 void setState(LibFunc::Func F, AvailabilityState State) {
660 AvailabilityState getState(LibFunc::Func F) const {
672 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const;
676 bool has(LibFunc::Func F) const {
682 bool hasOptimizedCodeGen(LibFunc::Func F) const {
707 StringRef getName(LibFunc::Func F) const {
719 void setUnavailable(LibFunc::Func F) {
723 void setAvailable(LibFunc::Func F) {
727 void setAvailableWithName(LibFunc::Func
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2345 SDValue Func = DAG.getExternalSymbol(TLI.getLibcallName(LC), PtrVT); local
2351 Func, Args, DAG, dl);
H A DSelectionDAGBuilder.cpp5575 LibFunc::Func Func; local
5577 LibInfo->getLibFunc(F->getName(), Func) &&
5578 LibInfo->hasOptimizedCodeGen(Func)) {
5579 switch (Func) {
/external/llvm/lib/IR/
H A DInstructions.cpp266 void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
268 Op<-1>() = Func;
272 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
288 void CallInst::init(Value *Func, const Twine &NameStr) { argument
290 Op<-1>() = Func;
294 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
302 CallInst::CallInst(Value *Func, const Twine &Name, argument
304 : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
309 init(Func, Name);
312 CallInst::CallInst(Value *Func, cons argument
[all...]
H A DCore.cpp1394 Function *Func = unwrap<Function>(Fn); local
1395 Module::iterator I = Func;
1396 if (++I == Func->getParent()->end())
1402 Function *Func = unwrap<Function>(Fn); local
1403 Module::iterator I = Func;
1404 if (I == Func->getParent()->begin())
1442 Function *Func = unwrap<Function>(Fn); local
1443 const AttributeSet PAL = Func->getAttributes();
1446 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
1447 AttributeSet::get(Func
1454 Function *Func = unwrap<Function>(Fn); local
1465 Function *Func = unwrap<Function>(Fn); local
1476 Function *Func = unwrap<Function>(Fn); local
1508 Function *Func = unwrap<Function>(Fn); local
1516 Function *Func = unwrap<Function>(Fn); local
1602 Function *Func = unwrap<Function>(Fn); local
1610 Function *Func = unwrap<Function>(Fn); local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2038 SDValue Func, Chain; local
2039 Func = DAG.getNode(AArch64ISD::GOTLoad, DL, PtrVT, DAG.getEntryNode(),
2058 Ops.push_back(Func);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp412 CreateVarArgHelper(Function &Func, MemorySanitizer &Msan,
1595 if (Function *Func = Call->getCalledFunction()) {
1600 Func->removeAttributes(AttributeSet::FunctionIndex,
1601 AttributeSet::get(Func->getContext(),
1994 VarArgHelper *CreateVarArgHelper(Function &Func, MemorySanitizer &Msan, argument
1998 llvm::Triple TargetTriple(Func.getParent()->getTargetTriple());
2000 return new VarArgAMD64Helper(Func, Msan, Visitor);
2002 return new VarArgNoOpHelper(Func, Msan, Visitor);
/external/clang/lib/AST/
H A DDecl.cpp582 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D); local
584 (!Func || !isFirstInExternCContext(Func)))
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp1315 void Func(Foo* child) LOCKS_EXCLUDED(lock_) {
1320 child->Func(new_foo); // There shouldn't be any warning here as the
1340 x->Func(child);
1354 void Func(Foo* child) LOCKS_EXCLUDED(lock_);
1358 void Foo::Func(Foo* child) { function in class:thread_annot_lock_36_modified::Foo
1364 child->Func(new_foo); // expected-warning {{cannot call function 'Func' while mutex 'child->lock_' is locked}}
1381 x->Func(child);
/external/clang/include/clang/AST/
H A DExpr.h1150 Func, enumerator in enum:clang::PredefinedExpr::IdentType
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp4504 std::string Func = "__" + FuncName + "_block_func_" + BlockNumber; local
4521 FD = SynthBlockInitFunctionDecl(Func);

Completed in 816 milliseconds

1234