Searched refs:LV (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DPHIElimination.cpp73 LiveVariables &LV, MachineLoopInfo *MLI);
121 if (LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>()) {
124 Changed |= SplitPHIEdges(MF, *I, *LV, MLI);
247 LiveVariables *LV = getAnalysisIfAvailable<LiveVariables>(); local
248 if (LV) {
252 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
255 LV->setPHIJoin(IncomingReg);
263 LV->removeVirtualRegisterKilled(IncomingReg, OldKill);
271 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
277 LV
419 SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB, LiveVariables &LV, MachineLoopInfo *MLI) argument
[all...]
H A DTwoAddressInstructionPass.cpp69 LiveVariables *LV; member in class:__anon10226::TwoAddressInstructionPass
283 // Update kill and LV information.
288 if (LV)
289 LV->replaceKillInstruction(SavedReg, KillMI, MI);
552 if (LV)
554 LV->replaceKillInstruction(RegC, MI, NewMI);
599 MachineInstr *NewMI = TII->convertToThreeAddress(mbbi, mi, LV);
725 // Bail immediately if we don't have LV available. We use it to find kills
727 if (!LV)
736 MachineInstr *KillMI = LV
[all...]
H A DMachineBasicBlock.cpp668 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>(); local
672 if (LV)
683 LV->getVarInfo(Reg).removeKill(MI)) {
716 if (LV) {
724 LV->getVarInfo(Reg).Kills.push_back(I);
730 LV->addNewBlock(NMBB, this, Succ);
H A DLiveIntervalAnalysis.cpp108 LV = &getAnalysis<LiveVariables>();
210 LiveVariables::VarInfo& vi = LV->getVarInfo(interval.reg);
254 bool PHIJoin = LV->isPHIJoin(interval.reg);
347 } else if (LV->isPHIJoin(interval.reg)) {
/macosx-10.9.5/ICU-511.35/icuSources/data/brkitr/
H A Dchar.txt71 $LV = [\p{Grapheme_Cluster_Break = LV}];
82 $L ($L | $V | $LV | $LVT);
83 ($LV | $V) ($V | $T);
117 ($L | $V | $LV | $LVT) $L;
118 ($V | $T) ($LV | $V);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DSparsePropagation.cpp56 LatticeVal LV;
60 LV = LatticeFunc->ComputeConstant(C);
62 LV = LatticeFunc->ComputeArgument(A);
65 LV = LatticeFunc->getOverdefinedVal();
68 LV = LatticeFunc->getUndefVal();
71 if (LV == LatticeFunc->getUntrackedVal())
72 return LV;
73 return ValueState[V] = LV;
H A DLazyValueInfo.cpp351 OverDefinedCacheUpdater(Value *V, BasicBlock *B, LVILatticeVal &LV, argument
353 : Parent(P), Val(V), BB(B), BBLV(LV) { }
H A DScalarEvolution.cpp486 const Value *LV = LU->getValue(), *RV = RU->getValue(); local
490 bool LIsPointer = LV->getType()->isPointerTy(),
496 unsigned LID = LV->getValueID(),
502 if (const Argument *LA = dyn_cast<Argument>(LV)) {
510 if (const Instruction *LInst = dyn_cast<Instruction>(LV)) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DSCCP.cpp379 LatticeVal &LV = I.first->second; local
382 return LV; // Common case, already in the map.
387 LV.markConstant(C); // Constants are constant
391 return LV;
405 LatticeVal &LV = I.first->second; local
408 return LV; // Common case, already in the map.
414 LV.markOverdefined(); // Unknown sort of constant.
418 LV.markConstant(Elt); // Constants are constant.
422 return LV;
1278 LatticeVal &LV local
1285 LatticeVal &LV = getValueState(I); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DSparsePropagation.h84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) { argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86InstrInfo.h207 LiveVariables *LV) const;
409 LiveVariables *LV) const;
H A DX86InstrInfo.cpp1750 LiveVariables *LV) const {
1821 if (LV && isKill2 && InsMI2)
1822 LV->replaceKillInstruction(Src2, MI, InsMI2);
1833 if (LV) {
1835 LV->getVarInfo(leaInReg).Kills.push_back(NewMI);
1836 LV->getVarInfo(leaOutReg).Kills.push_back(ExtMI);
1838 LV->replaceKillInstruction(Src, MI, InsMI);
1840 LV->replaceKillInstruction(Dest, MI, ExtMI);
1859 LiveVariables *LV) const {
1948 return is64Bit ? convertToThreeAddressWithLEA(MIOpc, MFI, MBBI, LV)
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h56 LiveVariables* LV; member in class:llvm::LiveIntervals
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMBaseInstrInfo.h47 LiveVariables *LV) const;
H A DARMBaseInstrInfo.cpp124 LiveVariables *LV) const {
237 if (LV) {
243 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
247 LV->addVirtualRegisterDead(Reg, NewMI);
255 LV->addVirtualRegisterKilled(Reg, NewMI);
/macosx-10.9.5/CPANInternal-140/Sys-Filesystem/lib/Sys/Filesystem/
H A DAix.pm101 grep { $_ !~ m/^LV\sNAME\s+/ }
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetInstrInfo.h211 MachineBasicBlock::iterator &MBBI, LiveVariables *LV) const {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DGlobalOpt.cpp934 static bool OptimizeAwayTrappingUsesOfLoads(GlobalVariable *GV, Constant *LV, argument
947 Changed |= OptimizeAwayTrappingUsesOfValue(LI, LV);
956 // Ignore the store that stores "LV" to the global.
1098 Value *LV = new LoadInst(InitBool, InitBool->getName()+".val", false, 0, local
1106 LV = ConstantInt::getFalse(GV->getContext());
1111 LV = BinaryOperator::CreateNot(LV, "notinit", ICI);
1120 ICI->replaceAllUsesWith(LV);
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Dsdx992 ��?x�=�QO�0���+e�i� {Q��h�1�A���n4����A��w;�vo�����{�\��/X��Q���0`j\�{LV�������\�SccwN���#y���h�'��^ }�z0��:'L��9���{�.01E���a$}0��D��T�/�grWZ����q$�� O�x��r)J��Hr���[g$�%9gV�D�M�Y�_��������e��&:%������ZJ�A��hM2(�=���di�4�eeE��6;������� ��� ���S�S����.����w�_������a�oS PG%Y�~0��x��;�w�6�?G��V��$;��^�M�ll7���_�f�����EP��"u$e�U���� ����;�� `03���vw�WQ2�g���.��bDy1(&1��p���Jdbr%S�q0?�Mf���oI�"���E�& �m��������I�^�x�!E��e ��b������2z^�3����|e2��;�g4�V��<����I:�P~�L���kG�� ��Q����z�]=����M�����:� �H���A��)��v!I ������$� *���\&NQ�>���d`�f@�X�2�"]NfP�$L���I�C�s�C�������vq����-�x@�00���pJ�����+d���a���`Y(`����]y��+�|�f"�+1���f�&���@��X�\���/��\���T� nd��y0���H��q�� �JQ�D����2���������,� ���I�$�&�Xwh�? `�.$"K#>���a4]"�.���L$9� #q��|9�1�1�gR4�W &q��j~�d��p \����tr}��X��z���m bQ�n/_�KX��`�K�� r6f'|�'6�}�u�X��9<�������F�?�_l�?�pT�A\��{<�&opK>�<�]����@�c(P3�E47S����D(��LN���{������5�(2�� ��� ��
1082 ���8At,���������z������\�LV/'���:��� ^x��XmsG� ���P@�IvR�M��g;���r��.�q��;�Z�����"�o��{��E� %�2��LO��=={Bo�l����R��]�|�rpuqqAW~2x�y��_Q��J�w�������0H���O�'t������,��EzO��������n��"�*Z��� ��i@a��~��=m�)���g��l��i^�����bp��6[��P�`��}�o�������A��k�#c)��](��zI�������2���dN3�.e7�h3�j�Vm> ��gg[���������]���W��8�C2��%U��a[B�1�m������_0�f<W�@#�~(}��.v-�W�g� D�����S�(M ��1���w<�6�����:S���y�{�j�&���6V��V~���_*/o=O�%����t����=7~Q{������x�8$6c��w6�'�����}daGW�z��g�����%^�4�b�mC���������}�P��<�M���P3���}���!��D����_dvC�:!�����e�D�y�_d�OH-3DK%V���Ih ^�����������7"��?��� ��*����S�U��-�� +�?9@� u):#T�%v�����,�f�b��RbS��$=�?����8���F�gg�"�wi��Gib2��� �eT)�����4���4��>�B�!zd�������l��T����,(ypS%����Oc�n��I�����S�O��|A�r�K��I�q�pu9�1�M���� ���v����}���.���
/macosx-10.9.5/emacs-92/emacs/leim/ja-dic/
H A Dja-dic.el11181 "$B$*$*$($I$=$&$5$b$&(B $BBg9>8MA\::LV(B"
12282 "$B$*$a$,$b$&(B $B%*%a%,LV(B"
12774 "$B$+$$$;$s$b$&(B $B2s@~LV(B"
12955 "$B$+$$$m$b$&(B $B2sO)LV(B"
15016 "$B$+$s$=$/$b$&(B $B4QB,LV(B"
15414 "$B$,$/$8$g$&$b$&(B $B3X=Q>pJs%;%s%?!<LV(B $B3X>pLV(B"
20139 "$B$3$"$_(B $B>.LV(B"
20501 "$B$3$&$=$/$F$D$I$&$b$&(B $B9bB.E4F;LV(B"
22886 "$B$5$7$"$_(B $B;I$7LV(B"
[all...]

Completed in 428 milliseconds