由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - GCC compiler 的问题
相关主题
Java怎么不能用新的版本编译?C++的大数运算问题
Builtin function in PythonRe: 建议用open64Re: 改GCC 弄出一个特殊的Compiler,可能
建议用open64Re: 改GCC 弄出一个特殊的Compiler,可能吗?[zt]spec.org 测试报告中的ratio是如何算出来的?
请教一个基础C++问题 (转载)问个VBA的问题
问个初级问题,问方向就业问题
程序中的各个变量/数组的内存地址是否会混在一起?Website Frontend 的 zoom in 模块
CPU 支持操作系统的问题 (转载)internals of gcc
是主板要坏了吗?web后端如何push message到前端?
相关话题的讨论汇总
话题: routines话题: gcc话题: those话题: library话题: runtime
进入CS版参与讨论
1 (共1页)
l***o
发帖数: 302
1
We have a customized gcc frontend/runtime library for a new C-like programming
language, the package is from a third party company. They defined some
routines (pretty much like __ashlsi3() for Arithmetic functions) in the
runtime library. Those routines are supposed to be triggered by any assignment
(e.g. a=b) in the codes. The problem is there is nowhere they refer to these
routines except in libcxx/file.c file.h where those routines are declared.
The -S option does give the assembley which con
j****s
发帖数: 5092
2
The third party company added some hooks in the GCC compiler, so the compiler
will generate those builtin function calls when it sees the assignment.
You can take a look at gcc/optabs.c, it generates some libgcc library calls.

programming
assignment

【在 l***o 的大作中提到】
: We have a customized gcc frontend/runtime library for a new C-like programming
: language, the package is from a third party company. They defined some
: routines (pretty much like __ashlsi3() for Arithmetic functions) in the
: runtime library. Those routines are supposed to be triggered by any assignment
: (e.g. a=b) in the codes. The problem is there is nowhere they refer to these
: routines except in libcxx/file.c file.h where those routines are declared.
: The -S option does give the assembley which con

1 (共1页)
进入CS版参与讨论
相关主题
web后端如何push message到前端?问个初级问题,
请问为什么这个程序会出现RunTime Error程序中的各个变量/数组的内存地址是否会混在一起?
[公告] CompSci 板的投票结果CPU 支持操作系统的问题 (转载)
SPAM 2.0是主板要坏了吗?
Java怎么不能用新的版本编译?C++的大数运算问题
Builtin function in PythonRe: 建议用open64Re: 改GCC 弄出一个特殊的Compiler,可能
建议用open64Re: 改GCC 弄出一个特殊的Compiler,可能吗?[zt]spec.org 测试报告中的ratio是如何算出来的?
请教一个基础C++问题 (转载)问个VBA的问题
相关话题的讨论汇总
话题: routines话题: gcc话题: those话题: library话题: runtime