The object-code tag has no wiki summary.
0
votes
0answers
2 views
Undefined symbols for architecture i386 refered from file
Undefined symbols for architecture i386:
"_FSUrlExtractor", referenced from:
-[ViewController viewDidLoad] in ViewController.o
ld: symbol(s) not found for architecture i386
clang: ...
1
vote
1answer
179 views
iOs 6 rotation and how To Integrate Cocos2D and UIKit?
Used the Ray Wenderlich tutorial "How to Intergrate UIKit and Cocos2D" mentioned here and it worked great unthil iOs6 was released, then, I get the "Orientation Problem on iOS 6"...
Help? How to ...
-3
votes
3answers
64 views
in the ViewController.m, what's the difference between self.username with _username
@synthesize username = _username;
//Method1
- (void) viewDidLoad
{
self.username = @"admin";
}
//Method2
- (void) viewDidLoad
{
_username = @"admin"
}
Both are worked, and what's the ...
1
vote
2answers
171 views
Some questions regarding compilers and assemblers
Lots of basic questions are there in my mind. I need to clear them.
Statement 1: A compiler converts a human-readable codes to object codes, and those are converted to a machine code (executable) by ...
1
vote
3answers
92 views
Why do assembly call address have 0xFBFFFFFF added to them?
Ok so I am writting an assembler for an OS I am developing. It is coming along great I have about all mov instructions and now I want to implement instructions like call and jmp. I really do not have ...
4
votes
1answer
98 views
Visual Studio: preserve code order/boundaries with compiled code
I have an application consisting of mixed C and x86 assembly code. For complex reasons, the assembly code wants to know if a (purported program counter) value is an address in the area in which the ...
1
vote
1answer
133 views
How to pass data to a custom class(subview) drawRect function?
Edit:
I'm drawing a line using drawRect: function which resides in a custom class in a view which I created in the MainStoryboard.storyboard file. The view does point to the custom class (draw2D) in ...
1
vote
1answer
52 views
Is object code from different programming languages compatible?
Can a library written in one programming language be linked with a program written in some other language? Is object code from two different programming languages that do the exact same thing (e.g add ...
0
votes
2answers
75 views
Object code parentheses (beginner)
Why do I have to add the () at the end of f in this example?
def do_twice(f):
f()
f()
def print_spam():
print 'spam'
do_twice(print_spam)
spam
spam
Is it because function objects ...
3
votes
1answer
532 views
Using LLVM bytecode for libraries (instead of native object files)
What are the implications on
portability (calling convention: does it really matter at an LLVM level when only calling into C or OS library functions)
link time
optimizations
I would like to ...
2
votes
1answer
105 views
Problem with rotate circle
I want to rotate circle follows my finger's path.
If I move my finger more fast, then the circle must rotate fast.
If I move my finger slowly, the circle must slow.
Also circle's movement must ...
5
votes
0answers
452 views
How to Save CCSprite as PNG [closed]
I created CCSprite and add it to the main view.
Then I want to see the sprite image, so I saved it to PNG
But lots of them doesn't saved correctly.
Only show white background.
I can't know the reason, ...
3
votes
1answer
153 views
Noise on CCSprite
I made my project to show simple texture by using CCSprite.
But I found that the texture contains some tiny noise , black pixel bug.
I divided the png file into small piece by using code. And add it ...
1
vote
1answer
116 views
What is a TEX in OpenCL?
What is TEX in the object code of my OpenCL program? I put my kernel in the kernel analyzer and I saw the label TEX in the object code. I'm not sure what it means. I didn't find the description in the ...
1
vote
2answers
62 views
Trace of the language on the object code
Is it possible to look at an object code and tell which language has been used originally to produce it? or does the language leaves a trace or a stamp on the object code ? do the compilers of ...
3
votes
2answers
2k views
Difference between Machine code and Object Code [duplicate]
I'm in the middle of my a levels and im doing some revision for my Computing exam.
I was wondering if someone could tell me what the difference is between machine code and object code.
keep it it ...
11
votes
1answer
4k views
How can I examine contents of a data section of an ELF file on Linux?
I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through a jump table that is stored in the rodata (read-only data) section. I have tried ...
38
votes
8answers
27k views
Assembly code vs Machine code vs Object code?
What is the difference between object code, machine code and assembly code?
Can you give a visual example of their difference?
5
votes
4answers
3k views
Finding locations in machine code (gcc/objdump -d)
If you have a particular line of C code in mind to examine in the machine output, how would you locate it in objdump output. Here is an example
if (cond)
foo;
bar();
and I want to see if bar ...