Home
last modified time | relevance | path

Searched refs:ConstInt (Results 1 – 6 of 6) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp74 ConstantInt *ConstInt; member
77 ConstantCandidate(ConstantInt *ConstInt) in ConstantCandidate()
78 : ConstInt(ConstInt), CumulativeCost(0) { } in ConstantCandidate()
160 ConstantInt *ConstInt);
274 ConstantInt *ConstInt) { in collectConstantCandidates() argument
280 ConstInt->getValue(), ConstInt->getType()); in collectConstantCandidates()
282 Cost = TTI->getIntImmCost(Inst->getOpcode(), Idx, ConstInt->getValue(), in collectConstantCandidates()
283 ConstInt->getType()); in collectConstantCandidates()
289 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0)); in collectConstantCandidates()
291 ConstCandVec.push_back(ConstantCandidate(ConstInt)); in collectConstantCandidates()
[all …]
/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dexecutionengine_test.go42 If := builder.CreateICmp(IntEQ, n, ConstInt(Int32Type(), 0, false), "cmptmp")
46 res_iftrue := ConstInt(Int32Type(), 1, false)
50 n_minus := builder.CreateSub(n, ConstInt(Int32Type(), 1, false), "subtmp")
H A Dir.go763 func ConstInt(t Type, n uint64, signExtend bool) (v Value) { func
/minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp784 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(SrcValue2)) { in PPCEmitCmp() local
787 const APInt &CIVal = ConstInt->getValue(); in PPCEmitCmp()
1156 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(1))) { in SelectBinaryIntOp() local
1157 const APInt &CIVal = ConstInt->getValue(); in SelectBinaryIntOp()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1385 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(Src2Value)) { in ARMEmitCmp() local
1388 const APInt &CIVal = ConstInt->getValue(); in ARMEmitCmp()
1645 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(2))) { in SelectSelect() local
1647 Imm = (int)ConstInt->getValue().getZExtValue(); in SelectSelect()
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dtype-traits.cpp1161 typedef const int ConstInt; in is_standard_layout() typedef
1162 typedef ConstInt ConstIntAr[4]; in is_standard_layout()
1166 int t02[T(__is_standard_layout(ConstInt))]; in is_standard_layout()