mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
some fixes for DMC
This commit is contained in:
@@ -287,7 +287,7 @@
|
||||
{'hintConvFromXtoItselfNotNeeded': 'conversion from $1 to itself is pointless'},
|
||||
{'hintExprAlwaysX': "expression evaluates always to '$1'"},
|
||||
{'hintQuitCalled': "quit() called"},
|
||||
{'hintProcessing': "processing $1"},
|
||||
{'hintProcessing': "$1"},
|
||||
{'hintCodeBegin': "generated code listing:"},
|
||||
{'hintCodeEnd': "end of listing"},
|
||||
{'hintConf': "used config file '$1'"},
|
||||
|
||||
@@ -1514,8 +1514,8 @@ above example is equivalent to:
|
||||
|
||||
.. code-block:: nimrod
|
||||
proc divmod(a, b: int, res, remainder: ptr int) =
|
||||
res = a div b
|
||||
remainder = a mod b
|
||||
res^ = a div b
|
||||
remainder^ = a mod b
|
||||
|
||||
var
|
||||
x, y: int
|
||||
|
||||
391
doc/theindex.txt
391
doc/theindex.txt
File diff suppressed because it is too large
Load Diff
@@ -117,7 +117,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
mov eax, `a`
|
||||
add eax, `b`
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
"""
|
||||
|
||||
@@ -126,7 +126,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
mov eax, `a`
|
||||
sub eax, `b`
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
"""
|
||||
|
||||
@@ -135,7 +135,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
mov eax, `a`
|
||||
neg eax
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
"""
|
||||
|
||||
@@ -146,7 +146,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
xor edx, edx
|
||||
idiv ecx
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
"""
|
||||
|
||||
@@ -157,7 +157,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
xor edx, edx
|
||||
idiv ecx
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
mov eax, edx
|
||||
"""
|
||||
@@ -169,7 +169,7 @@ when asmVersion and not defined(gcc) and not defined(llvm_gcc):
|
||||
xor edx, edx
|
||||
imul ecx
|
||||
jno theEnd
|
||||
call raiseOverflow
|
||||
call `raiseOverflow`
|
||||
theEnd:
|
||||
"""
|
||||
|
||||
|
||||
384
lib/base/postgres.nim
Normal file
384
lib/base/postgres.nim
Normal file
@@ -0,0 +1,384 @@
|
||||
# This module contains the definitions for structures and externs for
|
||||
# functions used by frontend postgres applications. It is based on
|
||||
# Postgresql's libpq-fe.h.
|
||||
#
|
||||
# It is for postgreSQL version 7.4 and higher with support for the v3.0
|
||||
# connection-protocol
|
||||
#
|
||||
|
||||
when defined(windows):
|
||||
const dllName = "pq.dll"
|
||||
elif defined(macosx):
|
||||
const dllName = "libpq.dylib"
|
||||
else:
|
||||
const dllName = "libpq.so"
|
||||
|
||||
type
|
||||
POid* = ptr Oid
|
||||
Oid* = int32
|
||||
|
||||
const
|
||||
ERROR_MSG_LENGTH* = 4096
|
||||
CMDSTATUS_LEN* = 40
|
||||
|
||||
type
|
||||
TSockAddr* = array[1..112, int8]
|
||||
TPGresAttDesc*{.pure, final.} = object
|
||||
name*: cstring
|
||||
adtid*: Oid
|
||||
adtsize*: int
|
||||
|
||||
PPGresAttDesc* = ptr TPGresAttDesc
|
||||
PPPGresAttDesc* = ptr PPGresAttDesc
|
||||
TPGresAttValue*{.pure, final.} = object
|
||||
length*: int32
|
||||
value*: cstring
|
||||
|
||||
PPGresAttValue* = ptr TPGresAttValue
|
||||
PPPGresAttValue* = ptr PPGresAttValue
|
||||
PExecStatusType* = ptr TExecStatusType
|
||||
TExecStatusType* = enum
|
||||
PGRES_EMPTY_QUERY = 0, PGRES_COMMAND_OK, PGRES_TUPLES_OK, PGRES_COPY_OUT,
|
||||
PGRES_COPY_IN, PGRES_BAD_RESPONSE, PGRES_NONFATAL_ERROR, PGRES_FATAL_ERROR
|
||||
TPGlobjfuncs*{.pure, final.} = object
|
||||
fn_lo_open*: Oid
|
||||
fn_lo_close*: Oid
|
||||
fn_lo_creat*: Oid
|
||||
fn_lo_unlink*: Oid
|
||||
fn_lo_lseek*: Oid
|
||||
fn_lo_tell*: Oid
|
||||
fn_lo_read*: Oid
|
||||
fn_lo_write*: Oid
|
||||
|
||||
PPGlobjfuncs* = ptr TPGlobjfuncs
|
||||
PConnStatusType* = ptr TConnStatusType
|
||||
TConnStatusType* = enum
|
||||
CONNECTION_OK, CONNECTION_BAD, CONNECTION_STARTED, CONNECTION_MADE,
|
||||
CONNECTION_AWAITING_RESPONSE, CONNECTION_AUTH_OK, CONNECTION_SETENV,
|
||||
CONNECTION_SSL_STARTUP, CONNECTION_NEEDED
|
||||
TPGconn* {.pure, final.} = object
|
||||
pghost*: cstring
|
||||
pgtty*: cstring
|
||||
pgport*: cstring
|
||||
pgoptions*: cstring
|
||||
dbName*: cstring
|
||||
status*: TConnStatusType
|
||||
errorMessage*: array[0..(ERROR_MSG_LENGTH) - 1, char]
|
||||
Pfin*: TFile
|
||||
Pfout*: TFile
|
||||
Pfdebug*: TFile
|
||||
sock*: int32
|
||||
laddr*: TSockAddr
|
||||
raddr*: TSockAddr
|
||||
salt*: array[0..(2) - 1, char]
|
||||
asyncNotifyWaiting*: int32
|
||||
notifyList*: pointer
|
||||
pguser*: cstring
|
||||
pgpass*: cstring
|
||||
lobjfuncs*: PPGlobjfuncs
|
||||
|
||||
PPGconn* = ptr TPGconn
|
||||
TPGresult* {.pure, final.} = object
|
||||
ntups*: int32
|
||||
numAttributes*: int32
|
||||
attDescs*: PPGresAttDesc
|
||||
tuples*: PPPGresAttValue
|
||||
tupArrSize*: int32
|
||||
resultStatus*: TExecStatusType
|
||||
cmdStatus*: array[0..(CMDSTATUS_LEN) - 1, char]
|
||||
binary*: int32
|
||||
conn*: PPGconn
|
||||
|
||||
PPGresult* = ptr TPGresult
|
||||
PPostgresPollingStatusType* = ptr PostgresPollingStatusType
|
||||
PostgresPollingStatusType* = enum
|
||||
PGRES_POLLING_FAILED = 0, PGRES_POLLING_READING, PGRES_POLLING_WRITING,
|
||||
PGRES_POLLING_OK, PGRES_POLLING_ACTIVE
|
||||
PPGTransactionStatusType* = ptr PGTransactionStatusType
|
||||
PGTransactionStatusType* = enum
|
||||
PQTRANS_IDLE, PQTRANS_ACTIVE, PQTRANS_INTRANS, PQTRANS_INERROR,
|
||||
PQTRANS_UNKNOWN
|
||||
PPGVerbosity* = ptr PGVerbosity
|
||||
PGVerbosity* = enum
|
||||
PQERRORS_TERSE, PQERRORS_DEFAULT, PQERRORS_VERBOSE
|
||||
PpgNotify* = ptr pgNotify
|
||||
pgNotify* {.pure, final.} = object
|
||||
relname*: cstring
|
||||
be_pid*: int32
|
||||
extra*: cstring
|
||||
|
||||
PQnoticeReceiver* = proc (arg: pointer, res: PPGresult){.cdecl.}
|
||||
PQnoticeProcessor* = proc (arg: pointer, message: cstring){.cdecl.}
|
||||
Ppqbool* = ptr pqbool
|
||||
pqbool* = char
|
||||
P_PQprintOpt* = ptr PQprintOpt
|
||||
PQprintOpt* {.pure, final.} = object
|
||||
header*: pqbool
|
||||
align*: pqbool
|
||||
standard*: pqbool
|
||||
html3*: pqbool
|
||||
expanded*: pqbool
|
||||
pager*: pqbool
|
||||
fieldSep*: cstring
|
||||
tableOpt*: cstring
|
||||
caption*: cstring
|
||||
fieldName*: ptr cstring
|
||||
|
||||
P_PQconninfoOption* = ptr PQconninfoOption
|
||||
PQconninfoOption* {.pure, final.} = object
|
||||
keyword*: cstring
|
||||
envvar*: cstring
|
||||
compiled*: cstring
|
||||
val*: cstring
|
||||
label*: cstring
|
||||
dispchar*: cstring
|
||||
dispsize*: int32
|
||||
|
||||
PPQArgBlock* = ptr PQArgBlock
|
||||
PQArgBlock* {.pure, final.} = object
|
||||
length*: int32
|
||||
isint*: int32
|
||||
p*: pointer
|
||||
|
||||
proc PQconnectStart*(conninfo: cstring): PPGconn{.cdecl, dynlib: dllName,
|
||||
importc: "PQconnectStart".}
|
||||
proc PQconnectPoll*(conn: PPGconn): PostgresPollingStatusType{.cdecl,
|
||||
dynlib: dllName, importc: "PQconnectPoll".}
|
||||
|
||||
proc PQconnectdb*(conninfo: cstring): PPGconn{.cdecl, dynlib: dllName,
|
||||
importc: "PQconnectdb".}
|
||||
proc PQsetdbLogin*(pghost: cstring, pgport: cstring, pgoptions: cstring,
|
||||
pgtty: cstring, dbName: cstring, login: cstring, pwd: cstring): PPGconn{.
|
||||
cdecl, dynlib: dllName, importc: "PQsetdbLogin".}
|
||||
|
||||
proc PQsetdb*(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME: cstring): ppgconn
|
||||
|
||||
proc PQfinish*(conn: PPGconn){.cdecl, dynlib: dllName, importc: "PQfinish".}
|
||||
|
||||
proc PQconndefaults*(): PPQconninfoOption{.cdecl, dynlib: dllName,
|
||||
importc: "PQconndefaults".}
|
||||
|
||||
proc PQconninfoFree*(connOptions: PPQconninfoOption){.cdecl, dynlib: dllName,
|
||||
importc: "PQconninfoFree".}
|
||||
|
||||
proc PQresetStart*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQresetStart".}
|
||||
proc PQresetPoll*(conn: PPGconn): PostgresPollingStatusType{.cdecl,
|
||||
dynlib: dllName, importc: "PQresetPoll".}
|
||||
|
||||
proc PQreset*(conn: PPGconn){.cdecl, dynlib: dllName, importc: "PQreset".}
|
||||
|
||||
proc PQrequestCancel*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQrequestCancel".}
|
||||
|
||||
proc PQdb*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQdb".}
|
||||
proc PQuser*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQuser".}
|
||||
proc PQpass*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQpass".}
|
||||
proc PQhost*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQhost".}
|
||||
proc PQport*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQport".}
|
||||
proc PQtty*(conn: PPGconn): cstring{.cdecl, dynlib: dllName, importc: "PQtty".}
|
||||
proc PQoptions*(conn: PPGconn): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQoptions".}
|
||||
proc PQstatus*(conn: PPGconn): TConnStatusType{.cdecl, dynlib: dllName,
|
||||
importc: "PQstatus".}
|
||||
proc PQtransactionStatus*(conn: PPGconn): PGTransactionStatusType{.cdecl,
|
||||
dynlib: dllName, importc: "PQtransactionStatus".}
|
||||
proc PQparameterStatus*(conn: PPGconn, paramName: cstring): cstring{.cdecl,
|
||||
dynlib: dllName, importc: "PQparameterStatus".}
|
||||
proc PQprotocolVersion*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQprotocolVersion".}
|
||||
proc PQerrorMessage*(conn: PPGconn): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQerrorMessage".}
|
||||
proc PQsocket*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQsocket".}
|
||||
proc PQbackendPID*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQbackendPID".}
|
||||
proc PQclientEncoding*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQclientEncoding".}
|
||||
proc PQsetClientEncoding*(conn: PPGconn, encoding: cstring): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQsetClientEncoding".}
|
||||
when defined(USE_SSL):
|
||||
# Get the SSL structure associated with a connection
|
||||
proc PQgetssl*(conn: PPGconn): PSSL{.cdecl, dynlib: dllName,
|
||||
importc: "PQgetssl".}
|
||||
|
||||
proc PQsetErrorVerbosity*(conn: PPGconn, verbosity: PGVerbosity): PGVerbosity{.
|
||||
cdecl, dynlib: dllName, importc: "PQsetErrorVerbosity".}
|
||||
|
||||
proc PQtrace*(conn: PPGconn, debug_port: TFile){.cdecl, dynlib: dllName,
|
||||
importc: "PQtrace".}
|
||||
proc PQuntrace*(conn: PPGconn){.cdecl, dynlib: dllName, importc: "PQuntrace".}
|
||||
|
||||
proc PQsetNoticeReceiver*(conn: PPGconn, theProc: PQnoticeReceiver,
|
||||
arg: pointer): PQnoticeReceiver {.
|
||||
cdecl, dynlib: dllName, importc: "PQsetNoticeReceiver".}
|
||||
proc PQsetNoticeProcessor*(conn: PPGconn, theProc: PQnoticeProcessor,
|
||||
arg: pointer): PQnoticeProcessor{.
|
||||
cdecl, dynlib: dllName, importc: "PQsetNoticeProcessor".}
|
||||
|
||||
proc PQexec*(conn: PPGconn, query: cstring): PPGresult{.cdecl, dynlib: dllName,
|
||||
importc: "PQexec".}
|
||||
proc PQexecParams*(conn: PPGconn, command: cstring, nParams: int32,
|
||||
paramTypes: POid, paramValues: cstringArray,
|
||||
paramLengths, paramFormats: ptr int32,
|
||||
resultFormat: int32): PPGresult {.cdecl, dynlib: dllName,
|
||||
importc: "PQexecParams".}
|
||||
proc PQexecPrepared*(conn: PPGconn, stmtName: cstring, nParams: int32,
|
||||
paramValues: cstringArray,
|
||||
paramLengths, paramFormats: ptr int32,
|
||||
resultFormat: int32): PPGresult {.
|
||||
cdecl, dynlib: dllName, importc: "PQexecPrepared".}
|
||||
|
||||
proc PQsendQuery*(conn: PPGconn, query: cstring): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQsendQuery".}
|
||||
proc PQsendQueryParams*(conn: PPGconn, command: cstring, nParams: int32,
|
||||
paramTypes: POid, paramValues: cstringArray,
|
||||
paramLengths, paramFormats: ptr int32,
|
||||
resultFormat: int32): int32 {.cdecl, dynlib: dllName,
|
||||
importc: "PQsendQueryParams".}
|
||||
proc PQsendQueryPrepared*(conn: PPGconn, stmtName: cstring, nParams: int32,
|
||||
paramValues: cstringArray,
|
||||
paramLengths, paramFormats: ptr int32,
|
||||
resultFormat: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "PQsendQueryPrepared".}
|
||||
proc PQgetResult*(conn: PPGconn): PPGresult{.cdecl, dynlib: dllName,
|
||||
importc: "PQgetResult".}
|
||||
proc PQisBusy*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQisBusy".}
|
||||
proc PQconsumeInput*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQconsumeInput".}
|
||||
|
||||
proc PQnotifies*(conn: PPGconn): PPGnotify{.cdecl, dynlib: dllName,
|
||||
importc: "PQnotifies".}
|
||||
|
||||
proc PQputCopyData*(conn: PPGconn, buffer: cstring, nbytes: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "PQputCopyData".}
|
||||
proc PQputCopyEnd*(conn: PPGconn, errormsg: cstring): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQputCopyEnd".}
|
||||
proc PQgetCopyData*(conn: PPGconn, buffer: cstringArray, async: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQgetCopyData".}
|
||||
|
||||
proc PQgetline*(conn: PPGconn, str: cstring, len: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQgetline".}
|
||||
proc PQputline*(conn: PPGconn, str: cstring): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQputline".}
|
||||
proc PQgetlineAsync*(conn: PPGconn, buffer: cstring, bufsize: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "PQgetlineAsync".}
|
||||
proc PQputnbytes*(conn: PPGconn, buffer: cstring, nbytes: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQputnbytes".}
|
||||
proc PQendcopy*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQendcopy".}
|
||||
|
||||
proc PQsetnonblocking*(conn: PPGconn, arg: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQsetnonblocking".}
|
||||
proc PQisnonblocking*(conn: PPGconn): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQisnonblocking".}
|
||||
|
||||
proc PQflush*(conn: PPGconn): int32{.cdecl, dynlib: dllName, importc: "PQflush".}
|
||||
|
||||
proc PQfn*(conn: PPGconn, fnid: int32, result_buf,
|
||||
result_len: ptr int32, result_is_int: int32, args: PPQArgBlock,
|
||||
nargs: int32): PPGresult{.cdecl, dynlib: dllName, importc: "PQfn".}
|
||||
|
||||
proc PQresultStatus*(res: PPGresult): TExecStatusType{.cdecl, dynlib: dllName,
|
||||
importc: "PQresultStatus".}
|
||||
proc PQresStatus*(status: TExecStatusType): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQresStatus".}
|
||||
proc PQresultErrorMessage*(res: PPGresult): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQresultErrorMessage".}
|
||||
proc PQresultErrorField*(res: PPGresult, fieldcode: int32): cstring{.cdecl,
|
||||
dynlib: dllName, importc: "PQresultErrorField".}
|
||||
proc PQntuples*(res: PPGresult): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQntuples".}
|
||||
proc PQnfields*(res: PPGresult): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQnfields".}
|
||||
proc PQbinaryTuples*(res: PPGresult): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQbinaryTuples".}
|
||||
proc PQfname*(res: PPGresult, field_num: int32): cstring{.cdecl,
|
||||
dynlib: dllName, importc: "PQfname".}
|
||||
proc PQfnumber*(res: PPGresult, field_name: cstring): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQfnumber".}
|
||||
proc PQftable*(res: PPGresult, field_num: int32): Oid{.cdecl, dynlib: dllName,
|
||||
importc: "PQftable".}
|
||||
proc PQftablecol*(res: PPGresult, field_num: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQftablecol".}
|
||||
proc PQfformat*(res: PPGresult, field_num: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "PQfformat".}
|
||||
proc PQftype*(res: PPGresult, field_num: int32): Oid{.cdecl, dynlib: dllName,
|
||||
importc: "PQftype".}
|
||||
proc PQfsize*(res: PPGresult, field_num: int32): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQfsize".}
|
||||
proc PQfmod*(res: PPGresult, field_num: int32): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQfmod".}
|
||||
proc PQcmdStatus*(res: PPGresult): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQcmdStatus".}
|
||||
proc PQoidStatus*(res: PPGresult): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQoidStatus".}
|
||||
|
||||
proc PQoidValue*(res: PPGresult): Oid{.cdecl, dynlib: dllName,
|
||||
importc: "PQoidValue".}
|
||||
|
||||
proc PQcmdTuples*(res: PPGresult): cstring{.cdecl, dynlib: dllName,
|
||||
importc: "PQcmdTuples".}
|
||||
proc PQgetvalue*(res: PPGresult, tup_num: int32, field_num: int32): cstring{.
|
||||
cdecl, dynlib: dllName, importc: "PQgetvalue".}
|
||||
proc PQgetlength*(res: PPGresult, tup_num: int32, field_num: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "PQgetlength".}
|
||||
proc PQgetisnull*(res: PPGresult, tup_num: int32, field_num: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "PQgetisnull".}
|
||||
|
||||
proc PQclear*(res: PPGresult){.cdecl, dynlib: dllName, importc: "PQclear".}
|
||||
|
||||
proc PQfreemem*(p: pointer){.cdecl, dynlib: dllName, importc: "PQfreemem".}
|
||||
|
||||
proc PQmakeEmptyPGresult*(conn: PPGconn, status: TExecStatusType): PPGresult{.
|
||||
cdecl, dynlib: dllName, importc: "PQmakeEmptyPGresult".}
|
||||
|
||||
proc PQescapeString*(till, `from`: cstring, len: int): int{.cdecl,
|
||||
dynlib: dllName, importc: "PQescapeString".}
|
||||
proc PQescapeBytea*(bintext: cstring, binlen: int,
|
||||
bytealen: var int): cstring{.
|
||||
cdecl, dynlib: dllName, importc: "PQescapeBytea".}
|
||||
proc PQunescapeBytea*(strtext: cstring, retbuflen: var int): cstring{.cdecl,
|
||||
dynlib: dllName, importc: "PQunescapeBytea".}
|
||||
|
||||
proc PQprint*(fout: TFile, res: PPGresult, ps: PPQprintOpt){.cdecl,
|
||||
dynlib: dllName, importc: "PQprint".}
|
||||
|
||||
proc PQdisplayTuples*(res: PPGresult, fp: TFile, fillAlign: int32,
|
||||
fieldSep: cstring, printHeader: int32, quiet: int32){.
|
||||
cdecl, dynlib: dllName, importc: "PQdisplayTuples".}
|
||||
|
||||
proc PQprintTuples*(res: PPGresult, fout: TFile, printAttName: int32,
|
||||
terseOutput: int32, width: int32){.cdecl, dynlib: dllName,
|
||||
importc: "PQprintTuples".}
|
||||
|
||||
proc lo_open*(conn: PPGconn, lobjId: Oid, mode: int32): int32{.cdecl,
|
||||
dynlib: dllName, importc: "lo_open".}
|
||||
proc lo_close*(conn: PPGconn, fd: int32): int32{.cdecl, dynlib: dllName,
|
||||
importc: "lo_close".}
|
||||
proc lo_read*(conn: PPGconn, fd: int32, buf: cstring, length: int): int32{.
|
||||
cdecl, dynlib: dllName, importc: "lo_read".}
|
||||
proc lo_write*(conn: PPGconn, fd: int32, buf: cstring, length: int): int32{.
|
||||
cdecl, dynlib: dllName, importc: "lo_write".}
|
||||
proc lo_lseek*(conn: PPGconn, fd: int32, offset: int32, whence: int32): int32{.
|
||||
cdecl, dynlib: dllName, importc: "lo_lseek".}
|
||||
proc lo_creat*(conn: PPGconn, mode: int32): Oid{.cdecl, dynlib: dllName,
|
||||
importc: "lo_creat".}
|
||||
proc lo_tell*(conn: PPGconn, fd: int32): int32{.cdecl, dynlib: dllName,
|
||||
importc: "lo_tell".}
|
||||
proc lo_unlink*(conn: PPGconn, lobjId: Oid): int32{.cdecl, dynlib: dllName,
|
||||
importc: "lo_unlink".}
|
||||
proc lo_import*(conn: PPGconn, filename: cstring): Oid{.cdecl, dynlib: dllName,
|
||||
importc: "lo_import".}
|
||||
proc lo_export*(conn: PPGconn, lobjId: Oid, filename: cstring): int32{.cdecl,
|
||||
dynlib: dllName, importc: "lo_export".}
|
||||
|
||||
proc PQmblen*(s: cstring, encoding: int32): int32{.cdecl, dynlib: dllName,
|
||||
importc: "PQmblen".}
|
||||
|
||||
proc PQenv2encoding*(): int32{.cdecl, dynlib: dllName, importc: "PQenv2encoding".}
|
||||
|
||||
proc PQsetdb(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME: cstring): ppgconn =
|
||||
result = PQsetdbLogin(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME, "", "")
|
||||
|
||||
@@ -286,17 +286,7 @@ static unsigned long nimInf[2]={0xffffffff, 0x7fffffff};
|
||||
#define NIM_NIL ((void*)0) /* C's NULL is fucked up in some C compilers, so
|
||||
the generated code does not rely on it anymore */
|
||||
|
||||
#if defined(HAVE_STDINT_H)
|
||||
# include <stdint.h>
|
||||
typedef int8_t NI8;
|
||||
typedef int16_t NI16;
|
||||
typedef int32_t NI32;
|
||||
typedef int64_t NI64;
|
||||
typedef uint64_t NU64;
|
||||
typedef uint8_t NU8;
|
||||
typedef uint16_t NU16;
|
||||
typedef uint32_t NU32;
|
||||
#elif defined(__BORLANDC__) || defined(__DMC__) \
|
||||
#if defined(__BORLANDC__) || defined(__DMC__) \
|
||||
|| defined(__WATCOMC__) || defined(_MSC_VER)
|
||||
typedef signed char NI8;
|
||||
typedef signed short int NI16;
|
||||
@@ -307,6 +297,16 @@ typedef unsigned short int NU16;
|
||||
typedef unsigned __int64 NU64;
|
||||
typedef __int64 NI64;
|
||||
typedef unsigned int NU32;
|
||||
#elif defined(HAVE_STDINT_H)
|
||||
# include <stdint.h>
|
||||
typedef int8_t NI8;
|
||||
typedef int16_t NI16;
|
||||
typedef int32_t NI32;
|
||||
typedef int64_t NI64;
|
||||
typedef uint64_t NU64;
|
||||
typedef uint8_t NU8;
|
||||
typedef uint16_t NU16;
|
||||
typedef uint32_t NU32;
|
||||
#else
|
||||
typedef signed char NI8;
|
||||
typedef signed short int NI16;
|
||||
|
||||
@@ -1488,6 +1488,11 @@ elif defined(NimrodVM):
|
||||
if x == y: return 0
|
||||
if x < y: return -1
|
||||
return 1
|
||||
|
||||
proc dealloc(p: pointer) = nil
|
||||
proc alloc(size: int): pointer = nil
|
||||
proc alloc0(size: int): pointer = nil
|
||||
proc realloc(p: Pointer, newsize: int): pointer = nil
|
||||
|
||||
{.pop.} # checks
|
||||
{.pop.} # hints
|
||||
|
||||
2378
nim/ast.pas
2378
nim/ast.pas
File diff suppressed because it is too large
Load Diff
@@ -2243,8 +2243,8 @@ begin
|
||||
end
|
||||
end;
|
||||
|
||||
// ---------------------- generation of complex constants -----------------
|
||||
|
||||
// ---------------------- generation of complex constants ---------------------
|
||||
(*
|
||||
function transformRecordExpr(n: PNode): PNode;
|
||||
var
|
||||
i: int;
|
||||
@@ -2263,10 +2263,20 @@ begin
|
||||
field := lookupInRecord(t.n, field.name);
|
||||
if field = nil then
|
||||
InternalError(n.sons[i].info, 'transformRecordExpr: unknown field');
|
||||
if result.sons[field.position] <> nil then
|
||||
InternalError(n.sons[i].info, 'transformRecordExpr: value twice');
|
||||
if result.sons[field.position] <> nil then begin
|
||||
InternalError(n.sons[i].info, 'transformRecordExpr: value twice: ' +
|
||||
renderTree(n.sons[i]));
|
||||
end;
|
||||
result.sons[field.position] := copyTree(n.sons[i].sons[1]);
|
||||
end;
|
||||
end; *)
|
||||
|
||||
function genNamedConstExpr(p: BProc; n: PNode): PRope;
|
||||
begin
|
||||
if n.kind = nkExprColonExpr then
|
||||
result := genConstExpr(p, n.sons[1])
|
||||
else
|
||||
result := genConstExpr(p, n);
|
||||
end;
|
||||
|
||||
function genConstSimpleList(p: BProc; n: PNode): PRope;
|
||||
@@ -2276,8 +2286,8 @@ begin
|
||||
len := sonsLen(n);
|
||||
result := toRope('{'+'');
|
||||
for i := 0 to len - 2 do
|
||||
appf(result, '$1,$n', [genConstExpr(p, n.sons[i])]);
|
||||
if len > 0 then app(result, genConstExpr(p, n.sons[len-1]));
|
||||
appf(result, '$1,$n', [genNamedConstExpr(p, n.sons[i])]);
|
||||
if len > 0 then app(result, genNamedConstExpr(p, n.sons[len-1]));
|
||||
app(result, '}' + tnl)
|
||||
end;
|
||||
|
||||
@@ -2293,16 +2303,9 @@ begin
|
||||
toBitSet(n, cs);
|
||||
result := genRawSetData(cs, int(getSize(n.typ)))
|
||||
end;
|
||||
nkBracket: begin
|
||||
nkBracket, nkPar: begin
|
||||
// XXX: tySequence!
|
||||
result := genConstSimpleList(p, n);
|
||||
end;
|
||||
nkPar: begin
|
||||
if hasSonWith(n, nkExprColonExpr) then
|
||||
trans := transformRecordExpr(n)
|
||||
else
|
||||
trans := n;
|
||||
result := genConstSimpleList(p, trans);
|
||||
end
|
||||
else begin
|
||||
// result := genLiteral(p, n)
|
||||
|
||||
@@ -277,6 +277,7 @@ var
|
||||
i: int;
|
||||
sym: PSym;
|
||||
r, s: PRope;
|
||||
a: TLoc;
|
||||
begin
|
||||
genLineDir(p, t);
|
||||
assert(t.kind = nkAsmStmt);
|
||||
@@ -286,13 +287,19 @@ begin
|
||||
nkStrLit..nkTripleStrLit: app(s, t.sons[i].strVal);
|
||||
nkSym: begin
|
||||
sym := t.sons[i].sym;
|
||||
r := sym.loc.r;
|
||||
if r = nil then begin // if no name has already been given,
|
||||
// it doesn't matter much:
|
||||
r := mangleName(sym);
|
||||
sym.loc.r := r; // but be consequent!
|
||||
end;
|
||||
app(s, r)
|
||||
if sym.kind = skProc then begin
|
||||
initLocExpr(p, t.sons[i], a);
|
||||
app(s, rdLoc(a));
|
||||
end
|
||||
else begin
|
||||
r := sym.loc.r;
|
||||
if r = nil then begin // if no name has already been given,
|
||||
// it doesn't matter much:
|
||||
r := mangleName(sym);
|
||||
sym.loc.r := r; // but be consequent!
|
||||
end;
|
||||
app(s, r)
|
||||
end
|
||||
end
|
||||
else
|
||||
InternalError(t.sons[i].info, 'genAsmStmt()')
|
||||
|
||||
@@ -612,11 +612,14 @@ begin
|
||||
IdTablePut(m.typeCache, t, con(result, '*'+''));
|
||||
if not isImportedType(t) then begin
|
||||
useMagic(m, 'TGenericSeq');
|
||||
appf(m.s[cfsSeqTypes],
|
||||
'struct $2 {$n' +
|
||||
' TGenericSeq Sup;$n' +
|
||||
' $1 data[SEQ_DECL_SIZE];$n' +
|
||||
'};$n', [getTypeDescAux(m, t.sons[0], check), result]);
|
||||
if skipGeneric(t.sons[0]).kind <> tyEmpty then
|
||||
appf(m.s[cfsSeqTypes],
|
||||
'struct $2 {$n' +
|
||||
' TGenericSeq Sup;$n' +
|
||||
' $1 data[SEQ_DECL_SIZE];$n' +
|
||||
'};$n', [getTypeDescAux(m, t.sons[0], check), result])
|
||||
else
|
||||
result := toRope('TGenericSeq')
|
||||
end;
|
||||
app(result, '*'+'');
|
||||
end;
|
||||
@@ -1018,6 +1021,7 @@ begin
|
||||
end;
|
||||
if dataGenerated then exit;
|
||||
case t.kind of
|
||||
tyEmpty: result := toRope('0'+'');
|
||||
tyPointer, tyProc, tyBool, tyChar, tyCString, tyString,
|
||||
tyInt..tyFloat128, tyVar:
|
||||
genTypeInfoAuxBase(gmti, t, result, toRope('0'+''));
|
||||
|
||||
1102
nim/msgs.pas
1102
nim/msgs.pas
File diff suppressed because it is too large
Load Diff
@@ -540,32 +540,35 @@ begin
|
||||
case skipRange(n.typ).kind of
|
||||
tyInt..tyInt64: begin
|
||||
case skipRange(a.typ).kind of
|
||||
tyFloat..tyFloat64: begin
|
||||
tyFloat..tyFloat64:
|
||||
result := newIntNodeT(nsystem.toInt(getFloat(a)), n);
|
||||
exit
|
||||
end;
|
||||
tyChar: begin
|
||||
tyChar:
|
||||
result := newIntNodeT(getOrdValue(a), n);
|
||||
exit
|
||||
end;
|
||||
else begin end
|
||||
else begin
|
||||
result := a;
|
||||
result.typ := n.typ;
|
||||
end
|
||||
end
|
||||
end;
|
||||
tyFloat..tyFloat64: begin
|
||||
case skipRange(a.typ).kind of
|
||||
tyInt..tyInt64, tyEnum, tyBool, tyChar: begin
|
||||
tyInt..tyInt64, tyEnum, tyBool, tyChar:
|
||||
result := newFloatNodeT(toFloat(int(getOrdValue(a))), n);
|
||||
exit
|
||||
else begin
|
||||
result := a;
|
||||
result.typ := n.typ;
|
||||
end
|
||||
else begin end
|
||||
end
|
||||
end;
|
||||
tyOpenArray: exit;
|
||||
else begin end
|
||||
end;
|
||||
result := a;
|
||||
result.typ := n.typ
|
||||
end;
|
||||
tyOpenArray, tyProc: begin end;
|
||||
else begin
|
||||
//n.sons[1] := a;
|
||||
//result := n;
|
||||
result := a;
|
||||
result.typ := n.typ;
|
||||
end
|
||||
end
|
||||
end
|
||||
else begin
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//
|
||||
//
|
||||
// The Nimrod Compiler
|
||||
// (c) Copyright 2008 Andreas Rumpf
|
||||
// (c) Copyright 2009 Andreas Rumpf
|
||||
//
|
||||
// See the file "copying.txt", included in this
|
||||
// distribution, for details about the copyright.
|
||||
|
||||
@@ -440,7 +440,10 @@ begin
|
||||
addSon(result, n.sons[1]);
|
||||
end
|
||||
else result := n.sons[1];
|
||||
end;
|
||||
end; (*
|
||||
tyArray, tySeq: begin
|
||||
if skipGeneric(dest
|
||||
end; *)
|
||||
tyGenericParam, tyAnyEnum: result := n.sons[1];
|
||||
// happens sometimes for generated assignments, etc.
|
||||
else begin end
|
||||
@@ -450,8 +453,7 @@ end;
|
||||
function skipPassAsOpenArray(n: PNode): PNode;
|
||||
begin
|
||||
result := n;
|
||||
while result.kind = nkPassAsOpenArray do
|
||||
result := result.sons[0]
|
||||
while result.kind = nkPassAsOpenArray do result := result.sons[0]
|
||||
end;
|
||||
|
||||
type
|
||||
@@ -855,7 +857,7 @@ begin
|
||||
end
|
||||
end;
|
||||
cnst := getConstExpr(c.module, result);
|
||||
if cnst <> nil then result := cnst; // do not miss an optimization
|
||||
if cnst <> nil then result := cnst; // do not miss an optimization
|
||||
end;
|
||||
|
||||
function processTransf(context: PPassContext; n: PNode): PNode;
|
||||
|
||||
Reference in New Issue
Block a user