Home
last modified time | relevance | path

Searched refs:Caller (Results 1 – 25 of 44) sorted by relevance

12

/external/llvm/lib/Transforms/IPO/
DInliner.cpp86 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) { in AdjustCallerSSPLevel() argument
93 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(), in AdjustCallerSSPLevel()
96 AttributeSet CallerAttr = Caller->getAttributes(), in AdjustCallerSSPLevel()
101 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr); in AdjustCallerSSPLevel()
102 Caller->addFnAttr(Attribute::StackProtectReq); in AdjustCallerSSPLevel()
107 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr); in AdjustCallerSSPLevel()
108 Caller->addFnAttr(Attribute::StackProtectStrong); in AdjustCallerSSPLevel()
115 Caller->addFnAttr(Attribute::StackProtect); in AdjustCallerSSPLevel()
131 Function *Caller = CS.getCaller(); in InlineCallIfPossible() local
138 AdjustCallerSSPLevel(Caller, Callee); in InlineCallIfPossible()
[all …]
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp220 Function *Caller = FirstNewBlock->getParent(); in HandleInlinedInvoke() local
229 for (Function::iterator I = FirstNewBlock, E = Caller->end(); I != E; ++I) in HandleInlinedInvoke()
247 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E; ++BB){ in HandleInlinedInvoke()
272 const Function *Caller = CS.getInstruction()->getParent()->getParent(); in UpdateCallGraphAfterInlining() local
275 CallGraphNode *CallerNode = CG[Caller]; in UpdateCallGraphAfterInlining()
396 Function *Caller = TheCall->getParent()->getParent(); in HandleByValArgument() local
399 &*Caller->begin()->begin()); in HandleByValArgument()
544 Function *Caller = OrigBB->getParent(); in InlineFunction() local
551 if (!Caller->hasGC()) in InlineFunction()
552 Caller->setGC(CalledFunc->getGC()); in InlineFunction()
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp1232 Instruction *Caller = CS.getInstruction(); in transformConstExprCastCall() local
1240 Type *OldRetTy = Caller->getType(); in transformConstExprCastCall()
1253 if (!Caller->use_empty() && in transformConstExprCastCall()
1259 if (!CallerPAL.isEmpty() && !Caller->use_empty()) { in transformConstExprCastCall()
1272 if (!Caller->use_empty()) in transformConstExprCastCall()
1273 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) in transformConstExprCastCall()
1374 attrVec.push_back(AttributeSet::get(Caller->getContext(), in transformConstExprCastCall()
1390 attrVec.push_back(AttributeSet::get(Caller->getContext(), i + 1, in transformConstExprCastCall()
1429 Caller->setName(""); // Void type should not have a name. in transformConstExprCastCall()
1435 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { in transformConstExprCastCall()
[all …]
/external/llvm/include/llvm/Analysis/
DLazyCallGraph.h442 void insertEdge(Node &Caller, Function &Callee);
445 void insertEdge(Function &Caller, Function &Callee) { in insertEdge() argument
446 return insertEdge(get(Caller), Callee); in insertEdge()
450 void removeEdge(Node &Caller, Function &Callee);
453 void removeEdge(Function &Caller, Function &Callee) { in removeEdge() argument
454 return removeEdge(get(Caller), Callee); in removeEdge()
/external/chromium_org/third_party/tlslite/patches/
Dreq_cert_types.patch110 raise ValueError("Caller passed a privateKey but no certChain")
112 raise ValueError("Caller passed reqCAs but not reqCert")
114 + raise ValueError("Caller passed reqCertTypes but not reqCert")
Dsigned_certificate_timestamps.patch123 + raise ValueError("Caller passed signedCertTimestamps but no "
/external/llvm/test/Transforms/Inline/
D2003-09-14-InlineValue.ll11 define i32 @Caller() {
/external/llvm/lib/Analysis/IPA/
DInlineCost.cpp1062 Function *Caller = CS.getInstruction()->getParent()->getParent(); in analyzeCall() local
1064 for (User *U : Caller->users()) { in analyzeCall()
1069 if (I->getParent()->getParent() == Caller) { in analyzeCall()
1253 static bool functionsHaveCompatibleAttributes(Function *Caller, in functionsHaveCompatibleAttributes() argument
1255 return attributeMatches(Caller, Callee, Attribute::SanitizeAddress) && in functionsHaveCompatibleAttributes()
1256 attributeMatches(Caller, Callee, Attribute::SanitizeMemory) && in functionsHaveCompatibleAttributes()
1257 attributeMatches(Caller, Callee, Attribute::SanitizeThread); in functionsHaveCompatibleAttributes()
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.compat32 ATTRIBUTE Caller-ID 31 string
Ddictionary.ascend69 ATTRIBUTE Ascend-FT1-Caller 175 integer
179 VALUE Ascend-FT1-Caller FT1-No 0
180 VALUE Ascend-FT1-Caller FT1-Yes 1
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DPathDiagnostic.h550 : PathDiagnosticPiece(Call), Caller(callerD), Callee(nullptr), in PathDiagnosticCallPiece()
554 : PathDiagnosticPiece(Call), Caller(caller), Callee(nullptr), in PathDiagnosticCallPiece()
557 const Decl *Caller; variable
576 const Decl *getCaller() const { return Caller; } in getCaller()
/external/chromium_org/third_party/webrtc/base/
Diosfilesystem.mm23 // Caller owns the returned memory and must use delete[] on it.
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp851 if (Instruction *I = CallingSF.Caller.getInstruction()) { in popStackAndReturnValueToCaller()
853 if (!CallingSF.Caller.getType()->isVoidTy()) in popStackAndReturnValueToCaller()
857 CallingSF.Caller = CallSite(); // We returned from the call... in popStackAndReturnValueToCaller()
1107 SF.Caller = CS; in visitCallSite()
1109 const unsigned NumArgs = SF.Caller.arg_size(); in visitCallSite()
1112 for (CallSite::arg_iterator i = SF.Caller.arg_begin(), in visitCallSite()
1113 e = SF.Caller.arg_end(); i != e; ++i, ++pNum) { in visitCallSite()
1120 GenericValue SRC = getOperandValue(SF.Caller.getCalledValue(), SF); in visitCallSite()
2077 assert((ECStack.empty() || !ECStack.back().Caller.getInstruction() || in callFunction()
2078 ECStack.back().Caller.arg_size() == ArgVals.size()) && in callFunction()
DInterpreter.h76 CallSite Caller; // Holds the call that called subframes. member
/external/chromium_org/ui/gfx/image/
Dimage_mac.mm21 // Caller takes ownership of the returned NSImage.
Dimage_ios.mm26 // Caller takes ownership of returned UIImage.
/external/llvm/test/CodeGen/AArch64/
Dsibling-call.ll27 ; Caller isn't going to clean up any extra stack we allocate, so it
/external/ceres-solver/cmake/
DFindGlog.cmake140 "Caller defined GLOG_INCLUDE_DIR:"
151 "Caller defined GLOG_LIBRARY: "
DFindGflags.cmake140 "Caller defined GFLAGS_INCLUDE_DIR:"
151 "Caller defined GFLAGS_LIBRARY: "
/external/chromium_org/third_party/libjingle/source/talk/base/
Diosfilesystem.mm40 // Caller owns the returned memory and must use delete[] on it.
/external/chromium_org/net/third_party/nss/patches/
Dcachecerts.patch72 * Caller must hold Handshake and RecvBuf locks.
Drestartclientauth.patch33 + * Caller holds 1stHandshakeLock.
/external/llvm/test/CodeGen/X86/
Dpatchpoint.ll23 ; Caller frame metadata with stackmaps. This should not be optimized
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp605 const Decl *Caller = CE->getLocationContext()->getDecl(); in GenerateMinimalPathDiagnostic() local
606 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateMinimalPathDiagnostic()
1464 const Decl *Caller = CE->getLocationContext()->getDecl(); in GenerateExtensivePathDiagnostic() local
1465 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateExtensivePathDiagnostic()
1680 const Decl *Caller = CE->getLocationContext()->getDecl(); in GenerateAlternateExtensivePathDiagnostic() local
1681 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller); in GenerateAlternateExtensivePathDiagnostic()
/external/llvm/test/Other/
Dlint.ll17 ; CHECK: Caller and callee calling convention differ

12