Home
last modified time | relevance | path

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

12

/external/llvm/lib/Transforms/IPO/
DInliner.cpp91 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) { in AdjustCallerSSPLevel() argument
99 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(), in AdjustCallerSSPLevel()
104 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr); in AdjustCallerSSPLevel()
105 Caller->addFnAttr(Attribute::SafeStack); in AdjustCallerSSPLevel()
107 !Caller->hasFnAttribute(Attribute::SafeStack)) { in AdjustCallerSSPLevel()
108 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr); in AdjustCallerSSPLevel()
109 Caller->addFnAttr(Attribute::StackProtectReq); in AdjustCallerSSPLevel()
111 !Caller->hasFnAttribute(Attribute::SafeStack) && in AdjustCallerSSPLevel()
112 !Caller->hasFnAttribute(Attribute::StackProtectReq)) { in AdjustCallerSSPLevel()
113 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr); in AdjustCallerSSPLevel()
[all …]
/external/clang/lib/Sema/
DSemaCUDA.cpp92 Sema::IdentifyCUDAPreference(const FunctionDecl *Caller, in IdentifyCUDAPreference() argument
100 (Caller != nullptr) ? IdentifyCUDATarget(Caller) : Sema::CFT_Host; in IdentifyCUDAPreference()
151 bool Sema::CheckCUDATarget(const FunctionDecl *Caller, in CheckCUDATarget() argument
156 return IdentifyCUDAPreference(Caller,Callee) == CFP_Never; in CheckCUDATarget()
163 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller), in CheckCUDATarget()
190 if (Caller->isImplicit()) return false; in CheckCUDATarget()
200 Diag(Caller->getLocation(), in CheckCUDATarget()
202 << Callee->getNameAsString() << Caller->getNameAsString(); in CheckCUDATarget()
214 static void EraseUnwantedCUDAMatchesImpl(Sema &S, const FunctionDecl *Caller, in EraseUnwantedCUDAMatchesImpl() argument
225 P = S.IdentifyCUDAPreference(Caller, FetchDecl(Match)); in EraseUnwantedCUDAMatchesImpl()
[all …]
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp245 Function *Caller = FirstNewBlock->getParent(); in HandleInlinedLandingPad() local
254 for (Function::iterator I = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedLandingPad()
271 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedLandingPad()
301 Function *Caller = FirstNewBlock->getParent(); in HandleInlinedEHPad() local
331 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedEHPad()
370 E = Caller->end(); in HandleInlinedEHPad()
771 const Function *Caller = CS.getInstruction()->getParent()->getParent(); in UpdateCallGraphAfterInlining() local
774 CallGraphNode *CallerNode = CG[Caller]; in UpdateCallGraphAfterInlining()
856 Function *Caller = TheCall->getParent()->getParent(); in HandleByValArgument() local
868 const DataLayout &DL = Caller->getParent()->getDataLayout(); in HandleByValArgument()
[all …]
/external/llvm/include/llvm/Analysis/
DLazyCallGraph.h447 void insertEdge(Node &Caller, Function &Callee);
450 void insertEdge(Function &Caller, Function &Callee) { in insertEdge() argument
451 return insertEdge(get(Caller), Callee); in insertEdge()
455 void removeEdge(Node &Caller, Function &Callee);
458 void removeEdge(Function &Caller, Function &Callee) { in removeEdge() argument
459 return removeEdge(get(Caller), Callee); in removeEdge()
DTargetTransformInfoImpl.h341 bool areInlineCompatible(const Function *Caller, in areInlineCompatible() argument
343 return (Caller->getFnAttribute("target-cpu") == in areInlineCompatible()
345 (Caller->getFnAttribute("target-features") == in areInlineCompatible()
DTargetTransformInfo.h530 bool areInlineCompatible(const Function *Caller,
635 virtual bool areInlineCompatible(const Function *Caller,
829 bool areInlineCompatible(const Function *Caller, in areInlineCompatible() argument
831 return Impl.areInlineCompatible(Caller, Callee); in areInlineCompatible()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h68 CallSite Caller; // Holds the call that called subframes. member
78 Caller(O.Caller), Values(std::move(O.Values)), in ExecutionContext()
85 Caller = O.Caller;
DExecution.cpp852 if (Instruction *I = CallingSF.Caller.getInstruction()) { in popStackAndReturnValueToCaller()
854 if (!CallingSF.Caller.getType()->isVoidTy()) in popStackAndReturnValueToCaller()
858 CallingSF.Caller = CallSite(); // We returned from the call... in popStackAndReturnValueToCaller()
1108 SF.Caller = CS; in visitCallSite()
1110 const unsigned NumArgs = SF.Caller.arg_size(); in visitCallSite()
1113 for (CallSite::arg_iterator i = SF.Caller.arg_begin(), in visitCallSite()
1114 e = SF.Caller.arg_end(); i != e; ++i, ++pNum) { in visitCallSite()
1121 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()
/external/opencv3/modules/flann/test/
Dtest_lshtable_badarg.cpp52 struct Caller struct in CV_LshTableBadArgTest
69 Caller caller; in run()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp2070 Instruction *Caller = CS.getInstruction(); in transformConstExprCastCall() local
2078 Type *OldRetTy = Caller->getType(); in transformConstExprCastCall()
2091 if (!Caller->use_empty() && in transformConstExprCastCall()
2097 if (!CallerPAL.isEmpty() && !Caller->use_empty()) { in transformConstExprCastCall()
2107 if (!Caller->use_empty()) in transformConstExprCastCall()
2108 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) in transformConstExprCastCall()
2217 attrVec.push_back(AttributeSet::get(Caller->getContext(), in transformConstExprCastCall()
2233 attrVec.push_back(AttributeSet::get(Caller->getContext(), i + 1, in transformConstExprCastCall()
2272 Caller->setName(""); // Void type should not have a name. in transformConstExprCastCall()
2281 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { in transformConstExprCastCall()
[all …]
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DScopeRequestIntegrationTest.java118 Callable<SomeObject> callable = injector.getInstance(Caller.class); in testNullReplacement()
129 callable = ServletScopes.scopeRequest(injector.getInstance(Caller.class), map); in testNullReplacement()
161 private static class Caller implements Callable<SomeObject> { class in ScopeRequestIntegrationTest
/external/llvm/lib/Analysis/
DInlineCost.cpp1155 Function *Caller = CS.getInstruction()->getParent()->getParent(); in analyzeCall() local
1157 for (User *U : Caller->users()) { in analyzeCall()
1162 if (I->getParent()->getParent() == Caller) { in analyzeCall()
1361 static bool functionsHaveCompatibleAttributes(Function *Caller, in functionsHaveCompatibleAttributes() argument
1364 return TTI.areInlineCompatible(Caller, Callee) && in functionsHaveCompatibleAttributes()
1365 attributeMatches(Caller, Callee, Attribute::SanitizeAddress) && in functionsHaveCompatibleAttributes()
1366 attributeMatches(Caller, Callee, Attribute::SanitizeMemory) && in functionsHaveCompatibleAttributes()
1367 attributeMatches(Caller, Callee, Attribute::SanitizeThread); in functionsHaveCompatibleAttributes()
DTargetTransformInfo.cpp339 bool TargetTransformInfo::areInlineCompatible(const Function *Caller, in areInlineCompatible() argument
341 return TTIImpl->areInlineCompatible(Caller, Callee); in areInlineCompatible()
/external/llvm/test/Transforms/Inline/
D2003-09-14-InlineValue.ll11 define i32 @Caller() personality i32 (...)* @__gxx_personality_v0 {
/external/llvm/test/Instrumentation/MemorySanitizer/
Dbyval-alignment.ll13 define void @Caller() sanitize_memory {
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DPathDiagnostic.h553 : PathDiagnosticPiece(Call), Caller(callerD), Callee(nullptr), in PathDiagnosticCallPiece()
557 : PathDiagnosticPiece(Call), Caller(caller), Callee(nullptr), in PathDiagnosticCallPiece()
560 const Decl *Caller; variable
579 const Decl *getCaller() const { return Caller; } in getCaller()
/external/libyuv/files/docs/
Drotation.md27 Caller passes stride of 360 for Y and 360 / 2 for U and V.<br>
28 Caller passes crop_width of 640, crop_height of 360.<br>
/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/llvm/lib/Target/X86/
DX86TargetTransformInfo.h95 bool areInlineCompatible(const Function *Caller,
/external/webrtc/webrtc/base/
Diosfilesystem.mm23 // Caller owns the returned memory and must use delete[] on 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/llvm/test/CodeGen/AArch64/
Dsibling-call.ll27 ; Caller isn't going to clean up any extra stack we allocate, so it
Darm64-patchpoint.ll25 ; Caller frame metadata with stackmaps. This should not be optimized

12