summaryrefslogtreecommitdiff
path: root/src/cmd/6c/swt.c
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi1-3/+6
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg1-272/+25
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg1-52/+26
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg1-1/+1
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg1-11/+36
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-10/+21
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+587
2011-09-13Imported Upstream version 60Ondřej Surý1-587/+0
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-1/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-11/+18
2010-03-26fix spelling of alignRob Pike1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/778041
2010-03-23Add support for #pragma dynexport.Ian Lance Taylor1-2/+5
R=rsc CC=golang-dev http://codereview.appspot.com/661043
2010-03-22Rename dynld to dynimport throughout.Ian Lance Taylor1-4/+4
Cgo users will need to rerun cgo. R=rsc CC=golang-dev http://codereview.appspot.com/692041
2009-08-24ffi -> dynld.Russ Cox1-10/+8
move out of export data into its own section R=r DELTA=222 (71 added, 99 deleted, 52 changed) OCL=33801 CL=33808
2009-08-24first attempt at real FFI support.Russ Cox1-0/+13
in a .6 file, an export line //ffi T localfib remotefib remote.so means the dynamic linker should initialize localfib, always a pointer, to the address of remotefib, either text (T) or data (D) after loading remote.so. the C compiler will generate an export section when given the pragmas #pragma package fib #pragma ffi T localfib remotefib remote.so needing #pragma package is a bit of a kludge and hopefully could go away later. this is just the 6 tool chain support. other architectures will happen once 6 settles down. code using this to do FFI is in a later CL. R=r DELTA=161 (141 added, 14 deleted, 6 changed) OCL=33783 CL=33795
2008-08-03make 6a, 6c, 6g, 6l, libmach_amd64 build on 64-bit gcc.Russ Cox1-16/+16
these guys really really want long to be 32-bits, so ,s/long/int32/ (and then manual fixup). still passes all tests. (i started out looking for just those longs that needed to be int32 instead, and it was just too hard to track them down one by one.) the longs were rare enough that i don't think it will cause integration problems. R=ken OCL=13787 CL=13789
2008-06-05goos and goarchKen Thompson1-1/+1
SVN=121349
2008-06-04Add compiler source to new directory structureRob Pike1-0/+566
SVN=121164