Searched refs:ExprValue (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/llvm/lld/ELF/
H A DLinkerScript.h38 struct ExprValue { struct in namespace:lld::elf
39 ExprValue(SectionBase *sec, bool forceAbsolute, uint64_t val, function in struct:lld::elf::ExprValue
43 ExprValue(uint64_t val) : ExprValue(nullptr, false, val, "") {} function in struct:lld::elf::ExprValue
71 using Expr = std::function<ExprValue()>;
314 ExprValue getSymbolValue(StringRef name, const Twine &loc);
H A DScriptParser.cpp155 static void moveAbsRight(ExprValue &a, ExprValue &b) {
162 static ExprValue add(ExprValue a, ExprValue b) {
167 static ExprValue sub(ExprValue a, ExprValue b) {
174 static ExprValue bitAnd(ExprValue
[all...]
H A DLinkerScript.cpp114 uint64_t ExprValue::getValue() const {
121 uint64_t ExprValue::getSecAddr() const {
125 uint64_t ExprValue::getSectionOffset() const {
220 ExprValue value = cmd->expression();
377 ExprValue v = cmd->expression();
1388 ExprValue LinkerScript::getSymbolValue(StringRef name, const Twine &loc) {
1398 ExprValue v{ds->section, false, ds->value, loc};
/openbsd-current/gnu/llvm/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5155 int64_t ExprValue; local
5156 if (parseAbsoluteExpression(ExprValue) || parseEOL())
5166 ExprValue = ExprValue == 0;
5169 ExprValue = ExprValue >= 0;
5172 ExprValue = ExprValue > 0;
5175 ExprValue = ExprValue <
5317 int64_t ExprValue; local
[all...]
H A DMasmParser.cpp6174 int64_t ExprValue; local
6175 if (parseAbsoluteExpression(ExprValue) || parseEOL())
6184 ExprValue = ExprValue == 0;
6188 TheCondState.CondMet = ExprValue;
6311 int64_t ExprValue; local
6312 if (parseAbsoluteExpression(ExprValue))
6324 ExprValue = ExprValue == 0;
6328 TheCondState.CondMet = ExprValue;
6661 int64_t ExprValue; local
[all...]

Completed in 151 milliseconds