OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SI1
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/CodeGenCXX/
rtti-layout.cpp
73
struct
SI1
: A { };
113
//
SI1
has a single public base.
114
CHECK_VTABLE(
SI1
, si_class);
115
CHECK(to<__si_class_type_info>(typeid(
SI1
)).__base_type == &typeid(A));
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
638
if (auto *
SI1
= dyn_cast<SelectInst>(RHS)) {
639
if (SI0->getCondition() ==
SI1
->getCondition()) {
642
SI1
->getFalseValue(), DL, TLI, DT, AC))
646
SI1
->getTrueValue()),
649
SI1
->getTrueValue(), DL, TLI, DT, AC))
653
SI1
->getFalseValue()));
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
160
static bool SafeToMergeTerminators(TerminatorInst *
SI1
, TerminatorInst *SI2) {
161
if (
SI1
== SI2) return false; // Can't merge with self!
166
BasicBlock *SI1BB =
SI1
->getParent();
184
/// instructions together, where
SI1
is an unconditional branch. PhiNodes will
186
static bool isProfitableToFoldUnconditional(BranchInst *
SI1
,
190
if (
SI1
== SI2) return false; // Can't merge with self!
191
assert(
SI1
->isUnconditional() && SI2->isConditional());
206
BasicBlock *SI1BB =
SI1
->getParent();
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
[
all
...]
Completed in 1526 milliseconds