Searched defs:IVal (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/MBlaze/
H A DMBlazeMCInstLower.cpp156 APInt IVal = FVal.bitcastToAPInt(); local
157 uint64_t Val = *IVal.getRawData();
/external/clang/lib/Rewrite/
H A DDeltaTree.cpp364 const SourceDelta &IVal = N->getValue(i); local
367 assert(IN->getValue(i-1).FileLoc < IVal.FileLoc);
368 FullDelta += IVal.Delta;
373 IVal.FileLoc);
376 assert(IN->getChild(i+1)->getValue(0).FileLoc > IVal.FileLoc);
/external/llvm/lib/TableGen/
H A DTGParser.cpp352 TypedInit *IVal = dynamic_cast<TypedInit *>(i->IterValue); local
353 if (IVal == 0) {
358 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false));
361 std::vector<unsigned>(), IVal)) {
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp591 Value *IVal = cast<StoreInst>(I)->getValueOperand(); local
592 T1 = IVal->getType();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6788 /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6790 /// store with a narrower store of truncated IVal.
6793 SDValue IVal, StoreSDNode *St,
6799 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6801 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6803 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
6812 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6815 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal
6792 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, SDValue IVal, StoreSDNode *St, DAGCombiner *DC) argument
[all...]

Completed in 1113 milliseconds