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

/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DResultType.h43 static const Type TypeBits = TypeMaybeNumber | TypeMaybeString | TypeMaybeNull | TypeMaybeBool | TypeMaybeOther; member in struct:JSC::ResultType
57 return (m_type & TypeBits) == TypeMaybeNumber;
62 return (m_type & TypeBits) == TypeMaybeString;
67 return (m_type & TypeBits) == TypeMaybeBool;
112 return ResultType(TypeBits);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp331 uint32_t TypeBits = Op0->getType()->getScalarSizeInBits(); local
336 if (Op1->uge(TypeBits)) {
340 I.setOperand(1, ConstantInt::get(I.getType(), TypeBits-1));
424 uint32_t Op1Val = Op1->getLimitedValue(TypeBits);
426 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val)));
457 uint32_t Op1Val = Op1->getLimitedValue(TypeBits);
459 APInt::getHighBitsSet(TypeBits, TypeBits-Op1Val)));
510 isValid = Op0C->getValue()[TypeBits
[all...]
H A DInstCombineCompares.cpp937 uint32_t TypeBits = CmpRHSV.getBitWidth(); local
938 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
939 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
952 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
959 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
1007 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
1270 uint32_t TypeBits = RHSV.getBitWidth(); local
1275 if (ShAmt->uge(TypeBits))
1299 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp943 static APInt ReadWideAPInt(ArrayRef<uint64_t> Vals, unsigned TypeBits) { argument
948 return APInt(TypeBits, Words);

Completed in 151 milliseconds