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
dba1bb24
Kaydet (Commit)
dba1bb24
authored
Eki 02, 2013
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add dummy arm64 code to just get it to compile for now
Change-Id: I9898c0757a2dd495c73bd4b485dd8489f4a2b08e
üst
0f3ad8ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
cpp2uno-arm.cxx
bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx
+1
-1
uno2cpp-arm.cxx
bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm.cxx
+18
-1
No files found.
bridges/source/cpp_uno/gcc3_ios_arm/cpp2uno-arm.cxx
Dosyayı görüntüle @
dba1bb24
...
...
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#if
def __arm
#if
defined(__arm) || defined(__arm64)
// For iOS devices (ARM). Basically a copy of n
// ../gcc3_linux_arm/cpp2uno.cxx with some cleanups and necessary
...
...
bridges/source/cpp_uno/gcc3_ios_arm/uno2cpp-arm.cxx
Dosyayı görüntüle @
dba1bb24
...
...
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#if
def __arm
#if
defined(__arm) || defined(__arm64)
#include <com/sun/star/uno/RuntimeException.hpp>
...
...
@@ -175,6 +175,8 @@ void callVirtualMethod(
sal_uInt32
nGPR
,
double
*
pFPR
)
{
#ifdef __arm
// never called
if
(
!
pThis
)
CPPU_CURRENT_NAMESPACE
::
dummy_can_throw_anything
(
"xxx"
);
// address something
...
...
@@ -225,6 +227,21 @@ void callVirtualMethod(
:
"r0"
,
"r1"
,
"r2"
,
"r3"
,
"r4"
,
"r5"
);
MapReturn
(
r0
,
r1
,
pReturnType
,
(
sal_uInt32
*
)
pRegisterReturn
);
#else
abort
();
// arm64 code not yet implemented
(
void
)
pThis
;
(
void
)
nVtableIndex
;
(
void
)
pRegisterReturn
;
(
void
)
pReturnType
;
(
void
)
pStack
;
(
void
)
nStack
;
(
void
)
pGPR
;
(
void
)
nGPR
;
(
void
)
pFPR
;
#endif
}
}
...
...
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