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
89 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
103 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 51 if (Attrs & Attribute::Nest)
52 Result += "nest ";
104 Incompatible |= ByVal | Nest | NoAlias | StructRet | NoCapture;
Function.cpp 88 /// hasNestAttr - Return true if this argument has the nest attribute on
92 return getParent()->paramHasAttr(getArgNo()+1, Attribute::Nest);
Verifier.cpp 578 if (Attr.Attrs & Attribute::Nest) {
579 Assert1(!SawNest, "More than one parameter has attribute nest!", V);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 103 bool Nested = MF.getFunction()->getAttributes().hasAttrSomewhere(Attribute::Nest);
XCoreISelLowering.cpp 796 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
801 // LDAPF_u10 r11, nest
807 // nest:
808 // .word nest
834 OutChains[3] = DAG.getStore(Chain, dl, Nest, Addr,
    [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/bindings/ocaml/llvm/
llvm.ml 82 | Nest
548 | Attribute.Nest -> 1 lsl 8
    [all...]
llvm.mli 127 | Nest
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 470 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 906 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 900 milliseconds