OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BB1
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/SemaCXX/
warn-reorder-ctor-initialization.cpp
5
struct
BB1
{};
7
class complex : public BB,
BB1
{
12
s3(3), // expected-warning {{field 's3' will be initialized after base '
BB1
'}}
13
BB1
(), // expected-warning {{base class '
BB1
' will be initialized after base 'BB'}}
/external/llvm/unittests/IR/
DominatorTreeTest.cpp
37
BasicBlock *
BB1
= FI++;
38
BBI =
BB1
->begin();
57
EXPECT_TRUE(DT->isReachableFromEntry(
BB1
));
64
EXPECT_TRUE(DT->dominates(BB0,
BB1
));
69
EXPECT_FALSE(DT->dominates(
BB1
, BB0));
70
EXPECT_TRUE(DT->dominates(
BB1
,
BB1
));
71
EXPECT_FALSE(DT->dominates(
BB1
, BB2));
72
EXPECT_TRUE(DT->dominates(
BB1
, BB3));
73
EXPECT_FALSE(DT->dominates(
BB1
, BB4))
[
all
...]
/external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp
152
// | |
bb1
|
187
BasicBlock *
BB1
= BasicBlock::Create(Builder.getContext(),
188
"udiv-
bb1
", F, End);
207
// ; br i1 %earlyRet, label %end, label %
bb1
220
Builder.CreateCondBr(EarlyRet, End,
BB1
);
222
// ;
bb1
: ; preds = %special-cases
228
Builder.SetInsertPoint(
BB1
);
235
// ; preheader: ; preds = %
bb1
281
// ; loop-exit: ; preds = %do-while, %
bb1
282
// ; %carry_2 = phi i32 [ 0, %
bb1
], [ %carry, %do-while
[
all
...]
SimplifyCFG.cpp
[
all
...]
Completed in 66 milliseconds