How to load an address that was allocated in a separate function using IRBuilder - LLVM 6.0
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Working on a research project that requires to add load instructions to an analyzed LLVM IR code to load in a function func_A
addresses that were allocated in a separate function func_B
using IRBuilder
. An example is shown as follows.
define void @func_B() {
%1 = alloca [1 x i32], align 4
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
}
I've been able to find the to-be-loaded llvm:value*
, i.e., val
in the above example, but the problem is val
is a local identifier declared in func_B
and may conflict with func_A
's identifiers (say func_A
declares a local identifier named %1
too) when loaded in func_A
.
How can I load func_B
's %1
without conflicts in func_A
? Note that I can't pass %1
to func_A
as a function parameter since I don't want to change anything of the IR code but adding some load instructions.
Any help would be greatly appreciated!
llvm llvm-ir
add a comment |
Working on a research project that requires to add load instructions to an analyzed LLVM IR code to load in a function func_A
addresses that were allocated in a separate function func_B
using IRBuilder
. An example is shown as follows.
define void @func_B() {
%1 = alloca [1 x i32], align 4
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
}
I've been able to find the to-be-loaded llvm:value*
, i.e., val
in the above example, but the problem is val
is a local identifier declared in func_B
and may conflict with func_A
's identifiers (say func_A
declares a local identifier named %1
too) when loaded in func_A
.
How can I load func_B
's %1
without conflicts in func_A
? Note that I can't pass %1
to func_A
as a function parameter since I don't want to change anything of the IR code but adding some load instructions.
Any help would be greatly appreciated!
llvm llvm-ir
add a comment |
Working on a research project that requires to add load instructions to an analyzed LLVM IR code to load in a function func_A
addresses that were allocated in a separate function func_B
using IRBuilder
. An example is shown as follows.
define void @func_B() {
%1 = alloca [1 x i32], align 4
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
}
I've been able to find the to-be-loaded llvm:value*
, i.e., val
in the above example, but the problem is val
is a local identifier declared in func_B
and may conflict with func_A
's identifiers (say func_A
declares a local identifier named %1
too) when loaded in func_A
.
How can I load func_B
's %1
without conflicts in func_A
? Note that I can't pass %1
to func_A
as a function parameter since I don't want to change anything of the IR code but adding some load instructions.
Any help would be greatly appreciated!
llvm llvm-ir
Working on a research project that requires to add load instructions to an analyzed LLVM IR code to load in a function func_A
addresses that were allocated in a separate function func_B
using IRBuilder
. An example is shown as follows.
define void @func_B() {
%1 = alloca [1 x i32], align 4
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
}
I've been able to find the to-be-loaded llvm:value*
, i.e., val
in the above example, but the problem is val
is a local identifier declared in func_B
and may conflict with func_A
's identifiers (say func_A
declares a local identifier named %1
too) when loaded in func_A
.
How can I load func_B
's %1
without conflicts in func_A
? Note that I can't pass %1
to func_A
as a function parameter since I don't want to change anything of the IR code but adding some load instructions.
Any help would be greatly appreciated!
llvm llvm-ir
llvm llvm-ir
asked Nov 16 '18 at 21:39
RuiRui
184
184
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You, obviously, can't do that. It is as if you wanted to access int a
from the bar()
in the following example:
int foo()
{
int a = 5;
}
int bar()
{
...
}
Since %1
is allocated on the stack, its memory get freed when the function func_B
finishes, so it may not even exist during func_A
execution.
The only thing you can do is to store the value of %1
into a global variable in func_B
and load it in func_A
:
@var = [1 x i32] zeroinitializer
define void @func_B() {
%1 = alloca [1 x i32], align 4
store %1, @var
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
%1 = load @var
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345793%2fhow-to-load-an-address-that-was-allocated-in-a-separate-function-using-irbuilder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You, obviously, can't do that. It is as if you wanted to access int a
from the bar()
in the following example:
int foo()
{
int a = 5;
}
int bar()
{
...
}
Since %1
is allocated on the stack, its memory get freed when the function func_B
finishes, so it may not even exist during func_A
execution.
The only thing you can do is to store the value of %1
into a global variable in func_B
and load it in func_A
:
@var = [1 x i32] zeroinitializer
define void @func_B() {
%1 = alloca [1 x i32], align 4
store %1, @var
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
%1 = load @var
}
add a comment |
You, obviously, can't do that. It is as if you wanted to access int a
from the bar()
in the following example:
int foo()
{
int a = 5;
}
int bar()
{
...
}
Since %1
is allocated on the stack, its memory get freed when the function func_B
finishes, so it may not even exist during func_A
execution.
The only thing you can do is to store the value of %1
into a global variable in func_B
and load it in func_A
:
@var = [1 x i32] zeroinitializer
define void @func_B() {
%1 = alloca [1 x i32], align 4
store %1, @var
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
%1 = load @var
}
add a comment |
You, obviously, can't do that. It is as if you wanted to access int a
from the bar()
in the following example:
int foo()
{
int a = 5;
}
int bar()
{
...
}
Since %1
is allocated on the stack, its memory get freed when the function func_B
finishes, so it may not even exist during func_A
execution.
The only thing you can do is to store the value of %1
into a global variable in func_B
and load it in func_A
:
@var = [1 x i32] zeroinitializer
define void @func_B() {
%1 = alloca [1 x i32], align 4
store %1, @var
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
%1 = load @var
}
You, obviously, can't do that. It is as if you wanted to access int a
from the bar()
in the following example:
int foo()
{
int a = 5;
}
int bar()
{
...
}
Since %1
is allocated on the stack, its memory get freed when the function func_B
finishes, so it may not even exist during func_A
execution.
The only thing you can do is to store the value of %1
into a global variable in func_B
and load it in func_A
:
@var = [1 x i32] zeroinitializer
define void @func_B() {
%1 = alloca [1 x i32], align 4
store %1, @var
}
define void @func_A() {
// load the address allocated above here using IRBuilder in an analysis pass
// to the IR code, something like the following:
// IRBuilder<> builder();
// builder.CreateLoad(val);
%1 = load @var
}
answered Nov 17 '18 at 8:44
arrowdarrowd
23.2k45584
23.2k45584
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345793%2fhow-to-load-an-address-that-was-allocated-in-a-separate-function-using-irbuilder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown