HomeSort by relevance Sort by last modified time
    Searched full:callee (Results 501 - 525 of 1069) sorted by null

<<21222324252627282930>>

  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 155 std::string Callee;
158 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
159 : Callee(callee), Args(args) {}
943 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 157 std::string Callee;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
983 Function *CalleeF = TheHelper->getFunction(Callee);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
X86ISelLowering.h 69 /// #1 - The callee
71 /// #3 - The number of arg bytes the callee pops off the stack.
497 /// isCalleePop - Determines whether the callee is required to pop its
498 /// own arguments. Callee pop is necessary to support tail calls.
812 bool IsEligibleForTailCallOptimization(SDValue Callee,
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 218 Function *Callee = Arg->getParent();
224 for (Value::use_iterator UI = Callee->use_begin(), E = Callee->use_end();
316 // would have happened in the callee anyway (ie, there is a load in the entry
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 439 "type mismatch between callee prototype and arguments");
469 NVPTXTargetLowering::getArgumentAlignment(SDValue Callee,
475 GlobalAddressSDNode *Func = dyn_cast<GlobalAddressSDNode>(Callee.getNode());
479 "direct call cannot find callee");
500 SDValue Callee = CLI.Callee;
543 unsigned align = getArgumentAlignment(Callee, CS, Ty, paramCount + 1);
589 unsigned align = getArgumentAlignment(Callee, CS, Ty, paramCount + 1);
820 GlobalAddressSDNode *Func = dyn_cast<GlobalAddressSDNode>(Callee.getNode());
845 retAlignment = getArgumentAlignment(Callee, CS, retTy, 0)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 701 SDValue Callee = CLI.Callee;
780 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
781 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), DL, PtrVT);
782 Callee = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Callee);
783 } else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) {
784 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT);
785 Callee = DAG.getNode(SystemZISD::PCREL_WRAPPER, DL, PtrVT, Callee);
    [all...]
  /external/llvm/docs/tutorial/
OCamlLangImpl5.rst     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 654 // Add callee saved registers to move list.
877 // Callee pop calling convention. Pop parameter/linkage area. Used for tail
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 396 callExpr(allOf(callee(functionDecl(hasName("f"))),
399 callExpr(allOf(callee(functionDecl(hasName("f"))),
404 callExpr(allOf(callee(functionDecl(hasName("f"))),
410 callExpr(allOf(callee(functionDecl(hasName("f"))),
819 callExpr(callee(methodDecl(hasName("x")))).bind("x");
    [all...]
  /external/llvm/docs/
CodeGenerator.rst     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 202 std::string Callee;
205 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
206 : Callee(callee), Args(args) {}
    [all...]
  /external/v8/src/
bootstrapper.cc 1128 Handle<AccessorPair> callee = factory->NewAccessorPair(); local
    [all...]
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-mips.S 553 * runtime-resolved callee.
625 # Start executing the callee
638 * Thumb code through the link register to transfer control to the callee
701 RETURN # return to the callee-chaining cell
711 * Thumb code through the link register to transfer control to the callee
728 * - lr+16: to fully resolve the callee and may rechain.
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 633 if (Decl *Callee = ce->getCalleeDecl()) {
634 if (Callee->hasAttr<ReturnsTwiceAttr>()) {
642 else if (Callee->hasAttr<AnalyzerNoReturnAttr>()) {
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 167 // Mark live-out callee-saved registers. In a return block this is
168 // all callee-saved registers. In non-return this is any
169 // callee-saved register that is not saved in the prolog.
    [all...]
CriticalAntiDepBreaker.cpp 73 // Mark live-out callee-saved registers. In a return block this is
74 // all callee-saved registers. In non-return this is any
75 // callee-saved register that is not saved in the prolog.
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 62 // GHC set of callee saved regs is empty as all those regs are
307 // frame, it's less likely to have lots of spills and callee saved
519 // Conservatively assume all callee-saved registers get pushed. R4-R6
  /external/valgrind/main/coregrind/
m_syscall.c 265 clobbers, so we preserve all the callee-save regs (%esi, %edi, %ebx,
307 no matter, they are caller-save (the syscall clobbers no callee-save
343 No callee-save regs are clobbered, so no saving/restoring is needed.
  /art/compiler/dex/quick/mips/
call_mips.cc 347 /* Spill core callee saves */
  /art/compiler/jni/portable/
jni_compiler.cc 134 // Get callee code_addr
  /art/runtime/mirror/
art_method.h 351 // Is this a hand crafted method used for something like describing callee saves?
  /art/runtime/
runtime.h 342 // Returns a special method that describes all callee saves being spilled to the stack.
  /dalvik/vm/compiler/codegen/x86/
LowerJump.cpp     [all...]

Completed in 1266 milliseconds

<<21222324252627282930>>