OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:immbranches
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp
327
///
ImmBranches
- Keep track of all the immediate branch instructions.
329
std::vector<ImmBranch>
ImmBranches
;
504
for (unsigned i = 0, e =
ImmBranches
.size(); i != e; ++i)
505
BRChange |= fixupImmediateBr(
ImmBranches
[i]);
520
ImmBranches
.clear();
736
ImmBranches
.push_back(ImmBranch(&MI, MaxOffs, isCond, UOpc));
[
all
...]
/external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp
253
///
ImmBranches
- Keep track of all the immediate branch instructions.
255
std::vector<ImmBranch>
ImmBranches
;
483
for (unsigned i = 0, e =
ImmBranches
.size(); i != e; ++i)
484
BRChange |= fixupImmediateBr(
ImmBranches
[i]);
531
ImmBranches
.clear();
776
continue; // Does not get an entry in
ImmBranches
809
ImmBranches
.push_back(ImmBranch(&I, MaxOffs, isCond, UOpc));
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMConstantIslandPass.cpp
150
///
ImmBranches
- Keep track of all the immediate branch instructions.
152
std::vector<ImmBranch>
ImmBranches
;
348
for (unsigned i = 0, e =
ImmBranches
.size(); i != e; ++i)
349
BRChange |= FixUpImmediateBr(MF,
ImmBranches
[i]);
386
ImmBranches
.clear();
532
continue; // Does not get an entry in
ImmBranches
535
continue; // Does not get an entry in
ImmBranches
568
ImmBranches
.push_back(ImmBranch(I, MaxOffs, isCond, UOpc));
[
all
...]
Completed in 1044 milliseconds