Home
last modified time | relevance | path

Searched refs:AstThisCall (Results 1 – 14 of 14) sorted by relevance

/dports/java/jikes/jikes-1.22/src/
H A Dast.h210 class AstThisCall; variable
559 inline AstThisCall* ThisCallCast();
2303 class AstThisCall : public AstStatement
2313 inline AstThisCall() in AstThisCall() function
2316 ~AstThisCall() {} in ~AstThisCall()
4665 inline AstThisCall* NewThisCall() in NewThisCall()
4667 return new (this) AstThisCall(); in NewThisCall()
5167 inline AstThisCall* GenThisCall() in GenThisCall()
5169 AstThisCall* p = NewThisCall(); in GenThisCall()
5814 inline AstThisCall* Ast::ThisCallCast() in ThisCallCast()
[all …]
H A Ddepend.cpp151 AstThisCall* this_call = in CheckConstructorCycles()
H A Dsemantic.h1050 void DefiniteThisCall(AstThisCall*);
1128 void ProcessThisCall(AstThisCall*);
H A Ddefinite.cpp1472 void Semantic::DefiniteThisCall(AstThisCall* this_call) in DefiniteThisCall()
1620 DefiniteThisCall((AstThisCall*) block_body -> in DefiniteConstructorBody()
H A Dast.cpp656 Ast* AstThisCall::Clone(StoragePool* ast_pool) in Clone()
658 AstThisCall* clone = ast_pool -> GenThisCall(); in Clone()
1658 void AstThisCall::Print(LexStream& lex_stream) in Print()
H A Dbytecode.h889 void EmitThisInvocation(AstThisCall*);
H A Dbody.cpp2019 void Semantic::ProcessThisCall(AstThisCall* this_call) in ProcessThisCall()
2431 AstThisCall* this_call = constructor_block -> in ProcessConstructorBody()
H A Djavaact.cpp1643 AstThisCall* p = ast_pool -> NewThisCall(); in Act163()
1656 AstThisCall* p = ast_pool -> NewThisCall(); in Act164()
H A Dunparse.cpp521 void AstThisCall::Unparse(Ostream& os, LexStream* lex_stream) in Unparse()
H A Dsymbol.cpp2276 AstThisCall* this_call = ast_pool -> GenThisCall(); in GetReadAccessConstructor()
H A Dbytecode.cpp1162 EmitThisInvocation((AstThisCall*) statement); in EmitStatement()
5869 void ByteCode::EmitThisInvocation(AstThisCall* this_call) in EmitThisInvocation()
H A Dexpr.cpp572 AstThisCall* this_call = ast -> ThisCallCast(); in ReportConstructorNotFound()
735 AstThisCall* this_call = ast -> ThisCallCast(); in FindConstructor()
H A Djava.g2749 AstThisCall* p = ast_pool -> NewThisCall();
2765 AstThisCall* p = ast_pool -> NewThisCall();
/dports/java/jikes/jikes-1.22/
H A DChangeLog4716 * src/ast.h (AstThisCall): Remove base_opt and