X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/de9fc71b1efd1cbcd5049e5b7c162844a6909a6c..3530897b0e384dd614bfef0a446b343e00a6616b:/Replace.cpp diff --git a/Replace.cpp b/Replace.cpp index 0cfbfdc..c06c2a5 100644 --- a/Replace.cpp +++ b/Replace.cpp @@ -338,8 +338,9 @@ void CYFunction::Replace_(CYContext &context, bool outer) { if (outer) Inject(context); - parent_ = context.scope_; - context.scope_ = this; + CYScope scope; + scope.parent_ = context.scope_; + context.scope_ = &scope; if (!outer && name_ != NULL) Inject(context); @@ -347,8 +348,8 @@ void CYFunction::Replace_(CYContext &context, bool outer) { parameters_->Replace(context); code_.Replace(context); - context.scope_ = parent_; - Scope(context, code_.statements_); + context.scope_ = scope.parent_; + scope.Scope(context, code_.statements_); } CYExpression *CYFunctionExpression::Replace(CYContext &context) { @@ -461,27 +462,42 @@ CYExpression *CYPrefix::Replace(CYContext &context) { #define MappingSet "0etnirsoalfucdphmgyvbxTwSNECAFjDLkMOIBPqzRH$_WXUVGYKQJZ" //#define MappingSet "0abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_" -void CYProgram::Replace(CYContext &context) { - parent_ = context.scope_; - CYProgram *program(context.program_); +namespace { + struct IdentifierUsageLess : + std::binary_function + { + _finline bool operator ()(CYIdentifier *lhs, CYIdentifier *rhs) const { + if (lhs->usage_ != rhs->usage_) + return lhs->usage_ > rhs->usage_; + return lhs < rhs; + } + }; - context.scope_ = this; - context.program_ = this; + typedef std::set IdentifierUsages; +} +void CYProgram::Replace(CYContext &context) { + CYScope scope; + scope.parent_ = context.scope_; + context.scope_ = &scope; statements_ = statements_->ReplaceAll(context); - - context.scope_ = parent_; - context.program_ = program; - Scope(context, statements_); + context.scope_ = scope.parent_; + scope.Scope(context, statements_); size_t offset(0); CYCStringSet external; - for (CYIdentifierValueSet::const_iterator i(identifiers_.begin()); i != identifiers_.end(); ++i) + for (CYIdentifierValueSet::const_iterator i(scope.identifiers_.begin()); i != scope.identifiers_.end(); ++i) external.insert((*i)->Word()); + IdentifierUsages usages; + + if (offset < context.rename_.size()) + for (CYIdentifier *i(context.rename_[offset].identifier_); i != NULL; i = i->next_) + usages.insert(i); + // XXX: totalling the probable occurrences and sorting by them would improve the result - for (CYIdentifierAddressVector::const_iterator i(rename_.begin()); i != rename_.end(); ++i, ++offset) { + for (CYIdentifierUsageVector::const_iterator i(context.rename_.begin()); i != context.rename_.end(); ++i, ++offset) { //std::cout << *i << ":" << (*i)->offset_ << std::endl; const char *name; @@ -510,7 +526,7 @@ void CYProgram::Replace(CYContext &context) { // XXX: at some point, this could become a keyword } - for (CYIdentifier *identifier(*i); identifier != NULL; identifier = identifier->next_) + for (CYIdentifier *identifier(i->identifier_); identifier != NULL; identifier = identifier->next_) identifier->Set(name); } } @@ -540,6 +556,7 @@ void CYScope::Merge(CYContext &context, CYIdentifier *identifier) { if ((*insert.first)->offset_ < identifier->offset_) (*insert.first)->offset_ = identifier->offset_; identifier->replace_ = *insert.first; + (*insert.first)->usage_ += identifier->usage_ + 1; } } @@ -547,11 +564,13 @@ namespace { struct IdentifierOffset { size_t offset_; CYIdentifierFlags flags_; + size_t usage_; CYIdentifier *identifier_; - IdentifierOffset(size_t offset, CYIdentifierFlags flags, CYIdentifier *identifier) : - offset_(offset), + IdentifierOffset(CYIdentifier *identifier, CYIdentifierFlags flags) : + offset_(identifier->offset_), flags_(flags), + usage_(identifier->usage_), identifier_(identifier) { } @@ -565,6 +584,8 @@ namespace { return lhs.offset_ < rhs.offset_; if (lhs.flags_ != rhs.flags_) return lhs.flags_ < rhs.flags_; + /*if (lhs.usage_ != rhs.usage_) + return lhs.usage_ < rhs.usage_;*/ return lhs.identifier_ < rhs.identifier_; } }; @@ -573,15 +594,16 @@ namespace { } void CYScope::Scope(CYContext &context, CYStatement *&statements) { + if (parent_ == NULL) + return; + CYDeclarations *last(NULL), *curr(NULL); - CYProgram *program(context.program_); IdentifierOffsets offsets; - // XXX: we don't want to do this in order, we want to sort it by probable occurrence for (CYIdentifierAddressFlagsMap::const_iterator i(internal_.begin()); i != internal_.end(); ++i) - if (program != NULL && i->second != CYIdentifierMagic) - offsets.insert(IdentifierOffset(i->first->offset_, i->second, i->first)); + if (i->second != CYIdentifierMagic) + offsets.insert(IdentifierOffset(i->first, i->second)); size_t offset(0); @@ -597,12 +619,13 @@ void CYScope::Scope(CYContext &context, CYStatement *&statements) { if (offset < i->offset_) offset = i->offset_; - if (program->rename_.size() <= offset) - program->rename_.resize(offset + 1); + if (context.rename_.size() <= offset) + context.rename_.resize(offset + 1); - CYIdentifier *&identifier(program->rename_[offset++]); - i->identifier_->SetNext(identifier); - identifier = i->identifier_; + CYIdentifierUsage &rename(context.rename_[offset++]); + i->identifier_->SetNext(rename.identifier_); + rename.identifier_ = i->identifier_; + rename.usage_ += i->identifier_->usage_ + 1; } if (last != NULL) {