{"id":1104,"date":"2022-03-02T19:47:37","date_gmt":"2022-03-02T11:47:37","guid":{"rendered":"https:\/\/www.xianwaizhiyin.net\/?p=1104"},"modified":"2022-06-11T02:32:44","modified_gmt":"2022-06-10T18:32:44","slug":"x86%e6%b1%87%e7%bc%96%e5%85%a5%e9%97%a8-%e5%a6%82%e4%bd%95%e5%9c%a8c%e8%af%ad%e8%a8%80%e4%b8%ad%e4%bd%bf%e7%94%a8%e6%b1%87%e7%bc%96","status":"publish","type":"post","link":"https:\/\/www.xianwaizhiyin.net\/?p=1104","title":{"rendered":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16"},"content":{"rendered":"\n<p>\u64cd\u4f5c\u7cfb\u7edf\u5185\u6838\u4ee3\u7801\u7edd\u5927\u90e8\u5206\u4f7f\u7528 C \u8bed\u8a00\u7f16\u5199\uff0c\u53ea\u6709\u4e00\u5c0f\u90e8\u5206\u4f7f\u7528\u6c47\u7f16\u8bed\u8a00\u7f16\u5199\uff0c\u4f8b\u5982\u4e0e\u7279\u5b9a <strong>\u4f53\u7cfb\u7ed3\u6784<\/strong> \u76f8\u5173\u7684\u4ee3\u7801\u548c\u5bf9\u6027\u80fd\u5f71\u54cd\u5f88\u5927\u7684\u4ee3\u7801\u3002<\/p>\n\n\n\n<p>GCC\u63d0\u4f9b\u4e86\u5185\u5d4c\u6c47\u7f16\u7684\u529f\u80fd\uff0c\u53ef\u4ee5\u5728C\u4ee3\u7801\u4e2d\u76f4\u63a5\u5185\u5d4c\u6c47\u7f16\u8bed\u8a00\u8bed\u53e5\uff0c\u5927\u5927\u65b9\u4fbf\u4e86\u7a0b\u5e8f\u8bbe\u8ba1\u3002<\/p>\n\n\n\n<p>\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >int main() {\n    int b = 8;\n    __asm__(&quot;movl $7,%eax&quot;);\n    return b;\n}<\/code><\/pre>\n\n\n\n<p>C \u8bed\u8a00\u53ef\u4ee5\u7528 <code class=\"prettyprint\" >__asm__<\/code> \u6765\u5d4c\u5957\u6c47\u7f16\u6307\u4ee4\u8fdb\u53bb\u3002\u4e0a\u9762\u7684\u4ee3\u7801\u5728\u4e2d\u95f4\u4fee\u6539\u4e86 <code>eax<\/code> \u5bc4\u5b58\u5668\u7684\u503c\u3002\u4e0b\u9762\u5c31\u6765\u7f16\u8bd1\u4e00\u4e0b\u770b\u770b\u6548\u679c\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >gcc -o main main.c\n# \u8fd0\u884c gdb\ngdb .\/main\n# \u663e\u793a\u5bc4\u5b58\u5668\u7a97\u53e3\nlayout regs<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"895\" height=\"799\" src=\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png\" alt=\"\" class=\"wp-image-1107\"\/><\/figure>\n\n\n\n<p>\u5982\u4e0a\u56fe\u6240\u793a\uff0c\u5df2\u7ecf\u628a <code class=\"prettyprint\" >eax<\/code> \u4fee\u6539\u6210 7 \u4e86\uff0c\u867d\u7136\u6700\u540e <code>return b<\/code> \u4f1a\u628a <code>eax<\/code> \u8bbe\u7f6e\u6210 8\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>google_ads_content<\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p>\u73b0\u5728\u8bb2\u7b2c\u4e8c\u4e2a\u77e5\u8bc6\u70b9\uff0c\u6c47\u7f16\u91cc\u9762\u5982\u4f55\u4f7f\u7528 C\u8bed\u8a00\u7684\u53d8\u91cf\uff0cC\u8bed\u8a00\u5d4c\u5165\u6c47\u7f16\uff0c\u4e00\u822c\u90fd\u662f\u9700\u8981\u64cd\u4f5cC\u8bed\u8a00\u7684\u53d8\u91cf\u7684\u3002\u800c C\u8bed\u8a00\u7684\u53d8\u91cf\u5728\u5185\u5b58\u91cc\uff0c\u6c47\u7f16\u600e\u4e48\u62ff\u5230\u8fd9\u4e2a\u53d8\u91cf\u7684\u5185\u5b58\u5730\u5740\u5462\uff1f\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >int main() {\n    int num_b = 8;\n    __asm__(&quot;movl -4(%rbp),%eax&quot;);\n    return 0;\n}<\/code><\/pre>\n\n\n\n<p>\u56e0\u4e3a\u6211\u4eec\u77e5\u9053 main \u51fd\u6570\u6267\u884c\u5176\u4ed6\u4ee3\u7801\u4e4b\u524d\uff0c\u4f1a\u5f04\u597d <code class=\"prettyprint\" >rbp<\/code> \u5bc4\u5b58\u5668\uff0c\u4efb\u4f55\u5c40\u90e8\u53d8\u91cf\u90fd\u4f1a\u901a\u8fc7 <code>rbp<\/code> \u538b\u8fdb\u53bb\u5185\u5b58\u5806\u6808\uff0c\u7b2c\u4e00\u4e2a \u5c40\u90e8\u53d8\u91cf <code>num_b<\/code> \u53604\u4e2a\u5b57\u8282\u3002\u6240\u4ee5 <code>rbp<\/code> \u79fb\u52a8 4\u5b57\u8282\uff0c\u5c31\u80fd\u627e\u5230 <code>num_b<\/code> \u7684\u5730\u5740\u3002<\/p>\n\n\n\n<p><code class=\"prettyprint\" >__asm__<\/code> \u51fd\u6570\u901a\u5e38\u5c31\u662f\u628a \u91cc\u9762\u7684\u5b57\u7b26\u4e32\uff0c\u539f\u5c01\u4e0d\u52a8\u5730\u5199\u5230 .s \u6c47\u7f16\u6587\u4ef6\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p>\u4e0b\u9762\u6765\u7528\u6c47\u7f16\u5b9e\u73b0\u4e00\u4e2a\u7b80\u5355\u7684 \u52a0\u6cd5 \u529f\u80fd\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"prettyprint\" >int main() {\n    long num_a = 1;\n    long num_b = 8;\n    long num_rest = 0;\n\u200b\n    \/\/\u5229\u7528 rcx \u4e34\u65f6\u5b58\u50a8\uff0c\u4fdd\u5b58 rcx \u5230\u5806\u6808\uff0c\u4e0d\u7834\u574f main rcx\n    __asm__(&quot;mov %rcx, -32(%rbp)&quot;);\n    \/\/\u628a\u53c2\u6570 num_a \u79fb\u52a8\u5230 rbx\n    __asm__(&quot;mov -24(%rsp),%rcx&quot;);\n    \/\/\u628a\u53c2\u6570 num_b \u52a0\u5230 rbx\n    __asm__(&quot;add -16(%rsp),%rcx&quot;);\n    \/\/\u628a\u53c2\u6570 rbx \u7684\u503c \u62f7\u8d1d\u5230 \u53d8\u91cf num_rest \u7684\u5185\u5b58\u5730\u5740\n    __asm__(&quot;mov %rcx,-8(%rsp)&quot;);\n    \/\/\u6062\u590d main \u7684rcx\n    __asm__(&quot;mov -32(%rbp),%rcx&quot;);\n\u200b\n    return num_rest;\n}<\/code><\/pre>\n\n\n\n<p>\u8fd0\u884c\u60c5\u51b5\u5982\u4e0b\uff0c<code class=\"prettyprint\" >echo $?<\/code> \u8f93\u51fa 9 \uff0c\u7a0b\u5e8f\u6b63\u5e38\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"295\" src=\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-2.png\" alt=\"\" class=\"wp-image-1106\"\/><\/figure>\n\n\n\n<p>\u4e0a\u9762\u8fd9\u79cd\u5199\u6cd5\uff0c\u662f\u6bd4\u8f83\u7b80\u5355\u7684\u7528\u6cd5\uff0c<code class=\"prettyprint\" >gcc<\/code> \u5176\u5b9e\u652f\u6301 <strong>\u6269\u5c55\u7684\u884c\u5185\u6c47\u7f16<\/strong>\uff0c\u8fd9\u4e2a\u5728\u76f8\u5173\u9605\u8bfb\u91cc\u9762\u3002<\/p>\n\n\n\n<p>\u76f8\u5173\u9605\u8bfb\uff1a<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a href=\"https:\/\/bbs.pku.edu.cn\/attach\/ca\/dd\/cadde373e533b3ea\/chapter2.pdf\">https:\/\/bbs.pku.edu.cn\/attach\/ca\/dd\/cadde373e533b3ea\/chapter2.pdf<\/a><\/li><\/ol>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p>\u7531\u4e8e\u7b14\u8005\u7684\u6c34\u5e73\u6709\u9650\uff0c \u52a0\u4e4b\u7f16\u5199\u7684\u540c\u65f6\u8fd8\u8981\u53c2\u4e0e\u5f00\u53d1\u5de5\u4f5c\uff0c\u6587\u4e2d\u96be\u514d\u4f1a\u51fa\u73b0\u4e00\u4e9b\u9519\u8bef\u6216\u8005\u4e0d\u51c6\u786e\u7684\u5730\u65b9\uff0c\u6073\u8bf7\u8bfb\u8005\u6279\u8bc4\u6307\u6b63\u3002\u5982\u679c\u8bfb\u8005\u6709\u4efb\u4f55\u5b9d\u8d35\u610f\u89c1\uff0c\u53ef\u4ee5\u52a0\u6211\u5fae\u4fe1 Loken1\uff0cQQ\uff1a2338195090\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u64cd\u4f5c\u7cfb\u7edf\u5185\u6838\u4ee3\u7801\u7edd\u5927\u90e8\u5206\u4f7f\u7528 C \u8bed\u8a00\u7f16\u5199\uff0c\u53ea\u6709\u4e00\u5c0f\u90e8\u5206\u4f7f\u7528\u6c47\u7f16\u8bed\u8a00\u7f16\u5199\uff0c\u4f8b\u5982\u4e0e\u7279\u5b9a \u4f53\u7cfb\u7ed3\u6784 \u76f8\u5173\u7684\u4ee3\u7801\u548c\u5bf9 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[],"class_list":["post-1104","post","type-post","status-publish","format-standard","hentry","category-assembly"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3<\/title>\n<meta name=\"description\" content=\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.xianwaizhiyin.net\/?p=1104\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3\" \/>\n<meta property=\"og:description\" content=\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xianwaizhiyin.net\/?p=1104\" \/>\n<meta property=\"og:site_name\" content=\"\u5f26\u5916\u4e4b\u97f3\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-02T11:47:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-10T18:32:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"loken\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#website\",\"url\":\"https:\/\/www.xianwaizhiyin.net\/\",\"name\":\"\u5f26\u5916\u4e4b\u97f3\",\"description\":\"FFmpeg\u3001WebRTC\uff0cSRS \u97f3\u89c6\u9891\u3001\u6d41\u5a92\u4f53\u6280\u672f\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xianwaizhiyin.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104#primaryimage\",\"inLanguage\":\"zh-Hans\",\"url\":\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png\",\"contentUrl\":\"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png\",\"width\":895,\"height\":799},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104#webpage\",\"url\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104\",\"name\":\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3\",\"isPartOf\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104#primaryimage\"},\"datePublished\":\"2022-03-02T11:47:37+00:00\",\"dateModified\":\"2022-06-10T18:32:44+00:00\",\"author\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3\"},\"description\":\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16\",\"breadcrumb\":{\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xianwaizhiyin.net\/?p=1104\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/?p=1104#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.xianwaizhiyin.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3\",\"name\":\"loken\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.xianwaizhiyin.net\/#personlogo\",\"inLanguage\":\"zh-Hans\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g\",\"caption\":\"loken\"},\"sameAs\":[\"https:\/\/www.xianwaizhiyin.net\/\"],\"url\":\"https:\/\/www.xianwaizhiyin.net\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3","description":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.xianwaizhiyin.net\/?p=1104","og_locale":"zh_CN","og_type":"article","og_title":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3","og_description":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16","og_url":"https:\/\/www.xianwaizhiyin.net\/?p=1104","og_site_name":"\u5f26\u5916\u4e4b\u97f3","article_published_time":"2022-03-02T11:47:37+00:00","article_modified_time":"2022-06-10T18:32:44+00:00","og_image":[{"url":"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png"}],"twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"loken","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.xianwaizhiyin.net\/#website","url":"https:\/\/www.xianwaizhiyin.net\/","name":"\u5f26\u5916\u4e4b\u97f3","description":"FFmpeg\u3001WebRTC\uff0cSRS \u97f3\u89c6\u9891\u3001\u6d41\u5a92\u4f53\u6280\u672f","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xianwaizhiyin.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"ImageObject","@id":"https:\/\/www.xianwaizhiyin.net\/?p=1104#primaryimage","inLanguage":"zh-Hans","url":"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png","contentUrl":"https:\/\/www.xianwaizhiyin.net\/wp-content\/uploads\/2022\/03\/x86-9-1.png","width":895,"height":799},{"@type":"WebPage","@id":"https:\/\/www.xianwaizhiyin.net\/?p=1104#webpage","url":"https:\/\/www.xianwaizhiyin.net\/?p=1104","name":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16 - \u5f26\u5916\u4e4b\u97f3","isPartOf":{"@id":"https:\/\/www.xianwaizhiyin.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xianwaizhiyin.net\/?p=1104#primaryimage"},"datePublished":"2022-03-02T11:47:37+00:00","dateModified":"2022-06-10T18:32:44+00:00","author":{"@id":"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3"},"description":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16","breadcrumb":{"@id":"https:\/\/www.xianwaizhiyin.net\/?p=1104#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xianwaizhiyin.net\/?p=1104"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.xianwaizhiyin.net\/?p=1104#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.xianwaizhiyin.net\/"},{"@type":"ListItem","position":2,"name":"X86\u6c47\u7f16\u5165\u95e8-\u5982\u4f55\u5728C\u8bed\u8a00\u4e2d\u4f7f\u7528\u6c47\u7f16"}]},{"@type":"Person","@id":"https:\/\/www.xianwaizhiyin.net\/#\/schema\/person\/6605a70af752697df6b62f77c53298a3","name":"loken","image":{"@type":"ImageObject","@id":"https:\/\/www.xianwaizhiyin.net\/#personlogo","inLanguage":"zh-Hans","url":"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f6320b5256dc36ef4243e0acf26144b8ac2668b478302ad154e95ce3202bc421?s=96&d=mm&r=g","caption":"loken"},"sameAs":["https:\/\/www.xianwaizhiyin.net\/"],"url":"https:\/\/www.xianwaizhiyin.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/1104","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1104"}],"version-history":[{"count":3,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/1104\/revisions"}],"predecessor-version":[{"id":2628,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=\/wp\/v2\/posts\/1104\/revisions\/2628"}],"wp:attachment":[{"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xianwaizhiyin.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}