| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/ |
| H A D | CallGraph.h | 186 using NodeType = clang::CallGraphNode; 188 using ChildIteratorType = NodeType::iterator; 190 static NodeType *getEntryNode(clang::CallGraphNode *CGN) { return CGN; } 191 static ChildIteratorType child_begin(NodeType *N) { return N->begin(); } 192 static ChildIteratorType child_end(NodeType *N) { return N->end(); } 196 using NodeType = const clang::CallGraphNode; 198 using ChildIteratorType = NodeType::const_iterator; 201 static ChildIteratorType child_begin(NodeType *N) { return N->begin();} 202 static ChildIteratorType child_end(NodeType *N) { return N->end(); } 207 static NodeType *getEntryNode(clang::CallGraph *CGN) { [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersMacros.h | 233 template <typename NodeType> \ 235 : public ::clang::ast_matchers::internal::MatcherInterface<NodeType> { \ 237 bool matches(const NodeType &Node, \ 249 template <typename NodeType> \ 250 bool internal::matcher_##DefineMatcher##Matcher<NodeType>::matches( \ 251 const NodeType &Node, \ 272 template <typename NodeType, typename ParamT> \ 274 : public ::clang::ast_matchers::internal::MatcherInterface<NodeType> { \ 279 bool matches(const NodeType &Node, \ 300 template <typename NodeType, typename ParamT> \ [all …]
|
| H A D | ASTMatchers.h | 4225 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() 4245 const CompoundStmt *CS = CompoundStmtMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() 4302 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value) 4311 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value) 4321 return internal::ValueEqualsMatcher<NodeType, ParamT>(Value) 4430 internal::GetSourceExpressionMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() 4452 const QualType NodeType = Node.getTypeAsWritten(); in AST_MATCHER_P() local 4453 return InnerMatcher.matches(NodeType, Finder, Builder); in AST_MATCHER_P() 5149 template <typename NodeType> 5150 using AstTypeMatcher = internal::VariadicDynCastAllOfMatcher<Type, NodeType>; [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/Lanai/ |
| H A D | LanaiISelDAGToDAG.cpp | 169 ISD::NodeType AluOperator = static_cast<ISD::NodeType>(Addr.getOpcode()); in selectAddrRiSpls() 224 ISD::NodeType AluOperator = static_cast<ISD::NodeType>(Addr.getOpcode()); in selectAddrRr()
|
| H A D | LanaiAluCode.h | 119 inline static AluCode isdToLanaiAluCode(ISD::NodeType Node_type) { in isdToLanaiAluCode()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 485 int16_t NodeType; 625 unsigned getOpcode() const { return (unsigned short)NodeType; } 635 return NodeType >= ISD::FIRST_TARGET_MEMORY_OPCODE; 639 bool isUndef() const { return NodeType == ISD::UNDEF; } 647 return (NodeType == ISD::INTRINSIC_W_CHAIN || 648 NodeType == ISD::INTRINSIC_VOID) && 654 switch (NodeType) { 687 bool isMachineOpcode() const { return NodeType < 0; } 694 return ~NodeType; 1059 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs), [all …]
|
| H A D | ISDOpcodes.h | 39 enum NodeType { enum 943 NodeType getExtForLoadExtType(bool IsFP, LoadExtType);
|
| H A D | FunctionLoweringInfo.h | 205 DenseMap<const Value *, ISD::NodeType> PreferredExtendType;
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | DAGISelMatcher.cpp | 351 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo()); in isContradictoryImpl() local 352 if (NodeType != MVT::Other) in isContradictoryImpl() 353 return TypesAreContradictory(NodeType, CT->getType()); in isContradictoryImpl()
|
| /freebsd-12.1/lib/libefivar/ |
| H A D | uefi-dputil.c | 431 IN UINT8 NodeType, in CreateDeviceNode() argument 447 DevicePath->Type = NodeType; in CreateDeviceNode()
|
| H A D | uefi-dplib.h | 383 IN UINT8 NodeType,
|
| /freebsd-12.1/sys/contrib/edk2/Include/Protocol/ |
| H A D | DevicePathUtilities.h | 156 IN UINT8 NodeType,
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARC/ |
| H A D | ARCISelLowering.h | 30 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/BPF/ |
| H A D | BPFISelLowering.h | 25 enum NodeType : unsigned { enum
|
| /freebsd-12.1/sys/contrib/edk2/Include/Library/ |
| H A D | DevicePathLib.h | 417 IN UINT8 NodeType,
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsISelLowering.h | 60 enum NodeType : unsigned { enum 284 ISD::NodeType) const override; 313 ISD::NodeType getExtendForAtomicOps() const override { in getExtendForAtomicOps()
|
| H A D | Relocation.txt | 3 In LLVM, there are several elements of the llvm::ISD::NodeType enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.h | 25 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/MSP430/ |
| H A D | MSP430ISelLowering.h | 24 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.h | 25 enum NodeType : unsigned { enum 511 ISD::NodeType getExtendForAtomicOps() const override { in getExtendForAtomicOps()
|
| /freebsd-12.1/contrib/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.h | 25 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.h | 26 enum NodeType { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/XCore/ |
| H A D | XCoreISelLowering.h | 29 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.h | 25 enum NodeType : unsigned { enum
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FunctionLoweringInfo.cpp | 59 static ISD::NodeType getPreferredExtendForValue(const Value *V) { in getPreferredExtendForValue() 67 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; in getPreferredExtendForValue()
|