| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| H A D | IndirectionUtils.cpp | 261 bool Promoted = true; in operator ()() local 271 Promoted = false; in operator ()() 276 Promoted = true; in operator ()() 280 if (Promoted) in operator ()()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorOps.cpp | 696 SDValue Promoted, Chain; in PromoteFP_TO_INT() local 698 Promoted = DAG.getNode(NewOpc, dl, {NVT, MVT::Other}, in PromoteFP_TO_INT() 700 Chain = Promoted.getValue(1); in PromoteFP_TO_INT() 702 Promoted = DAG.getNode(NewOpc, dl, NVT, Node->getOperand(0)); in PromoteFP_TO_INT() 713 Promoted = DAG.getNode(NewOpc, dl, NVT, Promoted, in PromoteFP_TO_INT() 715 Promoted = DAG.getNode(ISD::TRUNCATE, dl, VT, Promoted); in PromoteFP_TO_INT() 716 Results.push_back(Promoted); in PromoteFP_TO_INT()
|
| H A D | LegalizeFloatTypes.cpp | 919 static RTLIB::Libcall findFPToIntLibcall(EVT SrcVT, EVT RetVT, EVT &Promoted, in findFPToIntLibcall() argument 925 Promoted = (MVT::SimpleValueType)IntVT; in findFPToIntLibcall() 927 if (Promoted.bitsGE(RetVT)) in findFPToIntLibcall() 928 LC = Signed ? RTLIB::getFPTOSINT(SrcVT, Promoted) in findFPToIntLibcall() 929 : RTLIB::getFPTOUINT(SrcVT, Promoted); in findFPToIntLibcall() 2102 SDValue Promoted = GetPromotedFloat(N->getOperand(0)); in PromoteFloatOp_BITCAST() local 2103 EVT PromotedVT = Promoted->getValueType(0); in PromoteFloatOp_BITCAST() 2108 IVT, Promoted); in PromoteFloatOp_BITCAST() 2180 SDValue Promoted = GetPromotedFloat(Val); in PromoteFloatOp_STORE() local 2185 NewVal = DAG.getNode(GetPromotionOpcode(Promoted.getValueType(), VT), DL, in PromoteFloatOp_STORE() [all …]
|
| H A D | LegalizeIntegerTypes.cpp | 4846 SDValue Promoted; in PromoteIntRes_EXTEND_VECTOR_INREG() local 4850 Promoted = SExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG() 4853 Promoted = ZExtPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG() 4856 Promoted = GetPromotedInteger(N->getOperand(0)); in PromoteIntRes_EXTEND_VECTOR_INREG() 4861 return DAG.getNode(N->getOpcode(), dl, NVT, Promoted); in PromoteIntRes_EXTEND_VECTOR_INREG()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 119 SmallPtrSet<Value*, 8> Promoted; member in __anon7086da680111::IRPromoter 514 Promoted.insert(V); in ExtendSources() 548 Promoted.insert(I); in PromoteTree() 562 if ((!Promoted.count(V) && !NewInsts.count(V)) || Sources.count(V)) in TruncateSinks()
|
| H A D | CodeGenPrepare.cpp | 5695 bool Promoted = false; in tryToPromoteExts() local 5781 Promoted = true; in tryToPromoteExts() 5783 return Promoted; in tryToPromoteExts() 6251 bool Promoted = false; in performAddressTypePromotion() local 6271 Promoted = true; in performAddressTypePromotion() 6301 Promoted = true; in performAddressTypePromotion() 6309 return Promoted; in performAddressTypePromotion()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 281 unsigned Promoted = 0; in run() local 306 Promoted++; in run() 307 if (Promoted >= MaxProm) in run() 315 LLVM_DEBUG(dbgs() << Promoted << " counters promoted for loop (depth=" in run() 317 return Promoted != 0; in run()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 451 bool Promoted = false; in runOnLoop() local 470 Promoted |= promoteLoopAccessesToScalars( in runOnLoop() 487 Promoted |= LocalPromoted; in runOnLoop() 497 if (Promoted) in runOnLoop() 500 Changed |= Promoted; in runOnLoop()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | traits.d | 7332 template Promoted(T) 7335 alias Promoted = CopyTypeQualifiers!(T, typeof(T.init + T.init)); 7342 static assert(is(typeof(a * b) == Promoted!ubyte)); 7343 static assert(is(Promoted!ubyte == int)); 7345 static assert(is(Promoted!(shared(bool)) == shared(int))); 7346 static assert(is(Promoted!(const(int)) == const(int))); 7347 static assert(is(Promoted!double == double)); 7355 static assert(is(Promoted!T == int)); 7356 static assert(is(Promoted!(shared(const T)) == shared(const int))); 7362 static assert(is(Promoted!T == T)); [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | traits.d | 8246 template Promoted(T) 8249 alias Promoted = CopyTypeQualifiers!(T, typeof(T.init + T.init)); 8256 static assert(is(typeof(a * b) == Promoted!ubyte)); 8257 static assert(is(Promoted!ubyte == int)); 8259 static assert(is(Promoted!(shared(bool)) == shared(int))); 8260 static assert(is(Promoted!(const(int)) == const(int))); 8261 static assert(is(Promoted!double == double)); 8269 static assert(is(Promoted!T == int)); 8270 static assert(is(Promoted!(shared(const T)) == shared(const int))); 8276 static assert(is(Promoted!T == T)); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/ |
| H A D | HandleLLVMOptions.cmake | 618 # Promoted warnings. 621 # Promoted warnings to errors.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | SILoadStoreOptimizer.cpp | 246 SmallPtrSet<MachineInstr *, 4> &Promoted) const;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 8065 llvm::Value *Promoted = CGF.Builder.CreateLoad(Addr); in EmitVAArg() local 8070 llvm::Value *V = CGF.Builder.CreateTrunc(Promoted, IntTy); in EmitVAArg()
|
| /netbsd-src/external/gpl3/autoconf/dist/ |
| H A D | ChangeLog.2 | 9304 * acgeneral.m4 (AC_HAVE_LIB): Promoted from obsolete to hasbeen. 9364 AC_LONG_64_BITS): Promoted from obsolete to hasbeen.
|
| H A D | ChangeLog.3 | 23003 * doc/autoconf.texi (Portable Shell Programming): Promoted as a
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | rtl.texi | 875 Promoted variables are always either sign- or zero-extended to the wider
|
| H A D | gccint.info | 16605 object. Promoted variables are always either sign- or
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | rtl.texi | 876 Promoted variables are always either sign- or zero-extended to the wider
|
| H A D | gccint.info | 17007 object. Promoted variables are always either sign- or
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | ChangeLog-2007 | 9490 (last_mode_for_init_move_cost): Promoted function-local static to
|