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

/external/llvm/lib/VMCore/
H A DConstantFold.cpp184 /// its bytes used. The bytes used are indicated by ByteStart (which is the
192 static Constant *ExtractConstantBytes(Constant *C, unsigned ByteStart, argument
199 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
205 if (ByteStart)
206 V = V.lshr(ByteStart*8);
219 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
228 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
234 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
242 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
258 if (ByteStart >
[all...]

Completed in 45 milliseconds