Searched refs:IsInt (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptStmt.h | 138 bool IsInt; variable 142 IntOrString(uint32_t Value) : Data(Value), IsInt(true) {} in IntOrString() 143 IntOrString(RCInt Value) : Data(Value), IsInt(true) {} in IntOrString() 144 IntOrString(StringRef Value) : Data(Value), IsInt(false) {} in IntOrString() 146 : Data(Token), IsInt(Token.kind() == RCToken::Kind::Int) {} in IntOrString() 149 return !IsInt && Data.String.equals_insensitive(Str); in equalsLower() 152 bool isInt() const { return IsInt; } in isInt() 155 assert(IsInt); in getInt() 160 assert(!IsInt); in getString()
|
| H A D | ResourceScriptStmt.cpp | 20 if (Item.IsInt) in operator <<()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUInstructions.td | 611 multiclass noret_binary_atomic_op<SDNode atomic_op, bit IsInt = 1> { 613 defm "_noret" : binary_atomic_op<atomic_op, IsInt>; 621 multiclass binary_atomic_op_all_as<SDNode atomic_op, bit IsInt = 1> { 624 defm "_"#as : binary_atomic_op<atomic_op, IsInt>; 625 defm "_"#as : noret_binary_atomic_op<atomic_op, IsInt>;
|
| H A D | SIInstrInfo.td | 743 bit IsInt = 1> { 751 defm _local_m0 : binary_atomic_op <!cast<SDNode>(NAME#"_glue"), IsInt>; 753 IsInt>; 757 defm _region_m0 : binary_atomic_op <!cast<SDNode>(NAME#"_glue"), IsInt>; 759 IsInt>;
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3379 auto IsInt = [&Ctx](unsigned N) { in isValidStructGUID() local 3417 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T); in isValidStructGUID()
|
| H A D | ExprConstant.cpp | 1510 bool IsInt; member 1518 void makeComplexFloat() { IsInt = false; } in makeComplexFloat() 1519 bool isComplexFloat() const { return !IsInt; } in isComplexFloat() 1523 void makeComplexInt() { IsInt = true; } in makeComplexInt() 1524 bool isComplexInt() const { return IsInt; } in isComplexInt()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Target/ |
| H A D | TargetSelectionDAG.td | 1581 multiclass binary_atomic_op<SDNode atomic_op, bit IsInt = 1> { 1585 let MemoryVT = !if(IsInt, i8, ?); 1590 let MemoryVT = !if(IsInt, i16, f16); 1595 let MemoryVT = !if(IsInt, i32, f32); 1600 let MemoryVT = !if(IsInt, i64, f64);
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 11067 bool IsInt = Ty->isIntegralOrEnumerationType(); in detectFPCCEligibleStructHelper() local 11070 if (IsInt || IsFloat) { in detectFPCCEligibleStructHelper() 11072 if (IsInt && Size > XLen) in detectFPCCEligibleStructHelper() 11081 if (IsInt && Field1Ty && Field1Ty->isIntegerTy()) in detectFPCCEligibleStructHelper() 11841 bool IsInt = Ty->isIntegralOrEnumerationType(); in detectFARsEligibleStructHelper() local 11844 if (IsInt || IsFloat) { in detectFARsEligibleStructHelper() 11846 if (IsInt && Size > GRLen) in detectFARsEligibleStructHelper() 11855 if (IsInt && Field1Ty && Field1Ty->isIntegerTy()) in detectFARsEligibleStructHelper()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CombinerHelper.cpp | 3001 bool IsInt = false; in matchNotCmp() local 3016 IsInt = true; in matchNotCmp() 3020 if (IsInt) in matchNotCmp()
|