Xia Gao

40 papers A* 1B 5Misc 1Journal 26Unranked 5
YearRankTypeTitle / Venue / Authors
2026 J jnl
CoRR
Yuewen Huang, Zhitao Ye, Guangnan Feng, Fudan Zheng, Xia Gao, Yutong Lu
2025 J jnl
CoRR
Tao Yang, Dandan Huang, Yunting Lin, Pengfei Wu, Zhikun Wu, Gangyuan Ma, Yulan Lu, Xinran Dong, Dingpeng Li, Junshuang Ge, Zhiyan Zhang, Xuanzhao Huang, Wenyan Nong, Yao Zhou, Hui Tang, Hongxi Yang, Shijie Zhang, Juan Li, Xiaojun Cao, Lin Yang, Xia Gao, Kaishou Xu, Xiaoqiong Gu, Wen Zhang, Huimin Xia, Li Liu, Wenhao Zhou, Mulin Jun Li
2025 conf
OFC
Xia Gao, Qian Zhang, Lipeng Feng, Anxu Zhang, Peng Li, Lei Zhang, Jie Luo, Zhengyu Liu, Xin Qin, Xiaoli Huo, Xiaobin Hong, Jian Wu, Junjie Li, Chengliang Zhang, Zhisheng Yang
2024 J jnl
Briefings Bioinform.
Haitao Yang, Xin Wang, Zechen Zhang, Fuzhao Chen, Hongyan Cao, Lina Yan, Xia Gao, Hui Dong, Yuehua Cui
2024 J jnl
Comput. Networks
Xin Qin, Wenwu Zhu, Qian Hu, Zexi Zhou, Yi Ding, Xia Gao, Rentao Gu
2024 J jnl
CoRR
Yuanming Zhang, Jing Lu, Zhibin Lin, Fei Chen, Haoliang Du, Xia Gao
2024 conf
ISCSLP
Yuanming Zhang, Zeyan Song, Haoliang Du, Xia Gao, Jing Lu
2023 Misc conf
ICASSP
Yuanming Zhang, Haoxin Ruan, Ziyan Yuan, Haoliang Du, Xia Gao, Jing Lu
2023 J jnl
Int. J. Emerg. Technol. Learn.
Xia Gao, Dongning Kang, Hao Wu
2023 J jnl
PeerJ Comput. Sci.
Xia Gao, Xiaoqian Yang, Yuchen Zhao
2023 J jnl
Int. J. Emerg. Technol. Learn.
Dongning Kang, Xia Gao, Liang Liang
2022 J jnl
Int. J. Emerg. Technol. Learn.
Xia Gao, Yufang Wang, Bingna Lou
2021 J jnl
Kybernetes
Xu Zhao, Jingyang Wang, Mengyu Wang, Xuesong Li, Xia Gao, Chunlei Huang
2020 J jnl
Appl. Math. Lett.
Hai-Qiang Zhang, Xia Gao, Zhi-jie Pei, Fa Chen
2017 J jnl
IACR Cryptol. ePrint Arch.
Peng Xu, Xia Gao, Wei Wang, Willy Susilo, Qianhong Wu, Hai Jin
2017 conf
AINA Workshops
Tomonobu Ozaki, Xia Gao, Mako Mizutani
2016 J jnl
IEEE Trans. Veh. Technol.
Hang Wong, Kwok Kan So, Xia Gao
2014 J jnl
Scientometrics
Xia Gao, Xi Guo, Jiancheng Guan
2013 J jnl
Math. Comput. Model.
Xia Gao, Wei Zhang
2012 J jnl
Scientometrics
Xia Gao, Jiancheng Guan
2012 J jnl
J. Inf. Hiding Multim. Signal Process.
Shaowei Weng, Jeng-Shyang Pan, Xia Gao
2011 J jnl
Scientometrics
Xia Gao, Jiancheng Guan, Ronald Rousseau
2010 J jnl
J. Informetrics
Xia Gao, Xiaochuan Guo, J. Sylvan Katz, Jiancheng Guan
2009 J jnl
J. Informetrics
Xia Gao, Jiancheng Guan
2009 J jnl
J. Assoc. Inf. Sci. Technol.
Jiancheng Guan, Xia Gao
2009 J jnl
Scientometrics
Xia Gao, Jiancheng Guan
2008 J jnl
Scientometrics
Jiancheng Guan, Xia Gao
2007 J jnl
Wirel. Networks
Yuan Sun, Elizabeth M. Belding-Royer, Xia Gao, James Kempf
2006 ch.
The Handbook of Mobile Middleware
Xia Gao
2004 J jnl
IEEE Wirel. Commun.
Xia Gao, Gang Wu, Toshio Miki
2004 B conf
MASS
Yuan Sun, Xia Gao, Elizabeth M. Belding-Royer, James Kempf
2004 B conf
WCNC
Xia Gao, Xiaohong Quan, Ravi Jain, Toshiro Kawahara, Ged Powell
2003 B conf
WCNC
Xia Gao, Gang Wu, Toshio Miki
2003 B conf
PIMRC
Xia Gao, Gang Wu
2003 conf
ICC
Xia Gao, Suhas N. Diggavi, S. Muthukrishnan
2003 B conf
GLOBECOM
Xia Gao, Gang Wu
2003 conf
ICC
Xia Gao, Gang Wu, Toshio Miki
2002
Xia Gao
2001 J jnl
J. High Speed Networks
Xia Gao, Thyagarajan Nandagopal, Vaduvur Bharghavan
2000 A* conf
MobiCom
Thyagarajan Nandagopal, Tae-Eun Kim, Xia Gao, Vaduvur Bharghavan
redb/extractors/decompiler/apk/smali_parser.py
← Index redb/extractors/decompiler/apk/smali_parser.py python
"""Smali file parser — extracts individual method bodies from apktool output.

Parses .smali files produced by apktool and extracts per-method bodies,
instruction counts, and register counts.
"""

