HomeSort by relevance Sort by last modified time
    Searched refs:isInt (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/llvm/lib/Target/Mips/
Mips16RegisterInfo.cpp 132 if (!MI.isDebugValue() && ( ((FrameReg != Mips::SP) && !isInt<16>(Offset)) ||
133 ((FrameReg == Mips::SP) && !isInt<15>(Offset)) )) {
Mips16InstrInfo.h 90 return ((offset & 7) == 0) && isInt<11>(offset);
MipsSERegisterInfo.cpp 108 if (!MI.isDebugValue() && !isInt<16>(Offset)) {
MipsAnalyzeImmediate.cpp 96 if (!isInt<16>(ShiftedImm))
Mips16InstrInfo.cpp 186 if (isInt<16>(-Remainder))
227 if (isInt<16>(Remainder))
300 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
MipsSEFrameLowering.cpp 249 return isInt<16>(MFI->getMaxCallFrameSize()) && !MFI->hasVarSizedObjects();
291 if (isInt<16>(MaxSPOffset))
Mips16FrameLowering.cpp 166 return isInt<15>(MFI->getMaxCallFrameSize()) && !MFI->hasVarSizedObjects();
Mips16ISelDAGToDAG.cpp 180 if (isInt<16>(CN->getSExtValue())) {
  /external/llvm/include/llvm/Support/
MathExtras.h 39 /// isInt - Checks if an integer fits into the given bit width.
41 inline bool isInt(int64_t x) {
46 inline bool isInt<8>(int64_t x) {
50 inline bool isInt<16>(int64_t x) {
54 inline bool isInt<32>(int64_t x) {
62 return isInt<N+S>(x) && (x % (1<<S) == 0);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 50 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
60 bool isOne() const { return isInt() && IntVal == 1; }
61 bool isTwo() const { return isInt() && IntVal == 2; }
62 bool isMinusOne() const { return isInt() && IntVal == -1; }
63 bool isMinusTwo() const { return isInt() && IntVal == -2; }
80 bool isInt() const { return !IsFp; }
199 if (isInt()) {
210 if (That.isInt())
218 if (isInt() == That.isInt()) {
    [all...]
  /external/clang/test/PCH/
cxx-templates.h 88 bool isInt(int x);
90 template<> bool isInt<8>(int x) {
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 134 if (isInt<10>(BranchSize)) {
  /external/webkit/Source/WebCore/css/
CSSParserValues.cpp 71 else if (unit == CSSPrimitiveValue::CSS_NUMBER && isInt)
CSSParserValues.h 46 bool isInt;
CSSGrammar.y 640 PERCENTAGE { $$.id = 0; $$.isInt = false; $$.fValue = $1; $$.unit = CSSPrimitiveValue::CSS_NUMBER; }
642 $$.id = 0; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_NUMBER;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 86 if (isInt<13>(CN->getSExtValue())) {
122 if (isInt<13>(CN->getSExtValue()))
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 405 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
407 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
421 } else if (isInt<16>(NegFrameSize)) {
439 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
441 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
454 } else if (isInt<16>(NegFrameSize)) {
651 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
665 } else if (isInt<16>(FrameSize) &&
675 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
689 } else if (isInt<16>(FrameSize) && TargetAlign >= MaxAlign &
    [all...]
PPCBranchSelector.cpp 143 if (isInt<16>(BranchSize)) {
PPCRegisterInfo.cpp 212 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
488 isInt<16>(Offset) && (!isIXAddr || (Offset & 3) == 0))) {
PPCISelDAGToDAG.cpp 488 if (isInt<16>((int)Imm))
529 if (isInt<16>(Imm))
    [all...]
  /external/clang/include/clang/AST/
APValue.h 176 bool isInt() const { return Kind == Int; }
195 assert(isInt() && "Invalid accessor");
342 assert(isInt() && "Invalid accessor");
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 581 if (!isInt<8>(InitV) || !isInt<8>(EndV))
584 if (!isInt<16>(InitV) || !isInt<16>(EndV))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 115 bool isInt() const { return EntryKind == E_Integer; }
  /external/clang/lib/AST/
ExprConstant.cpp 656 bool IsInt;
664 void makeComplexFloat() { IsInt = false; }
665 bool isComplexFloat() const { return !IsInt; }
669 void makeComplexInt() { IsInt = true; }
670 bool isComplexInt() const { return IsInt; }
    [all...]
  /external/llvm/lib/Target/R600/
AMDILISelDAGToDAG.cpp 587 && isInt<16>(IMMOffset->getZExtValue())) {
594 && isInt<16>(IMMOffset->getZExtValue())) {

Completed in 898 milliseconds

1 2 3