| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Z3Solver.cpp | 232 llvm_unreachable("Unsupported floating-point semantics!"); 245 // Determine whether two float semantics are equivalent 789 const llvm::fltSemantics &Semantics = 796 if (useSemantics && !areEquivalent(Float.getSemantics(), Semantics)) { 801 Float = llvm::APFloat(Semantics, Int);
|
| Z3Solver.cpp | 232 llvm_unreachable("Unsupported floating-point semantics!"); 245 // Determine whether two float semantics are equivalent 789 const llvm::fltSemantics &Semantics = 796 if (useSemantics && !areEquivalent(Float.getSemantics(), Semantics)) { 801 Float = llvm::APFloat(Semantics, Int);
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaPseudoObject.cpp | 185 SmallVector<Expr *, 4> Semantics; 195 Semantics.push_back(semantic); 201 ResultIndex = Semantics.size(); 202 Semantics.push_back(resultExpr); 204 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) 224 ResultIndex = Semantics.size() - 1; 226 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) 368 // Make sure we bind that in the semantics. 394 assert(index < Semantics.size() && 395 "captured expression not found in semantics!"); [all...] |
| SemaPseudoObject.cpp | 185 SmallVector<Expr *, 4> Semantics; 195 Semantics.push_back(semantic); 201 ResultIndex = Semantics.size(); 202 Semantics.push_back(resultExpr); 204 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) 224 ResultIndex = Semantics.size() - 1; 226 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantics.back())) 368 // Make sure we bind that in the semantics. 394 assert(index < Semantics.size() && 395 "captured expression not found in semantics!"); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| APFloat.h | 31 llvm_unreachable("Unexpected semantics"); \ 78 /// full extended precision). Adding a new format that obeys IEEE semantics 150 /// \name Floating Point Semantics. 152 enum Semantics { 162 static const llvm::fltSemantics &EnumToSemantics(Semantics S); 163 static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem); 241 /// semantics. 376 const fltSemantics &getSemantics() const { return *semantics; } 383 /// magnitude in the current semantics. 387 /// magnitude in the current semantics 570 const fltSemantics *semantics; member in class:llvm::detail::final 708 const fltSemantics *semantics; member in union:llvm::APFloat::Storage [all...] |
| APFloat.h | 31 llvm_unreachable("Unexpected semantics"); \ 78 /// full extended precision). Adding a new format that obeys IEEE semantics 150 /// \name Floating Point Semantics. 152 enum Semantics { 162 static const llvm::fltSemantics &EnumToSemantics(Semantics S); 163 static Semantics SemanticsToEnum(const llvm::fltSemantics &Sem); 241 /// semantics. 376 const fltSemantics &getSemantics() const { return *semantics; } 383 /// magnitude in the current semantics. 387 /// magnitude in the current semantics 570 const fltSemantics *semantics; member in class:llvm::detail::final 708 const fltSemantics *semantics; member in union:llvm::APFloat::Storage [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| MasmParser.cpp | 529 /// Parse a floating point expression using the float \p Semantics 531 bool parseRealValue(const fltSemantics &Semantics, APInt &Res); 804 bool emitRealValues(const fltSemantics &Semantics, unsigned *Count = nullptr); 805 bool addRealField(StringRef Name, const fltSemantics &Semantics, size_t Size); 806 bool parseDirectiveRealValue(StringRef IDVal, const fltSemantics &Semantics, 809 const fltSemantics &Semantics, SmallVectorImpl<APInt> &Values, 812 const fltSemantics &Semantics, 1560 // semantics in the face of reassignment. 3610 bool MasmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) { 3631 APFloat Value(Semantics); [all...] |
| MasmParser.cpp | 529 /// Parse a floating point expression using the float \p Semantics 531 bool parseRealValue(const fltSemantics &Semantics, APInt &Res); 804 bool emitRealValues(const fltSemantics &Semantics, unsigned *Count = nullptr); 805 bool addRealField(StringRef Name, const fltSemantics &Semantics, size_t Size); 806 bool parseDirectiveRealValue(StringRef IDVal, const fltSemantics &Semantics, 809 const fltSemantics &Semantics, SmallVectorImpl<APInt> &Values, 812 const fltSemantics &Semantics, 1560 // semantics in the face of reassignment. 3610 bool MasmParser::parseRealValue(const fltSemantics &Semantics, APInt &Res) { 3631 APFloat Value(Semantics); [all...] |