Searched refs:Callee (Results 51 - 75 of 117) sorted by relevance

12345

/external/webkit/Source/JavaScriptCore/jit/
H A DJITCall.cpp54 emitPutCellToCallFrameHeader(regT0, RegisterFile::Callee);
208 storePtr(regT0, Address(callFrameRegister, (registerOffset + RegisterFile::Callee) * static_cast<int>(sizeof(Register))));
H A DJITCall32_64.cpp54 emitPutCellToCallFrameHeader(regT0, RegisterFile::Callee);
288 emitStore(registerOffset + RegisterFile::Callee, regT1, regT0);
H A DJITOpcodes32_64.cpp220 emitGetFromCallFrameHeaderPtr(RegisterFile::Callee, regT1);
234 preserveReturnAddressAfterCall(regT3); // Callee preserved
242 emitGetFromCallFrameHeaderPtr(RegisterFile::Callee, ARMRegisters::r1);
255 preserveReturnAddressAfterCall(regT3); // Callee preserved
262 emitGetFromCallFrameHeaderPtr(RegisterFile::Callee, regT5);
275 preserveReturnAddressAfterCall(regT3); // Callee preserved
289 emitGetFromCallFrameHeaderPtr(RegisterFile::Callee, MIPSRegisters::a2);
368 preserveReturnAddressAfterCall(regT3); // Callee preserved
375 emitGetFromCallFrameHeaderPtr(RegisterFile::Callee, ARMRegisters::r1);
391 preserveReturnAddressAfterCall(regT3); // Callee preserve
[all...]
/external/llvm/lib/Analysis/
H A DLint.cpp63 static unsigned Callee = 4; member in namespace:__anon9401::MemRef
199 Value *Callee = CS.getCalledValue(); local
201 visitMemoryReference(I, Callee, AliasAnalysis::UnknownSize,
202 0, 0, MemRef::Callee);
204 if (Function *F = dyn_cast<Function>(findValue(Callee, /*OffsetOk=*/false))) {
404 if (Flags & MemRef::Callee) {
/external/llvm/lib/Target/Mips/
H A DMips16ISelLowering.cpp373 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
385 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(CLI.Callee)) {
395 SDValue JumpTarget = Callee;
402 RegsToPass.push_front(std::make_pair(V0Reg, Callee));
406 RegsToPass.push_front(std::make_pair((unsigned)Mips::T9, Callee));
412 InternalLinkage, CLI, Callee, Chain);
370 getOpndList(SmallVectorImpl<SDValue> &Ops, std::deque< std::pair<unsigned, SDValue> > &RegsToPass, bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage, CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const argument
H A DMipsISelLowering.cpp2540 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
2591 SDValue Callee = CLI.Callee; local
2609 Callee.getNode(), CLI.Args);
2726 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2731 Callee = getAddrLocal(Callee, DAG, HasMips64);
2733 Callee = getAddrGlobalLargeGOT(Callee, DAG, MipsII::MO_CALL_HI16,
2736 Callee
2537 getOpndList(SmallVectorImpl<SDValue> &Ops, std::deque< std::pair<unsigned, SDValue> > &RegsToPass, bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage, CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp307 Value *Callee = M->getOrInsertFunction(Name, Op->getType(), local
309 CallInst *CI = B.CreateCall(Callee, Op, Name);
311 if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
475 Function *Callee = CI->getCalledFunction(); local
476 StringRef Name = Callee->getName();
477 FunctionType *FT = Callee->getFunctionType();
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp774 Callee = CalleeCtx->getDecl();
776 callEnterWithin = PathDiagnosticLocation::createBegin(Callee, SM);
852 if (!Callee)
859 describeCodeDecl(Out, Callee, /*ExtendedDescription=*/true);
869 if (Callee->isImplicit())
871 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Callee))
895 bool DidDescribe = describeCodeDecl(Out, Callee,
/external/llvm/lib/Target/MBlaze/
H A DMBlazeISelLowering.cpp694 SDValue Callee = CLI.Callee; local
801 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
802 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
804 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
805 Callee = DAG.getTargetExternalSymbol(S->getSymbol(),
809 // = Chain, Callee, Reg#1, Reg#2, ...
815 Ops.push_back(Callee);
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp284 SDValue Callee = CLI.Callee; local
297 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
459 MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee, argument
559 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
560 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i16);
561 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
562 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
568 Ops.push_back(Callee);
/external/clang/lib/CodeGen/
H A DCGCall.cpp1996 CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee, argument
1998 return EmitCallOrInvoke(Callee, ArrayRef<llvm::Value *>(), Name);
2004 CodeGenFunction::EmitCallOrInvoke(llvm::Value *Callee, argument
2011 Inst = Builder.CreateCall(Callee, Args, Name);
2014 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, Name);
2100 llvm::Value *Callee,
2117 cast<llvm::PointerType>(Callee->getType())->getElementType());
2306 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Callee))
2308 llvm::PointerType *CurPT=cast<llvm::PointerType>(Callee->getType());
2329 Callee
2099 EmitCall(const CGFunctionInfo &CallInfo, llvm::Value *Callee, ReturnValueSlot ReturnValue, const CallArgList &CallArgs, const Decl *TargetDecl, llvm::Instruction **callOrInvoke) argument
[all...]
H A DCGVTables.cpp226 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); local
227 llvm::Function *BaseFn = cast<llvm::Function>(Callee);
341 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); local
368 RValue RV = EmitCall(FnInfo, Callee, Slot, CallArgs, MD);
H A DCGClass.cpp1685 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, local
1723 Callee, ReturnValueSlot(), Args, D);
1816 llvm::Value *Callee = 0; local
1818 Callee = BuildAppleKextVirtualDestructorCall(DD, Type,
1821 if (!Callee)
1822 Callee = CGM.GetAddrOfCXXDestructor(DD, Type);
1825 EmitCXXMemberCall(DD, SourceLocation(), Callee, ReturnValueSlot(), This,
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp134 std::string Callee; member in class:CallExprAST
138 : Callee(callee), Args(args) {}
493 Function *CalleeF = TheModule->getFunction(Callee);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp149 std::string Callee; member in class:CallExprAST
153 : Callee(callee), Args(args) {}
597 Function *CalleeF = TheModule->getFunction(Callee);
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp389 if (Function *Callee = II->getCalledFunction())
390 if (Callee->isIntrinsic() &&
391 Callee->getIntrinsicID() == Intrinsic::donothing) {
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2855 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, argument
2882 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3095 unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag, argument
3111 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
3113 Callee = SDValue(Dest, 0);
3117 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3137 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
3138 Callee.getValueType(),
3144 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3156 Callee
3267 isLocalCall(const SDValue &Callee) argument
3322 FinishCall(CallingConv::ID CallConv, DebugLoc dl, bool isTailCall, bool isVarArg, SelectionDAG &DAG, SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass, SDValue InFlag, SDValue Chain, SDValue &Callee, int SPDiff, unsigned NumBytes, const SmallVectorImpl<ISD::InputArg> &Ins, SmallVectorImpl<SDValue> &InVals) const argument
3426 SDValue Callee = CLI.Callee; local
3452 LowerCall_32SVR4(SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, bool isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
3684 LowerCall_64SVR4(SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, bool isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
4055 LowerCall_Darwin(SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, bool isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h153 bool IsEligibleForTailCallOptimization(SDValue Callee,
H A DAArch64ISelLowering.cpp1088 SDValue Callee = CLI.Callee; local
1101 IsTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1162 // Callee does the actual widening, so all extensions just use an implicit
1266 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1268 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy());
1269 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1271 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
1285 // (AArch64Call Chain, Callee, reg1, ..., regn, preserveMask, inflag?
1292 Ops.push_back(Callee);
1388 IsEligibleForTailCallOptimization(SDValue Callee, CallingConv::ID CalleeCC, bool IsVarArg, bool IsCalleeStructRet, bool IsCallerStructRet, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG& DAG) const argument
1770 SDValue Callee = DAG.getExternalSymbol(getLibcallName(Call), getPointerTy()); local
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.h120 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
H A DXCoreISelLowering.cpp903 SDValue Callee = CLI.Callee; local
918 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
928 XCoreTargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee, argument
1012 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1013 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i32);
1014 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
1015 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
1018 // = Chain, Callee, Reg#1, Reg#2, ...
1024 Ops.push_back(Callee);
[all...]
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp222 Function *Callee = Arg->getParent(); local
224 unsigned ArgNo = std::distance(Callee->arg_begin(),
229 for (Value::use_iterator UI = Callee->use_begin(), E = Callee->use_end();
/external/clang/lib/AST/
H A DExprConstant.cpp278 /// Callee - The function which was called.
279 const FunctionDecl *Callee; member in struct:__anon3624::CallStackFrame
299 const FunctionDecl *Callee, const LValue *This,
583 const FunctionDecl *Callee, const LValue *This,
585 : Info(Info), Caller(Info.CurrentCall), CallLoc(CallLoc), Callee(Callee),
600 bool IsMemberCall = isa<CXXMethodDecl>(Frame->Callee) &&
601 !isa<CXXConstructorDecl>(Frame->Callee) &&
602 cast<CXXMethodDecl>(Frame->Callee)->isInstance();
605 Out << *Frame->Callee << '(';
582 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, const FunctionDecl *Callee, const LValue *This, const APValue *Arguments) argument
2156 HandleFunctionCall(SourceLocation CallLoc, const FunctionDecl *Callee, const LValue *This, ArrayRef<const Expr*> Args, const Stmt *Body, EvalInfo &Info, APValue &Result) argument
2489 const Expr *Callee = E->getCallee()->IgnoreParens(); local
[all...]
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp633 if (Decl *Callee = ce->getCalleeDecl()) {
634 if (Callee->hasAttr<ReturnsTwiceAttr>()) {
642 else if (Callee->hasAttr<AnalyzerNoReturnAttr>()) {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp154 std::string Callee; member in class:CallExprAST
158 : Callee(callee), Args(args) {}
693 Function *CalleeF = TheModule->getFunction(Callee);

Completed in 782 milliseconds

12345