Go to the source code of this file.
| #define DWKEYWORD |
( |
|
TYPE, |
|
|
|
TOKEN |
|
) |
| |
Value:
if (Keyword.startswith(
"DW_" #TYPE
"_")) {
\
StrVal.assign(Keyword.begin(), Keyword.end()); \
return lltok::TOKEN; \
} \
} while (false)
* if(!EatIfPresent(lltok::kw_thread_local)) return false
ParseOptionalThreadLocal := /*empty.
| #define INSTKEYWORD |
( |
|
STR, |
|
|
|
Enum |
|
) |
| |
Value:
UIntVal = Instruction::Enum; \
return lltok::kw_##STR; \
} \
} while (false)
* if(!EatIfPresent(lltok::kw_thread_local)) return false
ParseOptionalThreadLocal := /*empty.
Value:
return lltok::kw_##STR; \
} while (false)
* if(!EatIfPresent(lltok::kw_thread_local)) return false
ParseOptionalThreadLocal := /*empty.
| #define TYPEKEYWORD |
( |
|
STR, |
|
|
|
LLVMTY |
|
) |
| |
Value:
TyVal = LLVMTY; \
} \
} while (false)
* if(!EatIfPresent(lltok::kw_thread_local)) return false
ParseOptionalThreadLocal := /*empty.
| static bool isLabelChar |
( |
char |
C | ) |
|
|
static |
| static const char* isLabelTail |
( |
const char * |
CurPtr | ) |
|
|
static |
isLabelTail - Return true if this pointer points to a valid end of a label.
Definition at line 148 of file LLLexer.cpp.
References isLabelChar().
| static void UnEscapeLexed |
( |
std::string & |
Str | ) |
|
|
static |