Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
d967b832
Commit
d967b832
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Update header LLLexer for LLVM-9
parent
2f68f2ea
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/llvm_patches/lib/AsmParser/LLLexer.h
+14
-6
14 additions, 6 deletions
hpvm/llvm_patches/lib/AsmParser/LLLexer.h
with
14 additions
and
6 deletions
hpvm/llvm_patches/lib/AsmParser/LLLexer.h
+
14
−
6
View file @
d967b832
//===- LLLexer.h - Lexer for LLVM Assembly Files ----------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
...
...
@@ -42,6 +41,10 @@ namespace llvm {
APFloat
APFloatVal
;
APSInt
APSIntVal
;
// When false (default), an identifier ending in ':' is a label token.
// When true, the ':' is treated as a separate token.
bool
IgnoreColonInIdentifiers
;
public:
explicit
LLLexer
(
StringRef
StartBuf
,
SourceMgr
&
SM
,
SMDiagnostic
&
,
LLVMContext
&
C
);
...
...
@@ -59,8 +62,11 @@ namespace llvm {
const
APSInt
&
getAPSIntVal
()
const
{
return
APSIntVal
;
}
const
APFloat
&
getAPFloatVal
()
const
{
return
APFloatVal
;
}
void
setIgnoreColonInIdentifiers
(
bool
val
)
{
IgnoreColonInIdentifiers
=
val
;
}
bool
Error
(
LocTy
L
,
const
Twine
&
Msg
)
const
;
bool
Error
(
LocTy
ErrorLoc
,
const
Twine
&
Msg
)
const
;
bool
Error
(
const
Twine
&
Msg
)
const
{
return
Error
(
getLoc
(),
Msg
);
}
void
Warning
(
LocTy
WarningLoc
,
const
Twine
&
Msg
)
const
;
...
...
@@ -81,15 +87,17 @@ namespace llvm {
lltok
::
Kind
LexDollar
();
lltok
::
Kind
LexExclaim
();
lltok
::
Kind
LexPercent
();
lltok
::
Kind
LexUIntID
(
lltok
::
Kind
Token
);
lltok
::
Kind
LexVar
(
lltok
::
Kind
Var
,
lltok
::
Kind
VarID
);
lltok
::
Kind
LexQuote
();
lltok
::
Kind
Lex0x
();
lltok
::
Kind
LexHash
();
lltok
::
Kind
LexCaret
();
uint64_t
atoull
(
const
char
*
Buffer
,
const
char
*
End
);
uint64_t
HexIntToVal
(
const
char
*
Buffer
,
const
char
*
End
);
void
HexToIntPair
(
const
char
*
Buffer
,
const
char
*
End
,
uint64_t
Pair
[
2
]);
void
FP80HexToIntPair
(
const
char
*
Buff
,
const
char
*
End
,
uint64_t
Pair
[
2
]);
void
FP80HexToIntPair
(
const
char
*
Buff
er
,
const
char
*
End
,
uint64_t
Pair
[
2
]);
};
}
// end namespace llvm
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment