Searched refs:TF (Results 1 - 22 of 22) sorted by relevance

/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-types.h42 typedef long double XF, TF; typedef
H A Dia64-opc-i.c173 #define TF(a,b,c) \ macro
177 {"tf.z", TF (0, 0, 0)},
179 {"tf.z.unc", TF (0, 0, 1)},
181 {"tf.z.and", TF (0, 1, 0)},
183 {"tf.nz.and", TF (0, 1, 1)},
185 {"tf.z.or", TF (1, 0, 0)},
187 {"tf.nz.or", TF (1, 0, 1)},
189 {"tf.z.or.andcm", TF (1, 1, 0)},
191 {"tf.nz.or.andcm", TF (1, 1, 1)},
193 #undef TF macro
[all...]
H A Dcgen-ops.h320 SI SUBWORDTFSI (TF, int);
432 SUBWORDTFSI (TF in, int word)
434 /* Note: typedef struct { SI parts[4]; } TF; */
435 union { TF in; SI out[4]; } x;
/macosx-10.10/file_cmds-242/pax/
H A Doptions.h70 #define TF 0x00002000 macro
110 #define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CPF|CXF)
113 #define BDLIST (AF|BF|IF|KF|LF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
H A Doptions.c390 flg |= TF;
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp395 if (unsigned int TF = GADN->getTargetFlags())
396 OS << " [TF=" << TF << ']'; local
401 if (unsigned int TF = JTDN->getTargetFlags())
402 OS << " [TF=" << TF << ']'; local
413 if (unsigned int TF = CP->getTargetFlags())
414 OS << " [TF=" << TF << ']'; local
417 if (unsigned TF
418 OS << " [TF=" << TF << ']'; local
431 OS << " [TF=" << TF << ']'; local
489 OS << " [TF=" << TF << ']'; local
[all...]
H A DLegalizeVectorOps.cpp436 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, local
438 AddLegalizedOperand(Op, TF);
439 return TF;
H A DLegalizeDAG.cpp497 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0], local
501 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
506 ChainResult = TF;
557 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), local
561 ChainResult = TF;
H A DSelectionDAG.cpp5777 EVT VT, int64_t o, unsigned char TF)
5778 : SDNode(Opc, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
5916 // If this is a token factor, all inputs to the TF happen in parallel. If any
5917 // of the operands of the TF does not reach dest, then we cannot do the xform.
5775 GlobalAddressSDNode(unsigned Opc, DebugLoc DL, const GlobalValue *GA, EVT VT, int64_t o, unsigned char TF) argument
H A DDAGCombiner.cpp1275 SDNode *TF = TFs[i]; local
1278 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
1279 SDValue Op = TF->getOperand(i);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1270 JumpTableSDNode(int jti, EVT VT, bool isTarg, unsigned char TF) argument
1272 DebugLoc(), getSDVTList(VT)), JTI(jti), TargetFlags(TF) {
1296 unsigned Align, unsigned char TF)
1299 getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1304 EVT VT, int o, unsigned Align, unsigned char TF)
1307 getSDVTList(VT)), Offset(o), Alignment(Align), TargetFlags(TF) {
1355 TargetIndexSDNode(int Idx, EVT VT, int64_t Ofs, unsigned char TF) argument
1357 TargetFlags(TF), Index(Idx), Offset(Ofs) {}
1528 ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned char TF, EVT VT) argument
1530 DebugLoc(), getSDVTList(VT)), Symbol(Sym), TargetFlags(TF) {
1295 ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o, unsigned Align, unsigned char TF) argument
1303 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v, EVT VT, int o, unsigned Align, unsigned char TF) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/ARM/
H A DARMAsmPrinter.cpp334 unsigned TF = MO.getTargetFlags(); local
349 (TF == ARMII::MO_LO16))
352 (TF == ARMII::MO_HI16))
363 (TF & ARMII::MO_LO16))
366 (TF & ARMII::MO_HI16))
371 if (TF == ARMII::MO_PLT)
377 if (TF == ARMII::MO_PLT)
1427 unsigned TF = MI->getOperand(1).getTargetFlags(); local
1428 bool isPIC = TF == ARMII::MO_LO16_NONLAZY_PIC;
1465 unsigned TF local
[all...]
H A DARMExpandPseudoInsts.cpp669 unsigned TF = MO.getTargetFlags(); local
670 LO16 = LO16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_LO16);
671 HI16 = HI16.addGlobalAddress(GV, MO.getOffset(), TF | ARMII::MO_HI16);
895 unsigned TF = MO1.getTargetFlags(); local
909 .addGlobalAddress(GV, MO1.getOffset(), TF | LO16TF)
914 .addGlobalAddress(GV, MO1.getOffset(), TF | HI16TF)
/macosx-10.10/vim-55/runtime/lang/
H A Dmenu_eo.utf-8.vim431 menutrans TF\ mud\ client TF\ (client\ MUD)
H A Dmenu_fi_fi.latin1.vim300 menutrans TF\ mud\ client TF\ (client\ MUD)
H A Dmenu_fr_fr.latin1.vim442 menutrans TF\ mud\ client TF\ (client\ MUD)
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineInstr.cpp382 if (unsigned TF = getTargetFlags())
383 OS << "[TF=" << TF << ']'; local
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_specification.rb842 @a1.test_files = "TF"
847 assert_equal %w[E ERF F TF bin/X], @a1.files.sort
852 @a1.instance_variable_set :@test_files, "TF"
857 assert_equal %w[E ERF F TF bin/X], @a1.files.sort
/macosx-10.10/vim-55/runtime/
H A Dmakemenu.vim538 SynMenu T.TF\ mud\ client:tf
H A Dsynmenu.vim510 an 50.130.270 &Syntax.T.TF\ mud\ client :cal SetSyn("tf")<CR>
H A Dfiletype.vim2086 " TF mud client
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/
H A DX86ISelLowering.cpp15331 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], local
15352 return DCI.CombineTo(N, Shuff, TF, true);

Completed in 513 milliseconds