Tagged Questions
2
votes
2answers
57 views
Intel c++ - optimizer messages
I wonder if it's possible to make Intel C++ compiler (or other compilers such as gcc or clang) display some messages from optimizer. I would like to know what exactly optimizer did with my code. By ...
0
votes
1answer
56 views
gcc breaking rax value after function call
I am rewriting some C functions in ASM for practicing.
My memset function is setting RAX to the same address passed in the RDI register.
But gcc is extending the AL's value with the CDQE instruction.
...
4
votes
1answer
288 views
Remote debugging of 64 bit process on 32 bit machine
I am trying to debug (a simple Hello World application without bug for testing) on a remote intel 64 bit machine from my 32 bit intel notebook.
I run
gcc -g -o cexecute cexecute.c
gdbserver ...
1
vote
0answers
214 views
GCC optimization options for AMD Opteron 4280: benchmark
We're moving from one local computational server with 2*Xeon X5650 to another one with 2*Opteron 4280... Today I was trying to launch my wonderful C programs on the new machine (AMD one), and ...
0
votes
2answers
124 views
Problems with dual asm dialect project intel/AT&T
I am working on a project that needs to be compilable with both QNX-Momentics(based on eclipse, g++ 4.6.1 toolchain) and Visual Studio 2010. For some routines I decided to go for manual assembly ...
2
votes
1answer
175 views
Variable references in Intel style inline assembly and AT&T style, C++
I need to compile some assembly code in both Visual Studio and an IDE using G++ 4.6.1. The -masm=intel flag works as long as I do not reference and address any variables, which however I need to do.
...
0
votes
1answer
100 views
parallel code slower on multicore AMD
parallelized code(openmp), compiled on and intel (linux) with gcc, runs much faster on an intel computer than on an AMD with twice as many cores. I see that all the cores are in use but it takes about ...
1
vote
2answers
93 views
Unresolved __builtin_ia32_stmxcsr
I have inherited code, trying to compile with gcc on Linux.
what library am I looking for that has __builtin_ia32_stmxcsr ?
apologies -- i was too fast to submit; running gcc inside of Nvidia ...
2
votes
1answer
232 views
Understanding new gcc prologue
I was wondering why did gcc introduce a new prologue (and epilogue as well) to functions - especially main() since I only analyzed it. For example, before, it was:
push ebp
mov ebp, esp
sub esp, ...
-1
votes
2answers
166 views
relative offset jumps
How can I force the value of the relative offsets?
I know how to do: jmp label_name
Would like to do: jmp $0x01
Thank you for your time
0
votes
1answer
83 views
ICC library search options
GNU compilers use -llib options to link with libs, is there something similar in icpc?
(I already have specified the -L option to add my lib in the search path).
4
votes
2answers
513 views
Intel-style inline assembly in gcc
I am trying to compile an old C++ software project in Code::Blocks using the gcc compiler, and after fixing a few other issues, I've hit a wall: the project has a file with Intel-style inline ASM ...
1
vote
3answers
2k views
gcc options for optimization on given CPU architecture
I am working on Nehalam/westmere Intel micro architecture CPU. I want to optimize my code for this Architecture. Are there any specialized compilation flags or C functions by gcc which will help me ...
1
vote
1answer
253 views
Declaring strings OUTSIDE the .data segment in nasm assembly
Is there a way to define a string pointer in the .text part of the assembly code like this?
SECTION .text
global main
main:
fmt: ...
0
votes
2answers
3k views
Intel Compiler versus GCC
When I compile an application with Intel's compiler it is slower than when I compile it with GCC. The Intel compiler's output is more than 2x slower. The application contains several nested loops. Are ...
0
votes
4answers
480 views
Too big difference in speed of binaries ,produced with different compilers (C++) [closed]
I have used mainly gcc in my last project and today I decided to benchmark different compilers' results.
I used the same source for gcc 4.5,MSVC from Visual Studio 2010 and Intel C++ .The program ...
1
vote
2answers
1k views
Inline assembly troubles
I tried to compile with GCC inline assembly code which compiled fine with MSVC, but got the following errors for basic operations:
// var is a template variable in a C++ function
__asm__
{
mov ...
4
votes
3answers
223 views
Guarantees on memory ordering and proper programming practice
With respect to the ordering I describe below I have some related questions.
Given these ordering guarantees I don't need explicit fences in many places. However, how can I express the "fence" to ...
1
vote
1answer
323 views
vectorize C++ code to improve STL performance
I am doing calculations on values contained in several large STL vector containers in an application built using C++/ Linux/ GCC / Windows XP/ Intel compiler
Is it worthwile investigating ...
0
votes
1answer
455 views
What is the equivalent of GCC's fno-strict-aliasing flag for ICC, the Intel Compiler?
The Intel compiler appears to accept the -fno-strict-aliasing flag verbatim, but I have not seen that behavior documented anywhere, and the flag may be ignored. Flags such as -no-ansi-alias look ...
0
votes
0answers
207 views
Alignment issue with gcc-4.5.1
I'm optimising an application for lintel atom.Using the gcc-4.5.1
The problem i'm having is for a code snipped using intrinsic like this
xmm1=_mm_loadu_si128((__m128i *)rgiFilter);
...
5
votes
1answer
336 views
How does loop address alignment affect the speed on Intel x86_64?
I'm seeing 15% performance degradation of the same C++ code compiled to exactly same machine instructions but located on differently aligned addresses. When my tiny main loop starts at 0x415220 it's ...
6
votes
4answers
5k views
check if carry flag is set
Using inline assembler [gcc, intel, c], how to check if the carry flag is set after an operation?
2
votes
2answers
2k views
How do I link against Intel TBB on Mac OS X with GCC?
I can't for the life of me figure out how to compile and link against the Intel TBB library on my Mac. I've run the commercial installer and the tbbvars.sh script but I can't figure this out. I have a ...
5
votes
3answers
5k views
ICC vs GCC - Optimization and CPU architecture
I'm interested in knowing how GCC differs from Intel's ICC in terms of the optimization levels and catering to specific processor architecture. I'm using GCC 4.1.2 20070626 and ICC v11.1 for Linux.
...
6
votes
4answers
5k views
default template class argument confuses g++?
Yesterday I ran into a g++ (3.4.6) compiler problem for code that I have been compiling without a problem using the Intel (9.0) compiler. Here's a code snippet that shows what happened:
...
44
votes
5answers
19k views
How do you use gcc to generate assembly code in Intel syntax?
The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
