/external/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 91 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/ |
D | SemaCUDA.cpp | 92 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/ |
D | InlineFunction.cpp | 245 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/ |
D | LazyCallGraph.h | 447 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()
|
D | TargetTransformInfoImpl.h | 341 bool areInlineCompatible(const Function *Caller, in areInlineCompatible() argument 343 return (Caller->getFnAttribute("target-cpu") == in areInlineCompatible() 345 (Caller->getFnAttribute("target-features") == in areInlineCompatible()
|
D | TargetTransformInfo.h | 530 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/ |
D | Interpreter.h | 68 CallSite Caller; // Holds the call that called subframes. member 78 Caller(O.Caller), Values(std::move(O.Values)), in ExecutionContext() 85 Caller = O.Caller;
|
D | Execution.cpp | 852 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/ |
D | test_lshtable_badarg.cpp | 52 struct Caller struct in CV_LshTableBadArgTest 69 Caller caller; in run()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 2070 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/ |
D | ScopeRequestIntegrationTest.java | 118 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/ |
D | InlineCost.cpp | 1155 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()
|
D | TargetTransformInfo.cpp | 339 bool TargetTransformInfo::areInlineCompatible(const Function *Caller, in areInlineCompatible() argument 341 return TTIImpl->areInlineCompatible(Caller, Callee); in areInlineCompatible()
|
/external/llvm/test/Transforms/Inline/ |
D | 2003-09-14-InlineValue.ll | 11 define i32 @Caller() personality i32 (...)* @__gxx_personality_v0 {
|
/external/llvm/test/Instrumentation/MemorySanitizer/ |
D | byval-alignment.ll | 13 define void @Caller() sanitize_memory {
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | PathDiagnostic.h | 553 : 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/ |
D | rotation.md | 27 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/ |
D | dictionary.compat | 32 ATTRIBUTE Caller-ID 31 string
|
D | dictionary.ascend | 69 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/ |
D | X86TargetTransformInfo.h | 95 bool areInlineCompatible(const Function *Caller,
|
/external/webrtc/webrtc/base/ |
D | iosfilesystem.mm | 23 // Caller owns the returned memory and must use delete[] on it.
|
/external/ceres-solver/cmake/ |
D | FindGlog.cmake | 140 "Caller defined GLOG_INCLUDE_DIR:" 151 "Caller defined GLOG_LIBRARY: "
|
D | FindGflags.cmake | 140 "Caller defined GFLAGS_INCLUDE_DIR:" 151 "Caller defined GFLAGS_LIBRARY: "
|
/external/llvm/test/CodeGen/AArch64/ |
D | sibling-call.ll | 27 ; Caller isn't going to clean up any extra stack we allocate, so it
|
D | arm64-patchpoint.ll | 25 ; Caller frame metadata with stackmaps. This should not be optimized
|