Displaying 7 results from an estimated 7 matches for "tokenlexer".
2014 Nov 13
2
[LLVMdev] New type of smart pointer for LLVM
...naming convention I grep'd for):
>
> In Clang, simply grepping for "Owns" comes up with the following boolean
> members:
>
> CodeGenAction::OwnsVMContext
> ASTReader::OwnsDeserializationListener
> Diagnostic::OwnsDiagClient
> Preprocessor::OwnsHeaderSearch
> TokenLexer::OwnsTokens
> Action::OwnsInputs (this ones trickier - it's a boolean that indicates
> whether all the elements of a vector<T*> are owned or unowned)
> ASTUnit::OwnsRemappedFileBuffers
> VerifyDiagnosticConsumer::OwnsPrimaryClient
> TextDiagnosticPrinter::OwnsOutputStream
&...
2011 Oct 21
0
[LLVMdev] error building clang
On Thu, Oct 20, 2011 at 10:59 PM, monica j wrote:
> The latest in my problems building clang-only:
>
> llvm[4]: Linking Debug+Asserts executable clang
> /llvm/build/Debug+Asserts/lib/libclangLex.a: could not read symbols: File
> format not recognized
> collect2: ld returned 1 exit status
What is the output of
file /llvm/build/Debug+Asserts/lib/libclangLex.a
?
Csaba
--
GCS
2011 Oct 22
1
[LLVMdev] error building clang
...Debug+Asserts/lib/libclangLex.a
HeaderMap.o
HeaderSearch.o
Lexer.o
LiteralSupport.o
MacroArgs.o
MacroInfo.o
PPCaching.o
PPDirectives.o
PPExpressions.o
PPLexerChange.o
PPMacroExpansion.o
PTHLexer.o
Pragma.o
PreprocessingRecord.o
Preprocessor.o
PreprocessorLexer.o
ScratchBuffer.o
TokenConcatenation.o
TokenLexer.o
On Fri, Oct 21, 2011 at 7:08 AM, Csaba Raduly <rcsaba at gmail.com> wrote:
> On Thu, Oct 20, 2011 at 10:59 PM, monica j wrote:
> > The latest in my problems building clang-only:
> >
> > llvm[4]: Linking Debug+Asserts executable clang
> > /llvm/build/Debug+Asser...
2014 Oct 08
2
[LLVMdev] New type of smart pointer for LLVM
[+cfe-dev]
This conversation has already been happening on llvm-dev so there's no good
way for me to capture the entire existing discussion (so I'm jumping you in
part-way) & the subject line could be more descriptive, but I wanted to add
Clang developers since many of the interesting cases of conditional
ownership I've seen were in Clang.
I know some of you are also on llvm-dev
2011 Oct 20
4
[LLVMdev] error building clang
The latest in my problems building clang-only:
llvm[4]: Linking Debug+Asserts executable clang
/llvm/build/Debug+Asserts/lib/libclangLex.a: could not read symbols: File
format not recognized
collect2: ld returned 1 exit status
Any suggestions appreciated.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Nov 13
2
[LLVMdev] [cfe-dev] New type of smart pointer for LLVM
...>>
>> In Clang, simply grepping for "Owns" comes up with the following boolean
>> members:
>>
>> CodeGenAction::OwnsVMContext
>> ASTReader::OwnsDeserializationListener
>> Diagnostic::OwnsDiagClient
>> Preprocessor::OwnsHeaderSearch
>> TokenLexer::OwnsTokens
>> Action::OwnsInputs (this ones trickier - it's a boolean that indicates
>> whether all the elements of a vector<T*> are owned or unowned)
>> ASTUnit::OwnsRemappedFileBuffers
>> VerifyDiagnosticConsumer::OwnsPrimaryClient
>> TextDiagnosticPrinter...
2014 Oct 01
4
[LLVMdev] New type of smart pointer for LLVM
On Wed, Oct 1, 2014 at 3:14 PM, Anton Yartsev <anton.yartsev at gmail.com>
wrote:
> Ping!
>
> Suggested is a wrapper over a raw pointer that is intended for freeing
> wrapped memory at the end of wrappers lifetime if ownership of a raw
> pointer was not taken away during the lifetime of the wrapper.
> The main difference from unique_ptr is an ability to access the wrapped