index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lld
/
ELF
/
ScriptParser.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move name lookup to script parsing time.
Rafael Espindola
2017-06-01
1
-8
/
+24
*
[ELF] Use late evaluation for ALIGN in expression
Petr Hosek
2017-05-30
1
-1
/
+5
*
[ELF] - Use llvm::to_integer() instead of StringRef::getAsInteger().
George Rimar
2017-05-16
1
-6
/
+6
*
Add memory ORIGIN and LENGTH expression support
Rui Ueyama
2017-05-09
1
-0
/
+12
*
Rename readOutputSectionFiller parseFill.
Rui Ueyama
2017-04-13
1
-10
/
+10
*
Fix FILL linker script command.
Rui Ueyama
2017-04-13
1
-1
/
+0
*
Allow expressions in MEMORY command.
Rui Ueyama
2017-04-12
1
-6
/
+1
*
[lld] Keep full library path in DT_NEEDED.
Evgeniy Stepanov
2017-04-12
1
-6
/
+7
*
Revert "[lld] Keep full library path in DT_NEEDED."
Evgeniy Stepanov
2017-04-12
1
-7
/
+6
*
[lld] Keep full library path in DT_NEEDED.
Evgeniy Stepanov
2017-04-11
1
-6
/
+7
*
Remove big-endianness from =<fillexp> code.
Rui Ueyama
2017-04-11
1
-5
/
+8
*
Return Optional<uint64_t> from readInteger instead of returning just success/...
Rui Ueyama
2017-04-05
1
-38
/
+36
*
Inline small functions that are used only once.
Rui Ueyama
2017-04-05
1
-5
/
+2
*
Fix comments.
Rui Ueyama
2017-04-05
1
-7
/
+13
*
Rename ScriptConfig::UndefinedSymbols ReferencedSymbols.
Rui Ueyama
2017-04-05
1
-5
/
+7
*
Make readAssert() to return an AssertCommand object.
Rui Ueyama
2017-04-05
1
-6
/
+11
*
Add a file comment.
Rui Ueyama
2017-04-05
1
-0
/
+5
*
Simplify. NFC.
Rui Ueyama
2017-04-05
1
-44
/
+32
*
Inline leftShift and rightShift. NFC.
Rui Ueyama
2017-04-05
1
-10
/
+2
*
Do not make ScriptParser class public.
Rui Ueyama
2017-04-05
1
-1
/
+3
*
Move the parser for the linker script to a separate file.
Rui Ueyama
2017-04-05
1
-0
/
+1184
*
Rename ScriptParser.{cpp,h} -> ScriptLexer.{cpp,h}.
Rui Ueyama
2017-02-14
1
-203
/
+0
*
Handle the case where 'local' is the name of a global in a version script:
Dmitry Mikulin
2017-02-07
1
-5
/
+8
*
Handle numbers followed by ":" in linker scripts.
Rafael Espindola
2017-02-03
1
-1
/
+1
*
Simplify ScriptParser.
Rui Ueyama
2016-12-01
1
-15
/
+13
*
Do not name a variable Ret which is not a return value.
Rui Ueyama
2016-12-01
1
-5
/
+5
*
Make get{Line,Column}Number members of StringParser.
Rui Ueyama
2016-12-01
1
-27
/
+31
*
Split getPos into getLineNumber and getColumnNumber.
Rui Ueyama
2016-12-01
1
-30
/
+29
*
[ELF] Print file:line for 'undefined section' errors
Eugene Leviant
2016-11-28
1
-0
/
+7
*
[ELF] Better error reporting for linker scripts
Eugene Leviant
2016-11-21
1
-28
/
+55
*
Simplify. NFC.
Rui Ueyama
2016-10-21
1
-9
/
+4
*
ELF: Implement skip() as (void)next()
Justin Bogner
2016-10-17
1
-9
/
+1
*
Rename skip(StringRef) -> consume(StringRef).
Rui Ueyama
2016-10-17
1
-1
/
+1
*
ELF: Add a skip() overload to ignore any token
Justin Bogner
2016-10-17
1
-0
/
+10
*
Recommit [ELF] - Versionscript: do not treat non-wildcarded names as wildcards.
George Rimar
2016-09-09
1
-2
/
+5
*
Revert r281045, it broke BB.
George Rimar
2016-09-09
1
-5
/
+2
*
Recommit [ELF] - Versionscript: do not treat non-wildcarded names as wildcards.
George Rimar
2016-09-09
1
-2
/
+5
*
[ELF] - Revert r281038 to see if that unbreaks build bot.
George Rimar
2016-09-09
1
-5
/
+2
*
[ELF] - Versionscript: do not treat non-wildcarded names as wildcards.
George Rimar
2016-09-09
1
-2
/
+5
*
[ELF] - Fix for: PR29093 - version script does not support [chars] wildcards
George Rimar
2016-09-07
1
-1
/
+1
*
Add comments.
Rui Ueyama
2016-09-01
1
-2
/
+4
*
Create Strings.cpp and move string manipulation functions to that file.
Rui Ueyama
2016-06-29
1
-15
/
+0
*
[ELF] - Do not crash on unclosed quote (") in scripts.
George Rimar
2016-06-22
1
-1
/
+1
*
Add support for # comments.
Rafael Espindola
2016-06-16
1
-1
/
+8
*
[ELF] - Implemented comparsion operators for linkerscript.
George Rimar
2016-04-25
1
-1
/
+1
*
Use ScriptParserBase features to parse linker script expressions.
Rui Ueyama
2016-04-23
1
-2
/
+6
*
[ELF] Include Twine.h header to restore LLD build after r266524. NFC
Simon Atanasyan
2016-04-16
1
-0
/
+1
*
[lld] [ELF] Add ScriptParserBase class
Adhemerval Zanella
2016-04-06
1
-0
/
+166