import os
import re
from dataclasses import dataclass, field
from typing import Dict, List, Optional


@dataclass
class SmaliMethod:
    """Parsed smali method data."""
    class_name: str
    method_name: str
    method_signature: str
    body: str
    instruction_count: int = 0
    register_count: int = 0
    access_flags: List[str] = field(default_factory=list)


# Directives start with '.' — these are metadata, not instructions
_DIRECTIVE_RE = re.compile(r"^\s*\.")
# Labels start with ':'
_LABEL_RE = re.compile(r"^\s*:")
# Blank or comment lines
_BLANK_OR_COMMENT_RE = re.compile(r"^\s*(#.*)?$")
# Method declaration
_METHOD_START_RE = re.compile(
    r"^\.method\s+(.*?)\s+(\S+)\(([^)]*)\)(\S+)\s*$"
)
_METHOD_START_SIMPLE_RE = re.compile(
    r"^\.method\s+(.*)"
)
# .registers or .locals directive
_REGISTERS_RE = re.compile(r"^\s*\.registers\s+(\d+)")
_LOCALS_RE = re.compile(r"^\s*\.locals\s+(\d+)")
# .line directive
_LINE_RE = re.compile(r"^\s*\.line\s+\d+")


class SmaliParser:
    """Parser for apktool smali output files."""

    @staticmethod
    def parse_smali_file(filepath: str) -> List[SmaliMethod]:
        """Parse a single .smali file and return list of methods.

        Each .smali file contains one class with all its methods.
        """
        with open(filepath, "r", encoding="utf-8", errors="replace") as f:
            content = f.read()

        return SmaliParser._parse_smali_content(content, filepath)

    @staticmethod
    def _parse_smali_content(content: str, source: str = "") -> List[SmaliMethod]:
        """Parse smali text content and extract methods."""
        lines = content.split("\n")
        methods = []

        # Extract class name from .class directive
        class_name = ""
        for line in lines:
            if line.startswith(".class "):
                parts = line.split()
                class_name = parts[-1]  # Last token is the class descriptor
                break

        in_method = False
        method_lines = []
        method_header = ""
        access_flags = []
        skip_method = False

        for line in lines:
            if line.startswith(".method "):
                in_method = True
                method_lines = []
                method_header = line
                skip_method = False

                # Parse access flags and method signature
                remainder = line[len(".method "):].strip()
                tokens = remainder.split()
                access_flags = []
                method_sig_token = tokens[-1] if tokens else ""

                for t in tokens[:-1]:
                    access_flags.append(t)

                # Skip abstract and native methods (no body)
                if "abstract" in access_flags or "native" in access_flags:
                    skip_method = True

            elif line.startswith(".end method"):
                if in_method and not skip_method:
                    body = "\n".join(method_lines)
                    method_name, signature = SmaliParser._parse_method_sig(
                        method_header
                    )
                    instruction_count = SmaliParser.count_instructions(body)
                    register_count = SmaliParser._extract_register_count(body)

                    methods.append(
                        SmaliMethod(
                            class_name=class_name,
                            method_name=method_name,
                            method_signature=signature,
                            body=body,
                            instruction_count=instruction_count,
                            register_count=register_count,
                            access_flags=access_flags,
                        )
                    )
                in_method = False
                method_lines = []
                access_flags = []

            elif in_method and not skip_method:
                method_lines.append(line)

        return methods

    @staticmethod
    def parse_smali_directory(dirpath: str) -> Dict[str, SmaliMethod]:
        """Parse all .smali files in a directory tree.

        Returns dict keyed by 'ClassName->methodName(signature)ReturnType'.
        """
        result = {}
        for root, _dirs, files in os.walk(dirpath):
            for fname in files:
                if fname.endswith(".smali"):
                    fpath = os.path.join(root, fname)
                    try:
                        methods = SmaliParser.parse_smali_file(fpath)
                        for m in methods:
                            key = SmaliParser.make_method_key(
                                m.class_name, m.method_name, m.method_signature
                            )
                            result[key] = m
                    except Exception:
                        continue
        return result

    @staticmethod
    def normalize_smali_body(body: str) -> str:
        """Normalize smali body for consistent hashing.

        Strips comments, .line directives, normalizes whitespace.
        """
        lines = []
        for line in body.split("\n"):
            stripped = line.strip()
            # Skip empty lines, comments, and .line directives
            if not stripped or stripped.startswith("#"):
                continue
            if _LINE_RE.match(stripped):
                continue
            lines.append(stripped)
        return "\n".join(lines)

    @staticmethod
    def count_instructions(body: str) -> int:
        """Count actual Dalvik instructions (skip directives, labels, blanks)."""
        count = 0
        for line in body.split("\n"):
            stripped = line.strip()
            if not stripped:
                continue
            if _DIRECTIVE_RE.match(stripped):
                continue
            if _LABEL_RE.match(stripped):
                continue
            if _BLANK_OR_COMMENT_RE.match(stripped):
                continue
            count += 1
        return count

    @staticmethod
    def _extract_register_count(body: str) -> int:
        """Extract register count from .registers or .locals directive.

        apktool outputs .locals (local registers only) by default.
        .registers (total = locals + params) is used with --use-registers.
        We return whichever is present.
        """
        for line in body.split("\n"):
            stripped = line.strip()
            m = _REGISTERS_RE.match(stripped)
            if m:
                return int(m.group(1))
            m = _LOCALS_RE.match(stripped)
            if m:
                return int(m.group(1))
        return 0

    @staticmethod
    def _parse_method_sig(header_line: str) -> tuple:
        """Parse method name and signature from .method header line.

        Input: '.method public onCreate(Landroid/os/Bundle;)V'
        Returns: ('onCreate', '(Landroid/os/Bundle;)V')
        """
        remainder = header_line[len(".method "):].strip()
        tokens = remainder.split()
        if not tokens:
            return ("unknown", "()")

        # Last token contains methodName(params)returnType
        method_part = tokens[-1]

        paren_idx = method_part.find("(")
        if paren_idx == -1:
            return (method_part, "()")

        method_name = method_part[:paren_idx]
        signature = method_part[paren_idx:]

        return (method_name, signature)

    @staticmethod
    def make_method_key(class_name: str, method_name: str, signature: str) -> str:
        """Build a canonical method key for cross-tool matching.

        Format: 'Lcom/example/Foo;->methodName(params)ReturnType'
        """
        return f"{class_name}->{method_name}{signature}"