Home
last modified time | relevance | path

Searched refs:Value1 (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRnglists.cpp32 Value0 = Value1 = 0; in extract()
41 Value1 = Data.getULEB128(C); in extract()
45 Value1 = Data.getULEB128(C); in extract()
50 Value1 = Data.getULEB128(C); in extract()
59 Value1 = Data.getRelocatedAddress(C); in extract()
64 Value1 = Data.getULEB128(C); in extract()
125 E.HighPC = RLE.Value1; in getAbsoluteRanges()
135 E.HighPC = RLE.Value1; in getAbsoluteRanges()
139 E.HighPC = E.LowPC + RLE.Value1; in getAbsoluteRanges()
147 E.HighPC = E.LowPC + RLE.Value1; in getAbsoluteRanges()
[all …]
H A DDWARFDebugLoc.cpp67 std::optional<SectionedAddress> HighPC = LookupAddr(E.Value1); in Interpret()
69 return createResolverError(E.Value1, E.Kind); in Interpret()
79 LowPC->Address + E.Value1, in Interpret()
89 DWARFAddressRange Range{Base->Address + E.Value0, Base->Address + E.Value1, in Interpret()
102 DWARFAddressRange{E.Value0, E.Value1, E.SectionIndex}, E.Loc}; in Interpret()
105 DWARFAddressRange{E.Value0, E.Value0 + E.Value1, E.SectionIndex}, in Interpret()
215 uint64_t Value1 = Data.getRelocatedAddress(C, &SectionIndex); in visitLocationList() local
223 if (Value0 == 0 && Value1 == 0) { in visitLocationList()
227 E.Value0 = Value1; in visitLocationList()
232 E.Value1 = Value1; in visitLocationList()
[all …]
/freebsd/sys/contrib/dev/acpica/compiler/
H A Dprexpress.c407 AslGbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Value1)); in PrResolveIntegerExpression()
409 *ReturnValue = Value1; in PrResolveIntegerExpression()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DArg.cpp33 const char *Value1, const Arg *BaseArg) in Arg() argument
37 Values.push_back(Value1); in Arg()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DReassociate.h101 WeakVH Value1; member
104 bool isValid() const { return Value1 && Value2; } in isValid()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp37 const char *Condition, u64 Value1, u64 Value2) { in trap()
45 File, Line, Condition, Value1, Value2); in reportHardRSSLimit()
53 reportCheckFailed(const char * File,int Line,const char * Condition,u64 Value1,u64 Value2) reportCheckFailed() argument
H A Dinternal_defs.h107 const char *Condition, u64 Value1, u64 Value2);
/freebsd/contrib/bsddialog/examples_utility/
H A Dform.sh18 Label1: 0 0 Value1 0 8 18 25 \
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h139 static unsigned setRTypes(unsigned Value1, unsigned Value2, unsigned Value3) { in setRTypes() argument
140 return ((Value1 & 0xff) << R_TYPE_SHIFT) | in setRTypes()
/freebsd/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdutil.h64 bit32 Value1,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugRnglists.h36 uint64_t Value1; member
H A DDWARFDebugLoc.h38 uint64_t Value1; member
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DArg.h78 const char *Value0, const char *Value1, const Arg *BaseArg = nullptr);
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1056 const llvm::APSInt &Value1, in analyzeLogicOperatorCondition() argument
1058 assert(Value1.isSigned() == Value2.isSigned()); in analyzeLogicOperatorCondition()
1063 return TryResult(Value1 == Value2); in analyzeLogicOperatorCondition()
1065 return TryResult(Value1 != Value2); in analyzeLogicOperatorCondition()
1067 return TryResult(Value1 < Value2); in analyzeLogicOperatorCondition()
1069 return TryResult(Value1 <= Value2); in analyzeLogicOperatorCondition()
1071 return TryResult(Value1 > Value2); in analyzeLogicOperatorCondition()
1073 return TryResult(Value1 >= Value2); in analyzeLogicOperatorCondition()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp2541 bool valuesIdentical(VNInfo *Value0, VNInfo *Value1, const JoinVals &Other) const;
2716 bool JoinVals::valuesIdentical(VNInfo *Value0, VNInfo *Value1, in valuesIdentical() argument
2721 if (Orig0 == Value1 && Reg0 == Other.Reg) in valuesIdentical()
2726 std::tie(Orig1, Reg1) = Other.followCopyChain(Value1); in valuesIdentical()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1939 SDValue Value1, Value2; in ExpandBUILD_VECTOR() local
1959 if (!Value1.getNode()) { in ExpandBUILD_VECTOR()
1960 Value1 = V; in ExpandBUILD_VECTOR()
1962 if (V != Value1) in ExpandBUILD_VECTOR()
1964 } else if (V != Value1 && V != Value2) { in ExpandBUILD_VECTOR()
1969 if (!Value1.getNode()) in ExpandBUILD_VECTOR()
2024 ShuffleVec[i] = V == Value1 ? 0 : NumElems; in ExpandBUILD_VECTOR()
2028 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1); in ExpandBUILD_VECTOR()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp1037 HighPC = BaseAddr + Entry.Value1; in processLocationList()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp3440 Value *Value1 = EmitScalarExpr(Arg1); in EmitBuiltinExpr() local
3442 Value *Values[] = {Value0, Value1}; in EmitBuiltinExpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp24615 SDValue Value0, Value1; in splitVectorStore() local
24616 std::tie(Value0, Value1) = splitVector(StoredVal, DAG, DL); in splitVectorStore()
24625 SDValue Ch1 = DAG.getStore(Store->getChain(), DL, Value1, Ptr1, in splitVectorStore()