Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 2468) sorted by relevance

12345678910>>...99

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h59 Value *simplifyAddInst(Value *LHS, Value *RHS, bool IsNSW, bool IsNUW,
71 Value *simplifySDivInst(Value *LHS, Value *RHS, bool IsExact,
75 Value *simplifyUDivInst(Value *LHS, Value *RHS, bool IsExact,
113 Value *simplifyFMAFMul(Value *LHS, Value *RHS, FastMathFlags FMF,
137 Value *simplifyLShrInst(Value *Op0, Value *Op1, bool IsExact,
141 Value *simplifyAShrInst(Value *Op0, Value *Op1, bool IsExact,
162 Value *simplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
174 Value *simplifyInsertElementInst(Value *Vec, Value *Elt, Value *Idx,
182 Value *simplifyExtractElementInst(Value *Vec, Value *Idx,
209 Value *simplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
[all …]
H A DInstSimplifyFolder.h55 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp()
60 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp()
65 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF()
75 Value *FoldICmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldICmp()
79 Value *FoldGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList,
84 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect()
88 Value *FoldExtractValue(Value *Agg, in FoldExtractValue()
93 Value *FoldInsertValue(Value *Agg, Value *Val, in FoldInsertValue()
98 Value *FoldExtractElement(Value *Vec, Value *Idx) const override { in FoldExtractElement()
102 Value *FoldInsertElement(Value *Vec, Value *NewElt, in FoldInsertElement()
[all …]
H A DValueTracking.h45 class Value; variable
572 Value *isBytewiseValue(Value *V, const DataLayout &DL);
580 Value *FindInsertedValue(Value *V, ArrayRef<unsigned> idx_range,
592 Value *Base =
598 inline const Value *
681 inline Value *getUnderlyingObject(Value *V, unsigned MaxLookup = 6) {
978 bool impliesPoison(const Value *ValAssumedPoison, const Value *V);
1074 SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS,
1080 Value *L = const_cast<Value *>(LHS); in matchSelectPattern()
1081 Value *R = const_cast<Value *>(RHS); in matchSelectPattern()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h101 Value *emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilderBase &B,
116 Value *emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
121 Value *emitStpNCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
126 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
131 Value *emitMemPCpy(Value *Dst, Value *Src, Value *Len, IRBuilderBase &B,
136 Value *emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilderBase &B,
140 Value *emitMemRChr(Value *Ptr, Value *Val, Value *Len, IRBuilderBase &B,
148 Value *emitBCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilderBase &B,
152 Value *emitMemCCpy(Value *Ptr1, Value *Ptr2, Value *Val, Value *Len,
156 Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt,
[all …]
H A DSimplifyLibCalls.h23 class Value; variable
52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
111 function_ref<void(Instruction *, Value *)> Replacer;
197 Value *optimizePow(CallInst *CI, IRBuilderBase &B);
202 Value *optimizeLog(CallInst *CI, IRBuilderBase &B);
205 Value *optimizeTan(CallInst *CI, IRBuilderBase &B);
211 Value *optimizeFFS(CallInst *CI, IRBuilderBase &B);
212 Value *optimizeFls(CallInst *CI, IRBuilderBase &B);
213 Value *optimizeAbs(CallInst *CI, IRBuilderBase &B);
232 Value* emitSnPrintfMemCpy(CallInst *CI, Value *StrArg, StringRef Str,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h45 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber()
48 HexNumber(signed int Value) : Value(static_cast<unsigned int>(Value)) {} in HexNumber()
52 HexNumber(unsigned char Value) : Value(Value) {} in HexNumber()
53 HexNumber(unsigned short Value) : Value(Value) {} in HexNumber()
54 HexNumber(unsigned int Value) : Value(Value) {} in HexNumber()
55 HexNumber(unsigned long Value) : Value(Value) {} in HexNumber()
56 HexNumber(unsigned long long Value) : Value(Value) {} in HexNumber()
78 : Name(Name), Value(Value) {} in FlagEntry()
95 if (EnumItem.Value == Value) in enumToString()
147 if (EnumItem.Value == Value) { in printEnum()
[all …]
H A DLEB128.h30 Value >>= 7;
59 Value >>= 7;
85 Value >>= 7;
90 } while (Value != 0);
110 Value >>= 7;
135 uint64_t Value = 0; variable
141 Value = 0;
150 Value = 0;
158 return Value;
169 int64_t Value = 0; variable
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilderFolder.h35 virtual Value *FoldBinOp(Instruction::BinaryOps Opc, Value *LHS,
48 virtual Value *FoldUnOpFMF(Instruction::UnaryOps Opc, Value *V,
51 virtual Value *FoldICmp(CmpInst::Predicate P, Value *LHS,
54 virtual Value *FoldGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList,
57 virtual Value *FoldSelect(Value *C, Value *True, Value *False) const = 0;
59 virtual Value *FoldExtractValue(Value *Agg,
62 virtual Value *FoldInsertValue(Value *Agg, Value *Val,
65 virtual Value *FoldExtractElement(Value *Vec, Value *Idx) const = 0;
67 virtual Value *FoldInsertElement(Value *Vec, Value *NewElt,
70 virtual Value *FoldShuffleVector(Value *V1, Value *V2,
[all …]
H A DIRBuilder.h1527 Value *CreateFAdd(Value *L, Value *R, const Twine &Name = "",
1554 Value *CreateFSub(Value *L, Value *R, const Twine &Name = "",
1581 Value *CreateFMul(Value *L, Value *R, const Twine &Name = "",
1608 Value *CreateFDiv(Value *L, Value *R, const Twine &Name = "",
1635 Value *CreateFRem(Value *L, Value *R, const Twine &Name = "",
1982 Value *CreateInBoundsPtrAdd(Value *Ptr, Value *Offset,
2436 Value *CreateSelect(Value *C, Value *True, Value *False,
2443 Value *CreateExtractElement(Value *Vec, Value *Idx,
2465 Value *CreateInsertElement(Value *Vec, Value *NewElt, Value *Idx,
2477 Value *CreateShuffleVector(Value *V1, Value *V2, Value *Mask,
[all …]
H A DNoFolder.h53 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp()
58 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp()
63 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF()
73 Value *FoldICmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldICmp()
77 Value *FoldGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList,
82 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect()
86 Value *FoldExtractValue(Value *Agg, in FoldExtractValue()
91 Value *FoldInsertValue(Value *Agg, Value *Val, in FoldInsertValue()
96 Value *FoldExtractElement(Value *Vec, Value *Idx) const override { in FoldExtractElement()
100 Value *FoldInsertElement(Value *Vec, Value *NewElt, in FoldInsertElement()
[all …]
H A DValue.h74 class Value {
126 friend class Value; variable
172 friend class Value; variable
225 Value(const Value &) = delete;
226 Value &operator=(const Value &) = delete;
666 return const_cast<Value *>(static_cast<const Value *>(this) in stripPointerCastsSameRepresentation()
678 return const_cast<Value *>(static_cast<const Value *>(this) in stripPointerCastsForAliasAnalysis()
724 function_ref<bool(Value &Value, APInt &Offset)> ExternalAnalysis =
751 const Value *stripInBoundsOffsets(function_ref<void(const Value *)> Func =
753 inline Value *stripInBoundsOffsets(function_ref<void(const Value *)> Func =
[all …]
H A DValueHandle.h69 Value *operator=(Value *RHS) {
119 static void ValueIsRAUWd(Value *Old, Value *New);
153 Value *operator=(Value *RHS) {
213 Value *operator=(Value *RHS) {
271 Value *ThePtr;
276 static Value *GetAsValue(Value *V) { return V; }
277 static Value *GetAsValue(const Value *V) { return const_cast<Value*>(V); }
356 static Value *GetAsValue(Value *V) { return V; }
357 static Value *GetAsValue(const Value *V) { return const_cast<Value*>(V); }
453 static Value *GetAsValue(Value *V) { return V; }
[all …]
H A DFixedPointBuilder.h35 Value *Convert(Value *Src, const FixedPointSemantics &SrcSema, in Convert()
166 Value *CreateIntegerToFixed(Value *Src, unsigned SrcIsSigned, in CreateIntegerToFixed()
176 Value *Result; in CreateFixedToFloating()
228 Value *CreateAdd(Value *LHS, const FixedPointSemantics &LHSSema, in CreateAdd()
236 Value *Result; in CreateAdd()
254 Value *CreateSub(Value *LHS, const FixedPointSemantics &LHSSema, in CreateSub()
262 Value *Result; in CreateSub()
343 Value *CreateShl(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShl()
364 Value *CreateShr(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShr()
375 Value *CreateEQ(Value *LHS, const FixedPointSemantics &LHSSema, in CreateEQ()
[all …]
H A DConstantFolder.h55 Value *FoldExactBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldExactBinOp()
68 Value *FoldNoWrapBinOp(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldNoWrapBinOp()
86 Value *FoldBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, in FoldBinOpFMF()
98 Value *FoldICmp(CmpInst::Predicate P, Value *LHS, Value *RHS) const override { in FoldICmp()
106 Value *FoldGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList,
124 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect()
133 Value *FoldExtractValue(Value *Agg, in FoldExtractValue()
140 Value *FoldInsertValue(Value *Agg, Value *Val, in FoldInsertValue()
149 Value *FoldExtractElement(Value *Vec, Value *Idx) const override { in FoldExtractElement()
157 Value *FoldInsertElement(Value *Vec, Value *NewElt, in FoldInsertElement()
[all …]
H A DInstructions.h522 void Init(Value *Ptr, Value *Cmp, Value *NewVal, Align Align,
538 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, Align Alignment,
542 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, Align Alignment,
1702 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1710 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1718 void init(Value *C, Value *S1, Value *S2) {
1732 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1742 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1901 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1991 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp125 Value &= 0x7f; in fixup_7_pcrel()
151 Value = ((Value & 0x20) << 8) | ((Value & 0x18) << 7) | (Value & 0x07); in fixup_6()
163 Value = ((Value & 0x30) << 2) | (Value & 0x0f); in fixup_6_adiw()
176 Value <<= 3; in fixup_port5()
187 Value = ((Value & 0x30) << 5) | (Value & 0x0f); in fixup_port6()
197 Value = ((Value & 0x70) << 8) | (Value & 0x0f); in fixup_lds_sts_16()
202 static void pm(uint64_t &Value) { Value >>= 1; } in pm() argument
220 static void neg(uint64_t &Value) { Value *= -1; } in neg() argument
230 Value = (Value & 0xff00) >> 8; in hi8()
236 Value = (Value & 0xff0000) >> 16; in hh8()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DGOFF.h65 Value = (Value >> (8 - BitIndex - Length)) & ((1 << Length) - 1); in getBits()
106 uint8_t Value; in getSymbolType() local
128 uint8_t Value; in getNameSpaceId() local
134 uint8_t Value; in getFillBytePresent() local
140 uint8_t Value; in getNameMangled() local
146 uint8_t Value; in getRenamable() local
152 uint8_t Value; in getRemovable() local
170 uint8_t Value; in getAmode() local
176 uint8_t Value; in getRmode() local
182 uint8_t Value; in getTextStyle() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSwitch.h91 return Case(S0, Value).Case(S1, Value); in Cases()
96 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
101 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
106 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
112 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
118 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
164 return CaseLower(S0, Value).CaseLower(S1, Value); in CasesLower()
169 return CaseLower(S0, Value).CasesLower(S1, S2, Value); in CasesLower()
174 return CaseLower(S0, Value).CasesLower(S1, S2, S3, Value); in CasesLower()
179 return CaseLower(S0, Value).CasesLower(S1, S2, S3, S4, Value); in CasesLower()
[all …]
H A DAny.h45 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl()
47 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl()
55 T Value; member
88 Any(T &&Value) { in Any() argument
139 assert(Value.isa<T>() && "Bad any cast!"); in any_cast()
143 template <class T> T any_cast(Any &Value) { in any_cast() argument
144 assert(Value.isa<T>() && "Bad any cast!"); in any_cast()
155 if (!Value || !Value->isa<U>()) in any_cast()
157 return &static_cast<Any::StorageImpl<U> &>(*Value->Storage).Value; in any_cast()
162 if (!Value || !Value->isa<U>()) in any_cast()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp530 Value = -Value; in adjustFixupValue()
551 Value = -Value; in adjustFixupValue()
566 Value = -Value; in adjustFixupValue()
591 Value = Value - 4; in adjustFixupValue()
615 Value = Value - 4; in adjustFixupValue()
761 Value = -Value; in adjustFixupValue()
769 Value = (Value & 0xf) | ((Value & 0xf0) << 4); in adjustFixupValue()
778 Value = Value - 4; in adjustFixupValue()
781 Value = -Value; in adjustFixupValue()
805 Value = Value - 4; in adjustFixupValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp154 if (Value >= 0) in mapEncodedInteger()
159 if (Value >= 0) { in mapEncodedInteger()
170 Value = N.getExtValue(); in mapEncodedInteger()
196 if (Value.isSigned()) in mapEncodedInteger()
201 if (Value.isSigned()) in mapEncodedInteger()
203 Value.isSingleWord() ? Value.getSExtValue() : INT64_MIN); in mapEncodedInteger()
212 auto NullTerminatedString = StringRef(Value.data(), Value.size() + 1); in mapStringZ()
260 for (auto V : Value) { in mapStringZVectorZ()
272 Value.push_back(S); in mapStringZVectorZ()
285 if (Value < LF_NUMERIC && Value >= 0) { in emitEncodedSignedInteger()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp34 Value = evaluateMIPS64Relocation(Section, RE.Offset, Value, RE.RelType, in evaluateRelocation()
36 return Value; in evaluateRelocation()
67 return Value; in evaluateMIPS32Relocation()
69 return Value; in evaluateMIPS32Relocation()
71 return Value >> 2; in evaluateMIPS32Relocation()
76 return Value; in evaluateMIPS32Relocation()
132 return Value + Addend; in evaluateMIPS64Relocation()
157 Value += Addend; in evaluateMIPS64Relocation()
159 Value = (Value + 0x8000) & ~0xffff; in evaluateMIPS64Relocation()
308 Value += Addend; in resolveMIPSO32Relocation()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/
H A DXtensaInstPrinter.cpp146 assert((Value >= -262144 && Value <= -4) && in printL32RTarget()
150 O << Value; in printL32RTarget()
173 assert((isInt<16>(Value) && ((Value & 0xFF) == 0)) && in printImm8_sh8_AsmOperand()
185 assert((Value >= -2048 && Value <= 2047) && in printImm12_AsmOperand()
196 assert((Value >= -2048 && Value <= 2047) && in printImm12m_AsmOperand()
227 assert((Value >= 1 && Value <= 31) && in printShimm1_31_AsmOperand()
238 assert((Value >= 1 && Value <= 16) && in printImm1_16_AsmOperand()
249 assert((Value >= 0 && Value <= 255) && in printOffset8m8_AsmOperand()
260 assert((Value >= 0 && Value <= 510 && ((Value & 0x1) == 0)) && in printOffset8m16_AsmOperand()
272 (Value >= 0 && Value <= 1020 && ((Value & 0x3) == 0)) && in printOffset8m32_AsmOperand()
[all …]
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslpld.c229 Value = (UINT32) ThisOp->Asl.Child->Asl.Value.Integer; in OpcDoPld()
241 if (Value > 127) in OpcDoPld()
258 if (Value > 1) in OpcDoPld()
277 if (Value > 255) in OpcDoPld()
333 if (Value > 1) in OpcDoPld()
368 &Value)) in OpcDoPld()
458 if (Value > 1) in OpcDoPld()
503 if (Value > 1) in OpcDoPld()
558 if (Value > 1) in OpcDoPld()
575 if (Value > 7) in OpcDoPld()
[all …]
/freebsd/contrib/libfido2/windows/
H A Dconst.ps18 -Value 'https://cloudflare.cdn.openbsd.org/pub/OpenBSD/LibreSSL' `
10 New-Variable -Name 'LIBRESSL' -Value 'libressl-3.7.3' -Option Constant
14 New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.10.2' -Option Constant
20 New-Variable -Name 'ZLIB' -Value 'zlib-1.3' -Option Constant
21 New-Variable -Name 'ZLIB_BRANCH' -Value 'v1.3' -Option Constant
35 New-Variable -Name 'RUNTIME' -Value '/MD' -Option Constant
36 New-Variable -Name 'SHARED' -Value 'ON' -Option Constant
38 -Value 'MultiThreaded$<$<CONFIG:Debug>:Debug>DLL'
40 New-Variable -Name 'RUNTIME' -Value '/MT' -Option Constant
41 New-Variable -Name 'SHARED' -Value 'OFF' -Option Constant
[all …]

12345678910>>...99