Home
last modified time | relevance | path

Searched refs:Semantics (Results 1 – 24 of 24) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h576 const fltSemantics *Semantics; variable
693 if (usesLayout<IEEEFloat>(Semantics)) { in Storage()
697 if (usesLayout<DoubleAPFloat>(Semantics)) { in Storage()
773 return &Semantics == &PPCDoubleDouble(); in usesLayout()
775 return &Semantics != &PPCDoubleDouble(); in usesLayout()
836 APFloat(const fltSemantics &Semantics) : U(Semantics) {} in APFloat() argument
837 APFloat(const fltSemantics &Semantics, StringRef S);
838 APFloat(const fltSemantics &Semantics, integerPart I) : U(Semantics, I) {} in APFloat() argument
840 APFloat(const fltSemantics &Semantics, uninitializedTag) in APFloat() argument
841 : U(Semantics, uninitialized) {} in APFloat()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp3848 : Semantics(&S), in DoubleAPFloat()
3854 : Semantics(&S), in DoubleAPFloat()
3867 : Semantics(&S), in DoubleAPFloat()
3876 : Semantics(&S), in DoubleAPFloat()
3884 : Semantics(RHS.Semantics), in DoubleAPFloat()
3892 : Semantics(RHS.Semantics), Floats(std::move(RHS.Floats)) { in DoubleAPFloat()
3893 RHS.Semantics = &semBogus; in DoubleAPFloat()
3898 if (Semantics == RHS.Semantics && RHS.Floats) { in operator =()
4268 return hash_combine(Arg.Semantics); in hash_value()
4414 if (usesLayout<IEEEFloat>(Semantics)) { in Storage()
[all …]
/freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability1.ksh.out6 Data Semantics: Unstable
11 Data Semantics: Stable
H A Dtst.TestTransStability2.ksh.out6 Data Semantics: Unstable
11 Data Semantics: Private
/freebsd-12.1/contrib/binutils/opcodes/
H A Dia64-war.tbl1 Resource Name; Readers; Writers; Semantics of Dependency
H A Dia64-waw.tbl1 Resource Name; Writers; Writers; Semantics of Dependency
H A Dia64-raw.tbl1 Resource Name; Writers; Readers; Semantics of Dependency
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaPseudoObject.cpp194 SmallVector<Expr *, 4> Semantics; member in __anon9ddd17eb0111::PseudoOpBuilder
204 Semantics.push_back(semantic); in addSemanticExpr()
210 ResultIndex = Semantics.size(); in addResultSemanticExpr()
211 Semantics.push_back(resultExpr); in addResultSemanticExpr()
213 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) in addResultSemanticExpr()
233 ResultIndex = Semantics.size() - 1; in setResultToLastSemantic()
235 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) in setResultToLastSemantic()
403 assert(index < Semantics.size() && in captureValueAsResult()
405 if (e == Semantics[index]) break; in captureValueAsResult()
416 Semantics, ResultIndex); in complete()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DConstants.cpp727 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); in getNaN() local
728 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN()
738 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); in getQNaN() local
739 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
749 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); in getSNaN() local
750 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN()
760 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); in getNegativeZero() local
761 APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true); in getNegativeZero()
809 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty->getScalarType()); in getInfinity() local
810 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DZ3ConstraintManager.cpp698 const llvm::fltSemantics &Semantics = in toAPFloat() local
705 if (useSemantics && !areEquivalent(Float.getSemantics(), Semantics)) { in toAPFloat()
710 Float = llvm::APFloat(Semantics, Int); in toAPFloat()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp256 bool parseRealValue(const fltSemantics &Semantics, APInt &Res);
3057 bool AsmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) { in parseRealValue() argument
3074 APFloat Value(Semantics); in parseRealValue()
3078 Value = APFloat::getInf(Semantics); in parseRealValue()
3080 Value = APFloat::getNaN(Semantics, false, ~0); in parseRealValue()
3100 const fltSemantics &Semantics) { in parseDirectiveRealValue() argument
3103 if (checkForValidSection() || parseRealValue(Semantics, AsInt)) in parseDirectiveRealValue()
4633 bool AsmParser::parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &Semantics) { in parseDirectiveRealDCB() argument
4649 if (parseRealValue(Semantics, AsInt)) in parseDirectiveRealDCB()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp859 switch(FloatingLiteralBits.Semantics) { in getSemantics()
878 FloatingLiteralBits.Semantics = IEEEhalf; in setSemantics()
880 FloatingLiteralBits.Semantics = IEEEsingle; in setSemantics()
882 FloatingLiteralBits.Semantics = IEEEdouble; in setSemantics()
884 FloatingLiteralBits.Semantics = x87DoubleExtended; in setSemantics()
886 FloatingLiteralBits.Semantics = IEEEquad; in setSemantics()
888 FloatingLiteralBits.Semantics = PPCDoubleDouble; in setSemantics()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DREADME.txt47 * https://github.com/WebAssembly/design/blob/master/Semantics.md
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1300 llvm::APFloat getValue(const llvm::fltSemantics &Semantics) const { in getValue() argument
1301 return llvm::APFloat(Semantics, getIntValue()); in getValue()
1470 return static_cast<APFloatSemantics>(FloatingLiteralBits.Semantics); in getRawSemantics()
1476 FloatingLiteralBits.Semantics = Sem; in setRawSemantics()
H A DStmt.h365 unsigned Semantics : 3; // Provides semantics for APFloat construction in alignas() local
/freebsd-12.1/contrib/gcc/
H A Drtl.def172 Semantics are that there are no side effects if the condition
H A DChangeLog-20032033 NOTE: Semantics have changed a bit. Now the value of the part must
/freebsd-12.1/contrib/ncurses/include/
H A DCaps.uwin170 #%identical or very similar names). Semantics are also intended to match
H A DCaps.aix4170 #%identical or very similar names). Semantics are also intended to match
H A DCaps.osf1r5170 #%identical or very similar names). Semantics are also intended to match
H A DCaps170 #%identical or very similar names). Semantics are also intended to match
H A DCaps.hpux11170 #%identical or very similar names). Semantics are also intended to match
H A DCaps.keys172 #%identical or very similar names). Semantics are also intended to match
/freebsd-12.1/contrib/binutils/gas/po/
H A Dgas.pot3661 "Semantics error. This type of operand can not be relocated, it must be an "