Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
be051731
Commit
be051731
authored
14 years ago
by
Benjamin Kramer
Browse files
Options
Downloads
Patches
Plain Diff
Shrink PassNameParser's binary size with array_pod_sort.
llvm-svn: 110512
parent
7cd1d97e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/include/llvm/Support/PassNameParser.h
+12
-11
12 additions, 11 deletions
llvm/include/llvm/Support/PassNameParser.h
with
12 additions
and
11 deletions
llvm/include/llvm/Support/PassNameParser.h
+
12
−
11
View file @
be051731
...
@@ -23,11 +23,11 @@
...
@@ -23,11 +23,11 @@
#ifndef LLVM_SUPPORT_PASS_NAME_PARSER_H
#ifndef LLVM_SUPPORT_PASS_NAME_PARSER_H
#define LLVM_SUPPORT_PASS_NAME_PARSER_H
#define LLVM_SUPPORT_PASS_NAME_PARSER_H
#include
"llvm/Pass.h"
#include
"llvm/ADT/STLExtras.h"
#include
"llvm/Support/CommandLine.h"
#include
"llvm/Support/CommandLine.h"
#include
"llvm/Support/ErrorHandling.h"
#include
"llvm/Support/ErrorHandling.h"
#include
"llvm/Support/raw_ostream.h"
#include
"llvm/Support/raw_ostream.h"
#include
"llvm/Pass.h"
#include
<algorithm>
#include
<cstring>
#include
<cstring>
namespace
llvm
{
namespace
llvm
{
...
@@ -42,8 +42,7 @@ class PassNameParser : public PassRegistrationListener,
...
@@ -42,8 +42,7 @@ class PassNameParser : public PassRegistrationListener,
public:
public:
PassNameParser
()
:
Opt
(
0
)
{}
PassNameParser
()
:
Opt
(
0
)
{}
virtual
~
PassNameParser
();
virtual
~
PassNameParser
();
void
initialize
(
cl
::
Option
&
O
)
{
void
initialize
(
cl
::
Option
&
O
)
{
Opt
=
&
O
;
Opt
=
&
O
;
cl
::
parser
<
const
PassInfo
*>::
initialize
(
O
);
cl
::
parser
<
const
PassInfo
*>::
initialize
(
O
);
...
@@ -77,19 +76,21 @@ public:
...
@@ -77,19 +76,21 @@ public:
}
}
virtual
void
passEnumerate
(
const
PassInfo
*
P
)
{
passRegistered
(
P
);
}
virtual
void
passEnumerate
(
const
PassInfo
*
P
)
{
passRegistered
(
P
);
}
// ValLessThan - Provide a sorting comparator for Values elements...
typedef
PassNameParser
::
OptionInfo
ValType
;
static
bool
ValLessThan
(
const
ValType
&
VT1
,
const
ValType
&
VT2
)
{
return
std
::
string
(
VT1
.
Name
)
<
std
::
string
(
VT2
.
Name
);
}
// printOptionInfo - Print out information about this option. Override the
// printOptionInfo - Print out information about this option. Override the
// default implementation to sort the table before we print...
// default implementation to sort the table before we print...
virtual
void
printOptionInfo
(
const
cl
::
Option
&
O
,
size_t
GlobalWidth
)
const
{
virtual
void
printOptionInfo
(
const
cl
::
Option
&
O
,
size_t
GlobalWidth
)
const
{
PassNameParser
*
PNP
=
const_cast
<
PassNameParser
*>
(
this
);
PassNameParser
*
PNP
=
const_cast
<
PassNameParser
*>
(
this
);
std
::
sort
(
PNP
->
Values
.
begin
(),
PNP
->
Values
.
end
(),
ValLessThan
);
array_pod_
sort
(
PNP
->
Values
.
begin
(),
PNP
->
Values
.
end
(),
ValLessThan
);
cl
::
parser
<
const
PassInfo
*>::
printOptionInfo
(
O
,
GlobalWidth
);
cl
::
parser
<
const
PassInfo
*>::
printOptionInfo
(
O
,
GlobalWidth
);
}
}
private
:
// ValLessThan - Provide a sorting comparator for Values elements...
static
int
ValLessThan
(
const
void
*
VT1
,
const
void
*
VT2
)
{
typedef
PassNameParser
::
OptionInfo
ValType
;
return
std
::
strcmp
(
static_cast
<
const
ValType
*>
(
VT1
)
->
Name
,
static_cast
<
const
ValType
*>
(
VT2
)
->
Name
);
}
};
};
///===----------------------------------------------------------------------===//
///===----------------------------------------------------------------------===//
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment