HomeSort by relevance Sort by last modified time
    Searched defs:TLI (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 42 /// TLI - The target library info if known, otherwise null.
43 const TargetLibraryInfo *TLI;
49 : Addr(addr), DL(DL), TLI(nullptr) {
LazyValueInfo.h 30 class TargetLibraryInfo *TLI;
MemoryBuiltins.h 39 bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
44 bool isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI,
49 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
54 bool isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
59 bool isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
64 bool isReallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
69 bool isOperatorNewLikeFn(const Value *V, const TargetLibraryInfo *TLI,
79 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
81 const TargetLibraryInfo *TLI) {
82 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI));
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 36 const TargetLowering &TLI = *DAG.getTarget().getTargetLowering();
39 Entry.Ty = TLI.getDataLayout()->getIntPtrType(*DAG.getContext());
46 .setCallee(TLI.getLibcallCallingConv(RTLIB::MEMCPY),
48 DAG.getExternalSymbol("__memcpy_4", TLI.getPointerTy()),
52 std::pair<SDValue,SDValue> CallResult = TLI.LowerCallTo(CLI);
  /external/llvm/lib/CodeGen/
ExpandISelPseudos.cpp 49 const TargetLowering *TLI = MF.getTarget().getTargetLowering();
62 TLI->EmitInstrWithCustomInserter(MI, MBB);
DwarfEHPrepare.cpp 121 const TargetLowering *TLI = TM->getTargetLowering();
126 const char *RewindName = TLI->getLibcallName(RTLIB::UNWIND_RESUME);
143 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
170 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 35 const TargetLowering *TLI;
LegalizeTypes.h 35 const TargetLowering &TLI;
67 return TLI.getTypeAction(*DAG.getContext(), VT);
72 return TLI.getTypeAction(*DAG.getContext(), VT) == TargetLowering::TypeLegal;
76 return TLI.getSetCCResultType(*DAG.getContext(), VT);
123 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
124 ValueTypeActions(TLI.getValueTypeActions()) {
    [all...]
SelectionDAGDumper.cpp 45 const TargetLowering &TLI = G->getTargetLoweringInfo();
46 const char *Name = TLI.getTargetNodeName(getOpcode());
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 38 const AArch64TargetLowering &TLI =
42 EVT IntPtr = TLI.getPointerTy();
56 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
AArch64TargetTransformInfo.cpp 41 const AArch64TargetLowering *TLI;
48 AArch64TTI() : ImmutablePass(ID), TM(nullptr), ST(nullptr), TLI(nullptr) {
54 TLI(TM->getTargetLowering()) {
297 int ISD = TLI->InstructionOpcodeToISD(Opcode);
300 EVT SrcTy = TLI->getValueType(Src);
301 EVT DstTy = TLI->getValueType(Dst);
384 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Val);
407 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Ty);
409 int ISD = TLI->InstructionOpcodeToISD(Opcode);
444 int ISD = TLI->InstructionOpcodeToISD(Opcode)
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUTargetTransformInfo.cpp 42 const AMDGPUTargetLowering *TLI;
49 AMDGPUTTI() : ImmutablePass(ID), TM(nullptr), ST(nullptr), TLI(nullptr) {
55 TLI(TM->getTargetLowering()) {
  /external/llvm/lib/Transforms/Scalar/
ConstantProp.cpp 73 TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
80 if (Constant *C = ConstantFoldInstruction(I, DL, TLI)) {
PartiallyInlineLibCalls.cpp 63 TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
80 !TLI->getLibFunc(CalledFunc->getName(), LibFunc))
LoopInstSimplify.cpp 78 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
119 Value *V = SimplifyInstruction(I, DL, TLI, DT);
130 bool res = RecursivelyDeleteTriviallyDeadInstructions(I, TLI);
  /external/llvm/include/llvm/CodeGen/
StackProtector.h 53 /// TLI - Keep a pointer of a TargetLowering to consult for determining
55 const TargetLoweringBase *TLI;
109 : FunctionPass(ID), TM(nullptr), TLI(nullptr), SSPBufferSize(0) {
113 : FunctionPass(ID), TM(TM), TLI(nullptr), Trip(TM->getTargetTriple()),
FastISel.h 60 const TargetLowering &TLI;
ResourcePriorityQueue.h 61 const TargetLowering *TLI;
  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 54 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
71 if (Value *V = SimplifyInstruction(I, DL, TLI, DT)) {
79 bool res = RecursivelyDeleteTriviallyDeadInstructions(I, TLI);
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 159 const ARMTargetLowering &TLI =
165 Type *IntPtrTy = TLI.getDataLayout()->getIntPtrType(*DAG.getContext());
191 .setCallee(TLI.getLibcallCallingConv(RTLIB::MEMSET),
193 DAG.getExternalSymbol(TLI.getLibcallName(RTLIB::MEMSET),
194 TLI.getPointerTy()), std::move(Args), 0)
197 std::pair<SDValue,SDValue> CallResult = TLI.LowerCallTo(CLI);
  /external/llvm/tools/opt/
opt.cpp 440 TargetLibraryInfo *TLI = new TargetLibraryInfo(Triple(M->getTargetTriple()));
444 TLI->disableAllFunctions();
445 Passes.add(TLI);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 42 const PPCTargetLowering *TLI;
45 PPCTTI() : ImmutablePass(ID), ST(nullptr), TLI(nullptr) {
51 TLI(TM->getTargetLowering()) {
324 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
337 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
351 int ISD = TLI->InstructionOpcodeToISD(Opcode);
385 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Src);
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 90 TargetLibraryInfo *TLI;
119 TargetLibraryInfo *getTargetLibraryInfo() const { return TLI; }
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 58 const TargetLibraryInfo *TLI;
169 TLI = &getAnalysis<TargetLibraryInfo>();
174 ObjectSizeOffsetEvaluator TheObjSizeEval(DL, TLI, F.getContext(),
  /external/llvm/tools/llc/
llc.cpp 314 TargetLibraryInfo *TLI = new TargetLibraryInfo(TheTriple);
316 TLI->disableAllFunctions();
317 PM.add(TLI);

Completed in 255 milliseconds

1 2 3 4