| /netbsd-src/external/apache2/llvm/dist/llvm/utils/ |
| H A D | llvm.grm | 224 ConstVal::= Types "[" ^ ConstVector ^ "]" 245 ConstExpr::= CastOps "(" ^ ConstVal to Types ^ ")" 246 | getelementptr OptInBounds "(" ^ ConstVal IndexList ^ ")" 247 | select "(" ^ ConstVal ^ "," ConstVal ^ "," ConstVal ^ ")" 248 | ArithmeticOps "(" ^ ConstVal ^ "," ConstVal ^ ")" 249 | LogicalOps "(" ^ ConstVal ^ "," ConstVal ^ ")" 250 | icmp IPredicates "(" ^ ConstVal ^ "," ConstVal ^ ")" 251 | fcmp FPredicates "(" ^ ConstVal ^ "," ConstVal ^ ")" 252 | extractelement "(" ^ ConstVal ^ "," ConstVal ^ ")" 253 | insertelement "(" ^ ConstVal ^ "," ConstVal ^ "," ConstVal ^ ")" [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | ValueLattice.h | 87 Constant *ConstVal; member 160 ConstVal = Other.ConstVal; in ValueLatticeElement() 179 ConstVal = Other.ConstVal; in ValueLatticeElement() 258 return ConstVal; in getConstant() 263 return ConstVal; in getNotConstant() 318 ConstVal = V; 338 ConstVal = V; in markNotConstant()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | MachineConstantPool.h | 71 const Constant *ConstVal; member 82 Val.ConstVal = V; in MachineConstantPoolEntry()
|
| H A D | SelectionDAGNodes.h | 1816 const Constant *ConstVal; 1829 Val.ConstVal = c; 1849 return Val.ConstVal;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | CallSiteSplitting.cpp | 170 Constant *ConstVal = cast<Constant>(Cond.first->getOperand(1)); in addConditions() local 172 setConstantInArgument(CB, Arg, ConstVal); in addConditions() 173 else if (ConstVal->getType()->isPointerTy() && ConstVal->isNullValue()) { in addConditions()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineSSAUpdater.cpp | 199 if (unsigned ConstVal = InsertedPHI->isConstantValuePHI()) { in GetValueInMiddleOfBlock() local 201 return ConstVal; in GetValueInMiddleOfBlock()
|
| H A D | MachineFunction.cpp | 1116 return DL.getTypeAllocSize(Val.ConstVal->getType()); in getSizeInBytes() 1122 return Val.ConstVal->needsDynamicRelocation(); in needsRelocation() 1212 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, DL)) { in getConstantPoolIndex() 1248 Constants[i].Val.ConstVal->printAsOperand(OS, /*PrintType=*/false); in print()
|
| H A D | MIRPrinter.cpp | 537 Constant.Val.ConstVal->printAsOperand(StrOS); in convert()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | Utils.h | 371 std::function<bool(const Constant *ConstVal)> Match,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUInstructionSelector.cpp | 142 Optional<ValueAndVReg> ConstVal = in selectCOPY() local 144 if (ConstVal) { in selectCOPY() 148 .addImm(ConstVal->Value.getBoolValue() ? -1 : 0); in selectCOPY() 831 Optional<ValueAndVReg> ConstVal = in selectWritelane() local 836 if (ConstVal && AMDGPU::isInlinableLiteral32(ConstVal->Value.getSExtValue(), in selectWritelane() 838 MIB.addImm(ConstVal->Value.getSExtValue()); in selectWritelane()
|
| H A D | AMDGPULegalizerInfo.cpp | 2673 auto ConstVal = getConstantVRegSExtVal(MI.getOperand(2).getReg(), MRI); in isNot() local 2674 return ConstVal && *ConstVal == -1; in isNot()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroSplit.cpp | 1070 auto *ConstVal = ConstantArray::get(ArrTy, Args); in setCoroInfo() local 1071 auto *GV = new GlobalVariable(*M, ConstVal->getType(), /*isConstant=*/true, in setCoroInfo() 1072 GlobalVariable::PrivateLinkage, ConstVal, in setCoroInfo()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2436 llvm::APSInt ConstVal(Context.getTypeSize(Context.getSizeType())); in BuildArrayType() local 2451 checkArraySize(*this, ArraySize, ConstVal, VLADiag, VLAIsError); in BuildArrayType() 2473 if (ConstVal.isSigned() && ConstVal.isNegative()) { in BuildArrayType() 2484 if (ConstVal == 0) { in BuildArrayType() 2497 ? ConstantArrayType::getNumAddressingBits(Context, T, ConstVal) in BuildArrayType() 2498 : ConstVal.getActiveBits(); in BuildArrayType() 2501 << ConstVal.toString(10) << ArraySize->getSourceRange(); in BuildArrayType() 2505 T = Context.getConstantArrayType(T, ConstVal, ArraySize, ASM, Quals); in BuildArrayType()
|
| H A D | SemaInit.cpp | 204 llvm::APInt ConstVal(32, StrLength); in CheckStringInit() local 207 ConstVal, nullptr, in CheckStringInit()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 5300 Constant *ConstVal = in GetCaseResults() local 5302 if (!ConstVal) in GetCaseResults() 5306 if (!ValidLookupTableConstant(ConstVal, TTI)) in GetCaseResults() 5309 Res.push_back(std::make_pair(&PHI, ConstVal)); in GetCaseResults() 5619 ConstantInt *ConstVal = dyn_cast<ConstantInt>(TableContents[I]); in SwitchLookupTable() local 5620 if (!ConstVal) { in SwitchLookupTable() 5626 const APInt &Val = ConstVal->getValue(); in SwitchLookupTable()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 2015 C = CPE.Val.ConstVal; in emitConstantPool() 2069 emitGlobalConstant(getDataLayout(), CPE.Val.ConstVal); in emitConstantPool() 3103 const Constant *C = CPE.Val.ConstVal; in GetCPISymbol()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMAsmPrinter.cpp | 1265 Offset = cast<ConstantInt>(CPE.Val.ConstVal)->getSExtValue(); in EmitUnwindingInstruction() 1678 emitGlobalConstant(DL, MCPE.Val.ConstVal); in emitInstruction()
|
| H A D | ARMBaseInstrInfo.cpp | 1878 return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal; in produceSameValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | Utils.cpp | 939 std::function<bool(const Constant *ConstVal)> Match, bool AllowUndefs) { in matchUnaryPredicate()
|
| H A D | CombinerHelper.cpp | 3281 auto ConstVal = getConstantVRegVal(MI.getOperand(1).getReg(), MRI); in matchPtrAddZero() local 3282 return ConstVal && *ConstVal == 0; in matchPtrAddZero()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsAsmPrinter.cpp | 231 emitGlobalConstant(MF->getDataLayout(), MCPE.Val.ConstVal); in emitInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86MCInstLower.cpp | 1787 return ConstantEntry.Val.ConstVal; in getConstantFromPool()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 3588 llvm::APInt ConstVal(32, 1); in collectVarDeclProps() local 3591 T = CGM.getContext().getConstantArrayType(ET, ConstVal, nullptr, in collectVarDeclProps()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 16897 int64_t ConstVal = CI->getZExtValue(); in isMaskAndCmp0FoldingBeneficial() local 16898 return isUInt<16>(ConstVal) || in isMaskAndCmp0FoldingBeneficial() 16899 (isUInt<16>(ConstVal >> 16) && !(ConstVal & 0xFFFF)); in isMaskAndCmp0FoldingBeneficial()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 9187 if (auto *ConstVal = dyn_cast<ConstantSDNode>(SplatVal)) { in LowerSPLAT_VECTOR() local 9188 if (ConstVal->isOne()) in LowerSPLAT_VECTOR() 9488 uint64_t &ConstVal) { in isAllConstantBuildVector() argument 9500 ConstVal = FirstElt->getZExtValue(); in isAllConstantBuildVector()
|