HomeSort by relevance Sort by last modified time
    Searched defs:Call (Results 126 - 150 of 422) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 40 const CallEvent &Call) {
43 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) {
49 assert(cast<CXXMethodDecl>(Call.getDecl())->isTrivial());
50 assert(cast<CXXMethodDecl>(Call.getDecl())->getOverloadedOperator() ==
52 ThisVal = cast<CXXInstanceCall>(Call).getCXXThisVal();
61 SVal V = Call.getArgSVal(0);
70 const Expr *CallExpr = Call.getOriginExpr();
80 State = bindReturnValue(Call, LCtx, State);
291 CallEventRef<CXXConstructorCall> Call =
329 *Call, *this)
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 54 /// \brief Set CallLoweringInfo attribute flags based on a call instruction
70 // that perform tail call conversions.
79 MachineInstr *Call;
95 Callee(nullptr), Symbol(nullptr), CS(nullptr), Call(nullptr),
100 ImmutableCallSite &Call) {
104 IsInReg = Call.paramHasAttr(0, Attribute::InReg);
105 DoesNotReturn = Call.doesNotReturn();
107 IsReturnValueUsed = !Call.getInstruction()->use_empty();
108 RetSExt = Call.paramHasAttr(0, Attribute::SExt);
109 RetZExt = Call.paramHasAttr(0, Attribute::ZExt)
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 155 // Loop over all of the callers of the function, transforming the call sites
163 Instruction *Call = CS.getInstruction();
184 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
186 Args, OpBundles, "", Call);
190 New = CallInst::Create(NF, Args, OpBundles, "", Call);
193 if (cast<CallInst>(Call)->isTailCall())
196 New->setDebugLoc(Call->getDebugLoc());
200 if (!Call->use_empty())
201 Call->replaceAllUsesWith(New);
203 New->takeName(Call);
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 775 // the Test module to call into it. Thus, we create a new function `main'
799 // Call the old main function and return its result
801 CallInst *call = CallInst::Create(oldMainProto, args, "", BB); local
803 // If the type of old function wasn't void, return value of call
804 ReturnInst::Create(Safe->getContext(), call, BB);
809 // module. Instead, we use a JIT API call to dynamically resolve the
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CallingConvLower.h 146 /// the context of prologue or call generation. Not all backends make use of
148 typedef enum { Unknown, Prologue, Call } ParmContext;
210 /// AnalyzeCallOperands - Analyze the outgoing arguments to a call,
221 /// AnalyzeCallResult - Analyze the return values of a call,
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
ArgumentPromotion.cpp 144 // Must be a direct call.
226 // Look at all call sites of the function. At this pointer we know we only
324 // block) or the pointer passed in at every call site is guaranteed to be
637 // Loop over all of the callers of the function, transforming the call sites
644 Instruction *Call = CS.getInstruction();
673 Call);
675 Args.push_back(new LoadInst(Idx, Idx->getName()+".val", Call));
702 V = GetElementPtrInst::Create(V, Ops, V->getName()+".idx", Call);
708 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call);
733 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
    [all...]
DeadArgumentElimination.cpp 222 // Loop over all of the callers of the function, transforming the call sites
228 Instruction *Call = CS.getInstruction();
245 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
247 Args, "", Call);
251 New = CallInst::Create(NF, Args, "", Call);
254 if (cast<CallInst>(Call)->isTailCall())
257 New->setDebugLoc(Call->getDebugLoc());
261 if (!Call->use_empty())
262 Call->replaceAllUsesWith(New);
264 New->takeName(Call);
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp 769 // the Test module to call into it. Thus, we create a new function `main'
793 // Call the old main function and return its result
795 CallInst *call = CallInst::Create(oldMainProto, args, "", BB); local
797 // If the type of old function wasn't void, return value of call
798 ReturnInst::Create(Safe->getContext(), call, BB);
803 // module. Instead, we use a JIT API call to dynamically resolve the
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.cc 441 ComputationDataHandle LocalComputationBuilder::Call(
444 return builder_.Call(local_computation.computation(), operands);
  /external/v8/src/
code-factory.cc 406 Callable CodeFactory::Call(Isolate* isolate, ConvertReceiverMode mode,
408 return Callable(isolate->builtins()->Call(mode, tail_call_mode),
  /external/v8/src/compiler/
graph-assembler.h 283 Node* Call(const CallDescriptor* desc, Args... args);
285 Node* Call(const Operator* op, Args... args);
430 Node* GraphAssembler::Call(const CallDescriptor* desc, Args... args) {
431 const Operator* op = common()->Call(desc);
432 return Call(op, args...);
436 Node* GraphAssembler::Call(const Operator* op, Args... args) {
441 Node* call = graph()->NewNode(op, size, args_array); local
443 current_effect_ = call;
444 return call;
js-operator.cc 754 const Operator* JSOperatorBuilder::Call(size_t arity, float frequency,
    [all...]
  /external/v8/tools/mb/
mb.py 851 ret, out, _ = self.Call(cmd)
    [all...]
  /external/v8/tools/release/
test_scripts.py 310 def Call(self, name, *args, **kwargs): # pragma: no cover
346 # The expected call contains an optional callback for checking the context
347 # at the time of the call.
419 def Call(self, fun, *args, **kwargs):
425 return self._mock.Call("command", cmd + " " + args, cwd=cwd)
428 return self._mock.Call("readline")
432 return self._mock.Call("readurl", url, params)
434 return self._mock.Call("readurl", url)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 94 Call = 1 << 5,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Index/
IndexSymbol.h 95 Call = 1 << 5,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Index/
IndexSymbol.h 95 Call = 1 << 5,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/StaticAnalyzer/Core/
Checker.h 325 const CallEvent *Call) {
328 LCtx, Call);
346 const CallEvent *Call,
353 Call,
370 Call,
389 const CallEvent *Call,
410 Call,
459 class Call {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 94 Call = 1 << 5,

Completed in 2439 milliseconds

1 2 3 4 56 7 8 91011>>