OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SelectionDAG
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
SelectionDAG.h
1
//===-- llvm/CodeGen/
SelectionDAG
.h - InstSelection DAG ---------*- C++ -*-===//
10
// This file declares the
SelectionDAG
class, and transitively defines the
120
class
SelectionDAG
;
122
void checkForCycles(const
SelectionDAG
*DAG);
124
///
SelectionDAG
class - This is used to represent a portion of an LLVM function
130
/// The representation used by the
SelectionDAG
is a target-independent
135
class
SelectionDAG
{
168
///
SelectionDAG
.
185
void operator=(const
SelectionDAG
&); // Do not implement.
186
SelectionDAG
(const SelectionDAG&); // Do not implement
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
1
//===--
SelectionDAG
.cpp - Implement the
SelectionDAG
data structures -----===//
10
// This implements the
SelectionDAG
class.
14
#include "llvm/CodeGen/
SelectionDAG
.h"
74
SelectionDAG
::DAGUpdateListener::~DAGUpdateListener() {}
488
//
SelectionDAG
Class
512
///
SelectionDAG
.
513
void
SelectionDAG
::RemoveDeadNodes() {
533
void
SelectionDAG
::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
563
void
SelectionDAG
::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener)
[
all
...]
Completed in 595 milliseconds