HomeSort by relevance Sort by last modified time
    Searched refs:TargetLowering (Results 51 - 75 of 313) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/LTO/
UpdateCompilerUsed.cpp 18 #include "llvm/Target/TargetLowering.h"
72 SmallPtrSet<const TargetLowering *, 1> TLSet;
75 const TargetLowering *Lowering =
79 // TargetLowering has info on library calls that CodeGen expects to be
  /external/llvm/lib/Target/AVR/
AVRISelLowering.h 18 #include "llvm/Target/TargetLowering.h"
67 class AVRTargetLowering : public TargetLowering {
137 SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.h 21 #include "llvm/Target/TargetLowering.h"
68 class LanaiTargetLowering : public TargetLowering {
130 SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/llvm/lib/Target/Mips/
MipsCCState.cpp 76 const TargetLowering::CallLoweringInfo &CLI) {
101 std::vector<TargetLowering::ArgListEntry> &FuncArgs,
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetMachine.h 39 class TargetLowering;
122 virtual const TargetLowering *getTargetLowering() const { return 0; }
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430ISelLowering.h 20 #include "llvm/Target/TargetLowering.h"
72 class MSP430TargetLowering : public TargetLowering {
97 TargetLowering::ConstraintType
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZISelLowering.h 21 #include "llvm/Target/TargetLowering.h"
56 class SystemZTargetLowering : public TargetLowering {
71 TargetLowering::ConstraintType
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 47 class TargetLowering;
57 const TargetLowering *TLI;
ResourcePriorityQueue.h 61 const TargetLowering *TLI;
SelectionDAGISel.h 34 class TargetLowering;
57 const TargetLowering *TLI;
71 const TargetLowering *getTargetLowering() const { return TLI; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/
LanaiISelLowering.h 21 #include "llvm/CodeGen/TargetLowering.h"
68 class LanaiTargetLowering : public TargetLowering {
135 SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsCCState.cpp 134 std::vector<TargetLowering::ArgListEntry> &FuncArgs,
137 TargetLowering::ArgListEntry FuncArg = FuncArgs[Outs[i].OrigArgIndex];
MipsCCState.h 44 std::vector<TargetLowering::ArgListEntry> &FuncArgs,
92 std::vector<TargetLowering::ArgListEntry> &FuncArgs,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/
RISCVISelLowering.h 20 #include "llvm/CodeGen/TargetLowering.h"
39 class RISCVTargetLowering : public TargetLowering {
101 SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/swiftshader/third_party/subzero/src/
IceOperand.cpp 28 ShouldBePooled = TargetLowering::shouldBePooled(this);
588 template <> void ConstantInteger32::emit(TargetLowering *Target) const {
592 template <> void ConstantInteger64::emit(TargetLowering *Target) const {
596 template <> void ConstantFloat::emit(TargetLowering *Target) const {
600 template <> void ConstantDouble::emit(TargetLowering *Target) const {
604 void ConstantRelocatable::emit(TargetLowering *Target) const {
608 void ConstantRelocatable::emitWithoutPrefix(const TargetLowering *Target,
630 void ConstantUndef::emit(TargetLowering *Target) const { Target->emit(this); }
IceTargetLoweringX8632Traits.h 543 TargetLowering::RegSetMask Include,
544 TargetLowering::RegSetMask Exclude) {
550 if (scratch && (Include & ::Ice::TargetLowering::RegSet_CallerSave)) \
552 if (preserved && (Include & ::Ice::TargetLowering::RegSet_CalleeSave)) \
554 if (stackptr && (Include & ::Ice::TargetLowering::RegSet_StackPointer)) \
556 if (frameptr && (Include & ::Ice::TargetLowering::RegSet_FramePointer)) \
558 if (scratch && (Exclude & ::Ice::TargetLowering::RegSet_CallerSave)) \
560 if (preserved && (Exclude & ::Ice::TargetLowering::RegSet_CalleeSave)) \
562 if (stackptr && (Exclude & ::Ice::TargetLowering::RegSet_StackPointer)) \
564 if (frameptr && (Exclude & ::Ice::TargetLowering::RegSet_FramePointer))
    [all...]
  /external/llvm/include/llvm/CodeGen/
ResourcePriorityQueue.h 61 const TargetLowering *TLI;
SelectionDAGISel.h 32 class TargetLowering;
55 const TargetLowering *TLI;
63 const TargetLowering *getTargetLowering() const { return TLI; }
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 257 if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) {
289 TargetLowering::BooleanContent ScalarBool =
291 TargetLowering::BooleanContent VecBool = TLI.getBooleanContents(true, false);
306 ScalarBool = TargetLowering::UndefinedBooleanContent;
312 case TargetLowering::UndefinedBooleanContent:
314 case TargetLowering::ZeroOrOneBooleanContent:
315 assert(VecBool == TargetLowering::UndefinedBooleanContent ||
316 VecBool == TargetLowering::ZeroOrNegativeOneBooleanContent);
321 case TargetLowering::ZeroOrNegativeOneBooleanContent:
322 assert(VecBool == TargetLowering::UndefinedBooleanContent |
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.h 18 #include "llvm/Target/TargetLowering.h"
32 class BlackfinTargetLowering : public TargetLowering {
  /external/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcISelLowering.h 18 #include "llvm/Target/TargetLowering.h"
44 class SparcTargetLowering : public TargetLowering {
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 20 #include "llvm/Target/TargetLowering.h"
91 // TargetLowering Implementation
93 class XCoreTargetLowering : public TargetLowering
99 using TargetLowering::isZExtFree;
215 LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
SelectionDAGISel.h 31 class TargetLowering;
44 const TargetLowering &TLI;
59 const TargetLowering &getTargetLowering() { return TLI; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 20 #include "llvm/CodeGen/TargetLowering.h"
70 class MSP430TargetLowering : public TargetLowering {
100 TargetLowering::ConstraintType
158 LowerCall(TargetLowering::CallLoweringInfo &CLI,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreISelLowering.h 20 #include "llvm/CodeGen/TargetLowering.h"
91 // TargetLowering Implementation
93 class XCoreTargetLowering : public TargetLowering
99 using TargetLowering::isZExtFree;
216 LowerCall(TargetLowering::CallLoweringInfo &CLI,

Completed in 197 milliseconds

1 23 4 5 6 7 8 91011>>