| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 256 list<bit> Const = [0, 1, 0]; 452 Attr.Const>; 456 Attr.Const>; 466 def : Builtin<"get_work_dim", [UInt], Attr.Const>; 470 def : Builtin<name, [Size, UInt], Attr.Const>; 501 def : Builtin<name, [FGenTypeN, FGenTypeN], Attr.Const>; 504 def : Builtin<name, [GenTypeFloatVecAndScalar, GenTypeUIntVecAndScalar], Attr.Const>; 505 def : Builtin<name, [GenTypeDoubleVecAndScalar, GenTypeULongVecAndScalar], Attr.Const>; 506 def : Builtin<name, [GenTypeHalfVecAndScalar, GenTypeUShortVecAndScalar], Attr.Const>; 513 def : Builtin<name, [FGenTypeN, FGenTypeN, FGenTypeN], Attr.Const>; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTDC.cpp | 132 auto *Const = dyn_cast<ConstantFP>(I.getOperand(1)); in convertFCmp() local 135 if (!Const) in convertFCmp() 144 if (Const->isZero()) { in convertFCmp() 147 } else if (Const->isInfinity()) { in convertFCmp() 149 WhichConst = Const->isNegative() ? 2 : 1; in convertFCmp() 150 } else if (Const->isExactlyValue(Smallest)) { in convertFCmp() 156 } else if (Const->isExactlyValue(NegSmallest)) { in convertFCmp() 242 auto *Const = dyn_cast<ConstantInt>(I.getOperand(1)); in convertICmp() local 245 if (!Const) in convertICmp() 255 if (Pred == CmpInst::ICMP_SLT && Const->isZero()) { in convertICmp() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeDbgValue.h | 55 return u.Const; in getConst() 79 static SDDbgOperand fromConst(const Value *Const) { in fromConst() argument 80 return SDDbgOperand(Const); in fromConst() 107 const Value *Const; ///< Valid for constants. member 118 SDDbgOperand(const Value *C) : kind(CONST) { u.Const = C; } in SDDbgOperand()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | SCCP.cpp | 104 Constant *Const = nullptr; in tryToReplaceWithConstant() local 118 Const = ConstantStruct::get(ST, ConstVals); in tryToReplaceWithConstant() 124 Const = in tryToReplaceWithConstant() 127 assert(Const && "Constant is nullptr here!"); in tryToReplaceWithConstant() 147 LLVM_DEBUG(dbgs() << " Constant: " << *Const << " = " << *V << '\n'); in tryToReplaceWithConstant() 150 V->replaceAllUsesWith(Const); in tryToReplaceWithConstant()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 359 if (auto *Const = dyn_cast<ConstantInt>(CI->getOperand(0))) in isSafeWrap() local 360 ICmpConst = Const; in isSafeWrap() 361 else if (auto *Const = dyn_cast<ConstantInt>(CI->getOperand(1))) in isSafeWrap() local 362 ICmpConst = Const; in isSafeWrap() 464 auto Const = cast<ConstantInt>(I->getOperand(1)); in PrepareWrappingAdds() local 465 auto *NewConst = ConstantInt::get(Ctx, Const->getValue().abs()); in PrepareWrappingAdds() 538 if (auto *Const = dyn_cast<ConstantInt>(Op)) { in PromoteTree() local 539 Constant *NewConst = ConstantExpr::getZExt(Const, ExtTy); in PromoteTree()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | MachineIRBuilder.cpp | 263 auto Const = buildInstr(TargetOpcode::G_CONSTANT) in buildConstant() local 266 return buildSplatVector(Res, Const); in buildConstant() 269 auto Const = buildInstr(TargetOpcode::G_CONSTANT); in buildConstant() local 270 Const->setDebugLoc(DebugLoc()); in buildConstant() 271 Res.addDefToMIB(*getMRI(), Const); in buildConstant() 272 Const.addCImm(&Val); in buildConstant() 273 return Const; in buildConstant() 296 auto Const = buildInstr(TargetOpcode::G_FCONSTANT) in buildFConstant() local 300 return buildSplatVector(Res, Const); in buildFConstant() 303 auto Const = buildInstr(TargetOpcode::G_FCONSTANT); in buildFConstant() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/ |
| H A D | cxx_proto.proto | 25 message Const { message 54 Const cons = 2;
|
| H A D | cxx_loop_proto.proto | 21 message Const { message 57 Const cons = 1;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | RecordName.cpp | 197 if (Mods & uint16_t(ModifierOptions::Const)) in visitKnownRecord() 326 ConstantSym Const(SymbolKind::S_CONSTANT); in getSymbolName() local 328 cantFail(Mapping.visitKnownRecord(Sym, Const)); in getSymbolName() 330 return Const.Name; in getSymbolName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 558 ConstantAggregateBuilder &Const, CharUnits Offset, 623 ConstantAggregateBuilder &Const, in EmitDesignatedInitUpdater() argument 627 return ConstStructBuilder::UpdateStruct(Emitter, Const, Offset, Updater); in EmitDesignatedInitUpdater() 653 if (!Const.add(FillC, Offset, true)) in EmitDesignatedInitUpdater() 658 if (!EmitDesignatedInitUpdater(Emitter, Const, Offset, ElemType, in EmitDesignatedInitUpdater() 662 Const.condense(Offset, ElemTy); in EmitDesignatedInitUpdater() 665 if (!Const.add(Val, Offset, true)) in EmitDesignatedInitUpdater() 862 ConstantAggregateBuilder Const(Emitter.CGM); in BuildStruct() local 863 ConstStructBuilder Builder(Emitter, Const, CharUnits::Zero()); in BuildStruct() 874 ConstantAggregateBuilder Const(Emitter.CGM); in BuildStruct() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64PostLegalizerCombiner.cpp | 131 auto Const = getConstantVRegValWithLookThrough(RHS, MRI); in matchAArch64MulConstCombine() local 132 if (!Const) in matchAArch64MulConstCombine() 135 const APInt ConstValue = Const->Value.sextOrSelf(Ty.getSizeInBits()); in matchAArch64MulConstCombine()
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangSyntaxEmitter.cpp | 222 for (const char *Const : {"", "const "}) in EmitClangSyntaxNodeClasses() 227 Role, Constraint.NodeType, Const); in EmitClangSyntaxNodeClasses()
|
| H A D | MveEmitter.cpp | 192 bool Const; member in __anone3a730d20111::PointerType 195 PointerType(const Type *Pointee, bool Const) in PointerType() argument 196 : Type(TypeKind::Pointer), Pointee(Pointee), Const(Const) {} in PointerType() 208 if (Const) in cName() 1018 const PointerType *getPointerType(const Type *T, bool Const) { in getPointerType() argument 1019 PointerType PT(T, Const); in getPointerType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | MVEGatherScatterLowering.cpp | 333 Optional<int64_t> Const; in getVarAndConst() local 335 if ((Const = getIfConst(Add->getOperand(0)))) in getVarAndConst() 337 else if ((Const = getIfConst(Add->getOperand(1)))) in getVarAndConst() 343 int64_t Immediate = Const.getValue() << TypeScale; in getVarAndConst() 1041 ConstantInt *Const; in CheckAndCreateOffsetAdd() local 1042 if ((Const = dyn_cast<ConstantInt>(NonVectorVal)) && in CheckAndCreateOffsetAdd() 1045 uint64_t N = Const->getZExtValue(); in CheckAndCreateOffsetAdd()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| H A D | llvm_ocaml.c | 880 value llvm_int64_of_const(LLVMValueRef Const) { in llvm_int64_of_const() argument 881 if (!(LLVMIsAConstantInt(Const)) || in llvm_int64_of_const() 882 !(LLVMGetIntTypeWidth(LLVMTypeOf(Const)) <= 64)) in llvm_int64_of_const() 884 return caml_alloc_some(caml_copy_int64(LLVMConstIntGetSExtValue(Const))); in llvm_int64_of_const() 899 value llvm_float_of_const(LLVMValueRef Const) { in llvm_float_of_const() argument 902 if (!LLVMIsAConstantFP(Const)) in llvm_float_of_const() 904 Result = LLVMConstRealGetDouble(Const, &LosesInfo); in llvm_float_of_const() 963 value llvm_string_of_const(LLVMValueRef Const) { in llvm_string_of_const() argument 966 if (!LLVMIsAConstantDataSequential(Const) || !LLVMIsConstantString(Const)) in llvm_string_of_const() 968 CStr = LLVMGetAsString(Const, &Len); in llvm_string_of_const() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeBuiltin.cpp | 35 return (Mods & ModifierOptions::Const) != ModifierOptions::None; in isConstType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/models/inliner/ |
| H A D | saved_model.pbtxt | 6 name: "Const" 620 name: "Const" 621 op: "Const" 1379 input: "Const" 1809 op: "Const" 2942 op: "Const" 3064 op: "Const" 3135 op: "Const" 4268 op: "Const" 4390 op: "Const" [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeView.h | 301 Const = 0x0001, enumerator 361 Const = 0x00000400, enumerator
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 815 Const, // A constant value contained in the MachineOperand field. enumerator 836 assert(Kind == Const); in DbgValue() 846 if (Kind == Const) { in dump() 871 else if (Kind == Const) in operator ==() 930 DbgValue Rec = DbgValue(MO, Properties, DbgValue::Const); in defVar() 1083 if (Var.second.Kind == DbgValue::Const) { in loadInlocs() 2502 if (InValue.Kind == DbgValue::Const || InValue.Kind == DbgValue::NoVal) in vlocDowngradeLattice() 2554 if (OutVal.Kind == DbgValue::Const || OutVal.Kind == DbgValue::NoVal) in pickVPHILoc() 2742 if (V.second->Kind == DbgValue::Const && FirstVal.Kind != DbgValue::Const) in vlocJoin()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/ |
| H A D | loop_proto_to_cxx.cpp | 46 std::ostream &operator<<(std::ostream &os, const Const &x) { in operator <<()
|
| H A D | proto_to_cxx.cpp | 26 std::ostream &operator<<(std::ostream &os, const Const &x) { in operator <<()
|
| /netbsd-src/external/gpl3/gdb.old/dist/zlib/old/ |
| H A D | visual-basic.txt | 84 Private Const SUCCESS As Long = 0 85 Private Const strFilExt As String = ".cpr"
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/old/ |
| H A D | visual-basic.txt | 84 Private Const SUCCESS As Long = 0 85 Private Const strFilExt As String = ".cpr"
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/old/ |
| H A D | visual-basic.txt | 84 Private Const SUCCESS As Long = 0 85 Private Const strFilExt As String = ".cpr"
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/old/ |
| H A D | visual-basic.txt | 84 Private Const SUCCESS As Long = 0 85 Private Const strFilExt As String = ".cpr"
|