HomeSort by relevance Sort by last modified time
    Searched refs:Nest (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/
Attributes.h 45 const Attributes Nest = 1<<8; ///< Nested function static chain
88 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
102 ByVal | InReg | Nest | StructRet,
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 33 static const uint64_t Nest = 1ULL<<5; ///< Nested fn static chain
65 bool isNest() const { return Flags & Nest; }
  /external/llvm/lib/VMCore/
Attributes.cpp 53 if (Attrs & Attribute::Nest)
54 Result += "nest ";
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture;
Function.cpp 89 /// hasNestAttr - Return true if this argument has the nest attribute on
93 return getParent()->paramHasAttr(getArgNo()+1, Attribute::Nest);
Verifier.cpp 593 if (Attr.Attrs & Attribute::Nest) {
594 Assert1(!SawNest, "More than one parameter has attribute nest!", V);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 104 getAttributes().hasAttrSomewhere(Attribute::Nest);
XCoreISelLowering.cpp 804 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
809 // LDAPF_u10 r11, nest
815 // nest:
816 // .word nest
842 OutChains[3] = DAG.getStore(Chain, dl, Nest, Addr,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 82 | Nest
664 | Attribute.Nest -> Int32.shift_left 1l 8
700 checkattr Attribute.Nest;
    [all...]
llvm.mli 127 | Nest
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 55 STATISTIC(NumNestRemoved , "Number of nest attributes removed");
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 460 HANDLE_ATTR(Nest);
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 909 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 640 milliseconds