Searched refs:ByteStart (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 214 static Constant *ExtractConstantBytes(Constant *C, unsigned ByteStart, in ExtractConstantBytes() argument 221 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes() 227 if (ByteStart) in ExtractConstantBytes() 228 V.lshrInPlace(ByteStart*8); in ExtractConstantBytes() 241 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes() 250 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes() 256 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes() 264 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes() 280 if (ShAmt.uge(CSize - ByteStart)) in ExtractConstantBytes() 284 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes() [all …]
|