Home
last modified time | relevance | path

Searched refs:ilist_node (Results 1 – 25 of 25) sorted by relevance

/external/llvm/test/Transforms/DeadStoreElimination/
D2011-09-06-MemCpy.ll6 %struct.BasicBlock = type { %struct.Value, %struct.ilist_node.24, %struct.iplist.22, %struct.Functi…
14 %struct.ilist_node.24 = type { %struct.ilist_half_node.23, %struct.BasicBlock* }
19 %struct.Instruction = type { [52 x i8], %struct.ilist_node.26, %struct.BasicBlock*, %struct.DebugLo…
20 %struct.ilist_node.26 = type { %struct.ilist_half_node.25, %struct.Instruction* }
22 %struct.Function = type { %struct.GlobalValue, %struct.ilist_node.14, %struct.iplist.4, %struct.ipl…
26 %struct.ilist_traits.19 = type { %struct.ilist_node.18 }
27 %struct.ilist_node.18 = type { %struct.ilist_half_node.17, %struct.GlobalVariable* }
29 %struct.GlobalVariable = type { %struct.GlobalValue, %struct.ilist_node.18, i8, [7 x i8] }
31 %struct.ilist_traits.15 = type { %struct.ilist_node.14 }
32 %struct.ilist_node.14 = type { %struct.ilist_half_node.13, %struct.Function* }
[all …]
/external/llvm/include/llvm/ADT/
Dilist_node.h43 class ilist_node : private ilist_half_node<NodeTy> {
51 ilist_node() : Next(nullptr) {}
DSparseBitVector.h45 : public ilist_node<SparseBitVectorElement<ElementSize> > {
/external/llvm/test/CodeGen/PowerPC/
Dpr15031.ll30 %"class.llvm::MachineInstr" = type { %"class.llvm::ilist_node", %"class.llvm::MCInstrDesc"*, %"clas…
31 %"class.llvm::ilist_node" = type { %"class.llvm::ilist_half_node", %"class.llvm::MachineInstr"* }
35 %"class.llvm::MachineBasicBlock" = type { %"class.llvm::ilist_node.0", %"struct.llvm::ilist", %"cla…
36 %"class.llvm::ilist_node.0" = type { %"class.llvm::ilist_half_node.1", %"class.llvm::MachineBasicBl…
41 %"class.llvm::BasicBlock" = type { %"class.llvm::Value", %"class.llvm::ilist_node.2", %"class.llvm:…
42 %"class.llvm::ilist_node.2" = type { %"class.llvm::ilist_half_node.3", %"class.llvm::BasicBlock"* }
47 %"class.llvm::Instruction" = type { %"class.llvm::User", %"class.llvm::ilist_node.193", %"class.llv…
49 %"class.llvm::ilist_node.193" = type { %"class.llvm::ilist_half_node.10", %"class.llvm::Instruction…
51 %"class.llvm::Function" = type { %"class.llvm::GlobalValue", %"class.llvm::ilist_node.27", %"class.…
55 %"struct.llvm::ilist_traits.12" = type { %"class.llvm::ilist_node.18" }
[all …]
/external/llvm/include/llvm/Analysis/
DIVUsers.h36 class IVStrideUse : public CallbackVH, public ilist_node<IVStrideUse> {
116 mutable ilist_node<IVStrideUse> Sentinel;
DAliasSetTracker.h35 class AliasSet : public ilist_node<AliasSet> {
/external/llvm/include/llvm/IR/
DModule.h53 mutable ilist_node<Function> Sentinel;
68 mutable ilist_node<GlobalVariable> Sentinel;
83 mutable ilist_node<GlobalAlias> Sentinel;
101 mutable ilist_node<NamedMDNode> Sentinel;
DArgument.h35 class Argument : public Value, public ilist_node<Argument> {
DGlobalVariable.h35 class GlobalVariable : public GlobalObject, public ilist_node<GlobalVariable> {
DGlobalAlias.h29 class GlobalAlias : public GlobalValue, public ilist_node<GlobalAlias> {
DBasicBlock.h73 public ilist_node<BasicBlock> {
DMetadata.h196 class NamedMDNode : public ilist_node<NamedMDNode> {
DInstruction.h32 class Instruction : public User, public ilist_node<Instruction> {
DFunction.h71 class Function : public GlobalObject, public ilist_node<Function> {
/external/clang/test/CXX/class.access/class.friend/
Dp1.cpp128 …class ilist_node : private ilist_half_node { // expected-note {{declared private here}} expected-n… class
134 struct X : ilist_node {};
/external/llvm/unittests/ADT/
DilistTest.cpp20 struct Node : ilist_node<Node> {
/external/llvm/include/llvm/MC/
DMCAssembler.h45 class MCFragment : public ilist_node<MCFragment> {
561 class MCSectionData : public ilist_node<MCSectionData> {
686 class MCSymbolData : public ilist_node<MCSymbolData> {
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h55 class BugReport : public llvm::ilist_node<BugReport> {
/external/llvm/test/CodeGen/X86/
Dmisched-aa-colored.ll8 …vm::FoldingSetImpl::Node.0.600.960.1920.2040.2280.4080", %"class.llvm::ilist_node.2.602.962.1922.2…
10 %"class.llvm::ilist_node.2.602.962.1922.2042.2282.4082" = type { %"class.llvm::ilist_half_node.1.60…
/external/llvm/include/llvm/CodeGen/
DSlotIndexes.h38 class IndexListEntry : public ilist_node<IndexListEntry> {
DMachineBasicBlock.h62 class MachineBasicBlock : public ilist_node<MachineBasicBlock> {
DMachineInstr.h51 class MachineInstr : public ilist_node<MachineInstr> {
DSelectionDAGNodes.h338 class SDNode : public FoldingSetNode, public ilist_node<SDNode> {
/external/llvm/lib/Support/
DYAMLParser.cpp109 struct Token : ilist_node<Token> {
/external/llvm/docs/
DProgrammersManual.rst821 * :ref:`llvm/ADT/ilist_node.h <dss_ilist_node>`
877 llvm/ADT/ilist_node.h
880 ``ilist_node<T>`` implements a the forward and backward links that are expected
883 ``ilist_node<T>``\ s are meant to be embedded in the node type ``T``, usually
884 ``T`` publicly derives from ``ilist_node<T>``.