OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TargetSelectionDAGInfo
(Results
1 - 25
of
30
) sorted by null
1
2
/external/llvm/lib/CodeGen/SelectionDAG/
TargetSelectionDAGInfo.cpp
1
//===--
TargetSelectionDAGInfo
.cpp - SelectionDAG Info --------------------===//
10
// This implements the
TargetSelectionDAGInfo
class.
14
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
18
TargetSelectionDAGInfo
::
TargetSelectionDAGInfo
(const DataLayout *DL)
22
TargetSelectionDAGInfo
::~
TargetSelectionDAGInfo
() {
Android.mk
26
TargetSelectionDAGInfo
.cpp
/external/llvm/lib/Target/MSP430/
MSP430SelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(&DL) {}
MSP430SelectionDAGInfo.h
10
// This file defines the MSP430 subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class MSP430SelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/Mips/
MipsSelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(&DL) {}
MipsSelectionDAGInfo.h
10
// This file defines the Mips subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class MipsSelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/PowerPC/
PPCSelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(DL) {}
PPCSelectionDAGInfo.h
10
// This file defines the PowerPC subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class PPCSelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/Sparc/
SparcSelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(&DL) {
SparcSelectionDAGInfo.h
10
// This file defines the Sparc subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class SparcSelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.h
10
// This file defines the AArch64 subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
21
class AArch64SelectionDAGInfo : public
TargetSelectionDAGInfo
{
AArch64SelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(DL) {}
/external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.h
10
// This file defines the Hexagon subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
21
class HexagonSelectionDAGInfo : public
TargetSelectionDAGInfo
{
HexagonSelectionDAGInfo.cpp
22
:
TargetSelectionDAGInfo
(&DL) {}
/external/llvm/include/llvm/Target/
TargetSelectionDAGInfo.h
1
//==-- llvm/Target/
TargetSelectionDAGInfo
.h - SelectionDAG Info --*- C++ -*-==//
10
// This file declares the
TargetSelectionDAGInfo
class, which targets can
27
///
TargetSelectionDAGInfo
- Targets can subclass this to parameterize the
30
class
TargetSelectionDAGInfo
{
31
TargetSelectionDAGInfo
(const
TargetSelectionDAGInfo
&) LLVM_DELETED_FUNCTION;
32
void operator=(const
TargetSelectionDAGInfo
&) LLVM_DELETED_FUNCTION;
40
explicit
TargetSelectionDAGInfo
(const DataLayout *DL);
41
virtual ~
TargetSelectionDAGInfo
();
TargetMachine.h
44
class
TargetSelectionDAGInfo
;
123
virtual const
TargetSelectionDAGInfo
*getSelectionDAGInfo() const {
/external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.h
10
// This file defines the XCore subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class XCoreSelectionDAGInfo : public
TargetSelectionDAGInfo
{
XCoreSelectionDAGInfo.cpp
20
:
TargetSelectionDAGInfo
(&DL) {}
/external/llvm/lib/Target/X86/
X86SelectionDAGInfo.h
10
// This file defines the X86 subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
25
class X86SelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h
10
// This file defines the ARM subclass for
TargetSelectionDAGInfo
.
18
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
38
class ARMSelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.h
53
const
TargetSelectionDAGInfo
*getSelectionDAGInfo() const override {
SystemZSubtarget.h
65
const
TargetSelectionDAGInfo
*getSelectionDAGInfo() const { return &TSInfo; }
SystemZSelectionDAGInfo.h
10
// This file defines the SystemZ subclass for
TargetSelectionDAGInfo
.
17
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
23
class SystemZSelectionDAGInfo : public
TargetSelectionDAGInfo
{
/external/llvm/lib/Target/NVPTX/
NVPTXSubtarget.h
23
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
47
TargetSelectionDAGInfo
TSInfo;
67
const
TargetSelectionDAGInfo
*getSelectionDAGInfo() const { return &TSInfo; }
NVPTXTargetMachine.h
21
#include "llvm/Target/
TargetSelectionDAGInfo
.h"
56
const
TargetSelectionDAGInfo
*getSelectionDAGInfo() const override {
Completed in 315 milliseconds
1
2