Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
3d47e860
Kaydet (Commit)
3d47e860
authored
Ock 14, 2015
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Be more informative
Change-Id: I58cd259055b87cd78d7c6936b2e479ff2cd1ed40
üst
8c291bb1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletion
+37
-1
formulagroupcl.cxx
sc/source/core/opencl/formulagroupcl.cxx
+37
-1
No files found.
sc/source/core/opencl/formulagroupcl.cxx
Dosyayı görüntüle @
3d47e860
...
@@ -77,6 +77,42 @@ namespace sc { namespace opencl {
...
@@ -77,6 +77,42 @@ namespace sc { namespace opencl {
namespace
{
namespace
{
std
::
string
StackVarEnumToString
(
StackVarEnum
e
)
{
switch
(
e
)
{
#define CASE(x) case sv##x: return #x
CASE
(
Byte
);
CASE
(
Double
);
CASE
(
String
);
CASE
(
SingleRef
);
CASE
(
DoubleRef
);
CASE
(
Matrix
);
CASE
(
Index
);
CASE
(
Jump
);
CASE
(
External
);
CASE
(
FAP
);
CASE
(
JumpMatrix
);
CASE
(
RefList
);
CASE
(
EmptyCell
);
CASE
(
MatrixCell
);
CASE
(
HybridCell
);
CASE
(
HybridValueCell
);
CASE
(
ExternalSingleRef
);
CASE
(
ExternalDoubleRef
);
CASE
(
ExternalName
);
CASE
(
SingleVectorRef
);
CASE
(
DoubleVectorRef
);
CASE
(
Subroutine
);
CASE
(
Error
);
CASE
(
Missing
);
CASE
(
Sep
);
CASE
(
Unknown
);
#undef CASE
}
return
std
::
to_string
(
static_cast
<
int
>
(
e
));
}
#ifdef SAL_DETAIL_ENABLE_LOG_INFO
#ifdef SAL_DETAIL_ENABLE_LOG_INFO
std
::
string
linenumberify
(
const
std
::
string
s
)
std
::
string
linenumberify
(
const
std
::
string
s
)
{
{
...
@@ -2553,7 +2589,7 @@ DynamicKernelSoPArguments::DynamicKernelSoPArguments(
...
@@ -2553,7 +2589,7 @@ DynamicKernelSoPArguments::DynamicKernelSoPArguments(
}
}
else
else
{
{
throw
UnhandledToken
(
pChild
,
"unknown operand for ocPush"
);
throw
UnhandledToken
(
pChild
,
(
"unhandled operand "
+
StackVarEnumToString
(
pChild
->
GetType
())
+
" for ocPush"
).
c_str
()
);
}
}
break
;
break
;
case
ocDiv
:
case
ocDiv
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment