Searched defs:TF (Results 1 - 18 of 18) sorted by relevance

/external/strace/tests/
H A Dksysent.c32 #define TF 0 macro
/external/clang/test/CXX/special/class.dtor/
H A Dp3-0x.cpp97 struct TF { struct
99 ~TF();
102 TF<T>::~TF() noexcept(false) {}
121 TF<int> f;
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp301 SparcMCExpr::VariantKind TF = (SparcMCExpr::VariantKind) MO.getTargetFlags(); local
307 assert(TF == SparcMCExpr::VK_Sparc_None &&
310 assert((TF == SparcMCExpr::VK_Sparc_HI
311 || TF == SparcMCExpr::VK_Sparc_H44
312 || TF == SparcMCExpr::VK_Sparc_HH
313 || TF == SparcMCExpr::VK_Sparc_TLS_GD_HI22
314 || TF == SparcMCExpr::VK_Sparc_TLS_LDM_HI22
315 || TF == SparcMCExpr::VK_Sparc_TLS_LDO_HIX22
316 || TF == SparcMCExpr::VK_Sparc_TLS_IE_HI22
317 || TF
[all...]
H A DSparcISelLowering.cpp956 unsigned TF = ((getTargetMachine().getRelocationModel() == Reloc::PIC_) local
959 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i32, 0, TF);
961 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32, TF);
1270 unsigned TF = ((getTargetMachine().getRelocationModel() == Reloc::PIC_)
1273 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), DL, PtrVT, 0, TF); local
1275 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), PtrVT, TF);
1860 SDValue SparcTargetLowering::withTargetFlags(SDValue Op, unsigned TF, argument
1866 GA->getOffset(), TF);
1872 CP->getOffset(), TF);
1878 TF);
[all...]
/external/llvm/lib/CodeGen/
H A DMIRPrinter.cpp659 static const char *getTargetFlagName(const TargetInstrInfo *TII, unsigned TF) { argument
662 if (I.first == TF) {
H A DMachineInstr.cpp452 if (unsigned TF = getTargetFlags())
453 OS << "[TF=" << TF << ']'; local
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp521 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); local
524 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
530 ChainResult = TF;
586 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), local
590 ChainResult = TF;
H A DLegalizeVectorOps.cpp693 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); local
694 AddLegalizedOperand(Op, TF);
695 return TF;
H A DSelectionDAG.cpp6722 EVT VT, int64_t o, unsigned char TF)
6723 : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
6869 // If this is a token factor, all inputs to the TF happen in parallel. If any
6870 // of the operands of the TF does not reach dest, then we cannot do the xform.
6720 GlobalAddressSDNode(unsigned Opc, unsigned Order, DebugLoc DL, const GlobalValue *GA, EVT VT, int64_t o, unsigned char TF) argument
H A DDAGCombiner.cpp1557 SDNode *TF = TFs[i]; local
1560 for (const SDValue &Op : TF->op_values()) {
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp178 unsigned TF = MO.getTargetFlags(); local
197 if (TF == ARMII::MO_LO16)
199 else if (TF == ARMII::MO_HI16)
209 if (TF & ARMII::MO_LO16)
211 else if (TF & ARMII::MO_HI16)
213 GetARMGVSymbol(GV, TF)->print(O, MAI);
216 if (TF == ARMII::MO_PLT)
923 unsigned char TF = Subtarget->isTargetMachO() ? ARMII::MO_NONLAZY : 0; local
924 MCSym = GetARMGVSymbol(GV, TF);
1365 const unsigned TF local
1381 unsigned TF = MI->getOperand(1).getTargetFlags(); local
1414 unsigned TF = MI->getOperand(2).getTargetFlags(); local
[all...]
H A DARMExpandPseudoInsts.cpp714 unsigned TF = MO.getTargetFlags(); local
715 LO16 = LO16.addExternalSymbol(ES, TF | ARMII::MO_LO16);
716 HI16 = HI16.addExternalSymbol(ES, TF | ARMII::MO_HI16);
721 unsigned TF = MO.getTargetFlags(); local
722 LO16 = LO16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_LO16);
723 HI16 = HI16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_HI16);
1078 unsigned TF = MO1.getTargetFlags(); local
1082 unsigned LO16TF = TF | ARMII::MO_LO16;
1083 unsigned HI16TF = TF | ARMII::MO_HI16;
1089 .addGlobalAddress(GV, MO1.getOffset(), TF | LO16T
[all...]
H A DARMFastISel.cpp599 unsigned char TF = 0; local
601 TF = ARMII::MO_NONLAZY;
612 TII.get(Opc), DestReg).addGlobalAddress(GV, 0, TF));
/external/strace/
H A Dsyscall.c74 #define TF TRACE_FILE macro
108 #undef TF macro
/external/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1441 unsigned TF = 0; local
1450 if (getDirectTargetFlag(Token.stringValue(), TF)) {
1451 if (getBitmaskTargetFlag(Token.stringValue(), TF))
1465 TF |= BitFlag;
1478 Dest.setTargetFlags(TF);
/external/opencv/cv/src/
H A Dcvfundam.cpp797 CvMat U, F0, TF; local
876 W = U = V = TF = F0;
880 TF.data.db = v + 27;
886 cvGEMM( &U, &W, 1., 0, 0., &TF, CV_GEMM_A_T );
887 cvGEMM( &TF, &V, 1., 0, 0., &F0, 0/*CV_GEMM_B_T*/ );
900 cvGEMM( &T1, &F0, 1., 0, 0., &TF, CV_GEMM_A_T );
902 cvGEMM( &TF, &T0, 1., 0, 0., &F0, 0 );
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1374 unsigned char TF = (RM == Reloc::PIC_) ? HexagonII::MO_PCREL : 0; local
1378 T = DAG.getTargetConstantPool(CPN->getMachineCPVal(), ValTy, Align, TF);
1380 T = DAG.getTargetConstantPool(CPN->getConstVal(), ValTy, Align, TF);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp6283 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, local
6285 assert(TF.getNode() != NewResChain.getNode() &&
6286 "A new TF really is required here");
6288 DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
6289 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
7699 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); local
7704 SDValue RetOps[] = { Value, Vals[0].getValue(1), TF };
7708 SDValue RetOps[] = { Value, TF };
7794 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); local
7797 SDValue RetOps[] = { TF, Store
10395 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, local
[all...]

Completed in 913 milliseconds