/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/ |
D | CSEMIRBuilder.cpp | 213 if (std::optional<APInt> Cst = ConstantFoldBinOp( in buildInstr() local 233 if (std::optional<APFloat> Cst = ConstantFoldFPBinOp( in buildInstr() local 254 if (std::optional<APFloat> Cst = ConstantFoldIntToFloat( in buildInstr() local
|
D | CombinerHelper.cpp | 1331 MachineInstr &MI, std::optional<APFloat> &Cst) { in matchCombineConstantFoldFpUnary() 1340 MachineInstr &MI, std::optional<APFloat> &Cst) { in applyCombineConstantFoldFpUnary() 2107 APInt Cst; in matchCombineConstPtrAddToI2P() local 2421 auto Cst = in matchConstantSelectCmp() local 2975 int64_t Cst, bool IsVector, bool IsFP) { in isConstValidTrue() 3040 int64_t Cst; in matchNotCmp() local 3992 auto Cst = getIConstantVRegValWithLookThrough(MI.getOperand(2).getReg(), MRI); in matchExtractVecEltBuildVec() local 4064 auto Cst = getIConstantVRegVal(II.getOperand(2).getReg(), MRI); in matchExtractAllEltsFromBuildVector() local 4761 auto Cst = getIConstantVRegValWithLookThrough(AndRHS, MRI); in matchNarrowBinopFeedingAnd() local
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | MIPatternMatch.h | 93 inline ConstantMatch<APInt> m_ICst(APInt &Cst) { in m_ICst() 96 inline ConstantMatch<int64_t> m_ICst(int64_t &Cst) { in m_ICst() 134 inline ICstOrSplatMatch<APInt> m_ICstOrSplat(APInt &Cst) { in m_ICstOrSplat() 138 inline ICstOrSplatMatch<int64_t> m_ICstOrSplat(int64_t &Cst) { in m_ICstOrSplat()
|
D | Utils.h | 353 int64_t Cst; variable 359 explicit RegOrConstant(int64_t Cst) : Cst(Cst), IsReg(false) {} in RegOrConstant()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/MC/ |
D | MCValue.h | 38 int64_t Cst = 0; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64PromoteConstant.cpp | 258 static bool shouldConvertUse(const Constant *Cst, const Instruction *Instr, in shouldConvertUse() 324 static bool shouldConvertImpl(const Constant *Cst) { in shouldConvertImpl() 551 Constant *Cst = dyn_cast<Constant>(U); in runOnFunction() local
|
D | AArch64StackTagging.cpp | 135 uint64_t Cst = 0x0101010101010101UL; in applyMemSet() local
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/ |
D | AArch64PromoteConstant.cpp | 272 static bool shouldConvertUse(const Constant *Cst, const Instruction *Instr, in shouldConvertUse() 338 static bool shouldConvertImpl(const Constant *Cst) { in shouldConvertImpl() 565 Constant *Cst = dyn_cast<Constant>(U); in runOnFunction() local
|
D | AArch64StackTagging.cpp | 157 uint64_t Cst = 0x0101010101010101UL; in applyMemSet() local
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64PromoteConstant.cpp | 250 static bool shouldConvertUse(const Constant *Cst, const Instruction *Instr, in shouldConvertUse() 316 static bool shouldConvertImpl(const Constant *Cst) { in shouldConvertImpl() 543 Constant *Cst = dyn_cast<Constant>(U); in runOnFunction() local
|
D | AArch64AddressTypePromotion.cpp | 321 if (const ConstantInt *Cst = dyn_cast<ConstantInt>(Opnd)) { in propagateSignExtension() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCValue.h | 41 int64_t Cst = 0; variable
|
/external/llvm/include/llvm/MC/ |
D | MCValue.h | 42 int64_t Cst; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | MIPatternMatch.h | 55 inline ConstantMatch m_ICst(int64_t &Cst) { return ConstantMatch(Cst); } in m_ICst()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/ |
D | R600ISelDAGToDAG.cpp | 70 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Addr)) { in SelectGlobalValueConstantOffset() local
|
D | R600ISelLowering.cpp | 780 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) { in isZero() local 2009 ConstantSDNode *Cst in FoldOperand() local 2016 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset); in FoldOperand() local
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/GISel/ |
D | AArch64PostLegalizerLowering.cpp | 452 auto Cst = in applyEXT() local 522 auto Cst = getAArch64VectorSplatScalar(*MI, MRI); in isVShiftRImm() local 677 auto Cst = MIB.buildConstant(MRI.cloneVirtualRegister(RHS.getReg()), in applyAdjustICmpImmAndPred() local 774 int64_t Cst = Splat->getCst(); in matchBuildVectorToDup() local
|
D | AArch64PreLegalizerCombiner.cpp | 150 auto Cst = getIConstantVRegValWithLookThrough( in matchFoldGlobalOffset() local
|
D | AArch64PostLegalizerCombiner.cpp | 60 auto Cst = getIConstantVRegValWithLookThrough(Src2, MRI); in matchExtractVecEltPairwiseAdd() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | CSEMIRBuilder.cpp | 160 if (Optional<APInt> Cst = ConstantFoldBinOp(Opc, SrcOps[0].getReg(), in buildInstr() local
|
/external/llvm/tools/llvm-c-test/ |
D | echo.cpp | 222 static LLVMValueRef clone_constant(LLVMValueRef Cst, LLVMModuleRef M) { in clone_constant() 228 static LLVMValueRef clone_constant_impl(LLVMValueRef Cst, LLVMModuleRef M) { in clone_constant_impl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600ISelLowering.cpp | 919 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) { in isZero() local 2127 ConstantSDNode *Cst in FoldOperand() local 2134 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset); in FoldOperand() local
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600ISelLowering.cpp | 1085 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) { in isZero() local 2227 ConstantSDNode *Cst in FoldOperand() local 2234 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset); in FoldOperand() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsISelLowering.h | 472 SDValue Cst = DAG.getConstant(16, DL, MVT::i32); in getAddrNonPICSym64() local
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/Mips/ |
D | MipsISelLowering.h | 462 SDValue Cst = DAG.getConstant(16, DL, MVT::i32); in getAddrNonPICSym64() local
|