Home
last modified time | relevance | path

Searched refs:BT (Results 1 – 25 of 502) sorted by relevance

12345678910>>...21

/external/llvm/lib/Target/Hexagon/
DBitTracker.cpp69 typedef BitTracker BT; typedef
88 raw_ostream &operator<<(raw_ostream &OS, const BT::BitValue &BV) { in operator <<()
90 case BT::BitValue::Top: in operator <<()
93 case BT::BitValue::Zero: in operator <<()
96 case BT::BitValue::One: in operator <<()
99 case BT::BitValue::Ref: in operator <<()
106 raw_ostream &operator<<(raw_ostream &OS, const BT::RegisterCell &RC) { in operator <<()
118 const BT::BitValue &V = RC[i]; in operator <<()
119 const BT::BitValue &SV = RC[Start]; in operator <<()
120 bool IsRef = (V.Type == BT::BitValue::Ref); in operator <<()
[all …]
DHexagonBitTracker.cpp23 typedef BitTracker BT; typedef
78 BT::BitMask HexagonEvaluator::mask(unsigned Reg, unsigned Sub) const { in mask()
89 return (Sub == subreg_loreg) ? BT::BitMask(0, RW-1) in mask()
90 : BT::BitMask(RW, 2*RW-1); in mask()
102 std::vector<BT::RegisterRef> Vector;
109 Vector[i] = BT::RegisterRef(MO); in RegisterRefs()
116 const BT::RegisterRef &operator[](unsigned n) const { in operator []()
188 auto rr0 = [this,Reg] (const BT::RegisterCell &Val, CellMapType &Outputs) in evaluate()
195 uint16_t W) -> BT::RegisterCell { in evaluate()
205 auto lo = [this] (const BT::RegisterCell &RC, uint16_t RW) in evaluate()
[all …]
DHexagonBitSimplify.cpp1003 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in RedundantInstrElimination()
1017 BitTracker &BT; member in __anoncf8444f40511::RedundantInstrElimination
1227 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in usedBitsEqual()
1228 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in usedBitsEqual()
1267 if (!BT.has(RD.Reg)) in processBlock()
1269 const BitTracker::RegisterCell &DC = BT.lookup(RD.Reg); in processBlock()
1278 if (!BT.has(RS.Reg)) in processBlock()
1287 const BitTracker::RegisterCell &SC = BT.lookup(RS.Reg); in processBlock()
1298 BT.put(BitTracker::RegisterRef(NewR), SC); in processBlock()
1318 : Transformation(true), HII(hii), MRI(mri), BT(bt) {} in ConstGeneration()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp76 std::unique_ptr<BugType> &BT,
79 static void emitBadCall(BugType *BT, CheckerContext &C, const Expr *BadE);
87 void LazyInit_BT(const char *desc, std::unique_ptr<BugType> &BT) const { in LazyInit_BT()
88 if (!BT) in LazyInit_BT()
89 BT.reset(new BuiltinBug(this, desc)); in LazyInit_BT()
93 const Expr *ArgEx, std::unique_ptr<BugType> &BT,
98 void CallAndMessageChecker::emitBadCall(BugType *BT, CheckerContext &C, in emitBadCall() argument
104 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N); in emitBadCall()
143 std::unique_ptr<BugType> &BT, in uninitRefOrPointer() argument
173 LazyInit_BT(BD, BT); in uninitRefOrPointer()
[all …]
DFixedAddressChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon4bb6e3380111::FixedAddressChecker
54 if (!BT) in checkPreStmt()
55 BT.reset( in checkPreStmt()
60 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
DUndefinedArraySubscriptChecker.cpp28 mutable std::unique_ptr<BugType> BT; member in __anond89e72d20111::UndefinedArraySubscriptChecker
52 if (!BT) in checkPreStmt()
53 BT.reset(new BuiltinBug(this, "Array subscript is undefined")); in checkPreStmt()
56 auto R = llvm::make_unique<BugReport>(*BT, BT->getName(), N); in checkPreStmt()
DCastToStructChecker.cpp27 mutable std::unique_ptr<BuiltinBug> BT; member in __anon6af2fe550111::CastToStructChecker
60 if (!BT) in checkPreStmt()
61 BT.reset( in checkPreStmt()
66 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
DPointerSubChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon377c424d0111::PointerSubChecker
64 if (!BT) in checkPreStmt()
65 BT.reset( in checkPreStmt()
69 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
DArrayBoundChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon5ab90f190111::ArrayBoundChecker
69 if (!BT) in checkLocation()
70 BT.reset(new BuiltinBug( in checkLocation()
79 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkLocation()
DReturnPointerRangeChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in __anona0961d100111::ReturnPointerRangeChecker
72 if (!BT) in checkPreStmt()
73 BT.reset(new BuiltinBug( in checkPreStmt()
83 auto report = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
DUndefBranchChecker.cpp28 mutable std::unique_ptr<BuiltinBug> BT; member in __anon78750bc20111::UndefBranchChecker
68 if (!BT) in checkBranchCondition()
69 BT.reset(new BuiltinBug( in checkBranchCondition()
100 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), N); in checkBranchCondition()
DTaintTesterChecker.cpp25 mutable std::unique_ptr<BugType> BT; member in __anon3d2d28590111::TaintTesterChecker
40 if (!BT) in initBugType()
41 BT.reset(new BugType(this, "Tainted data", "General")); in initBugType()
53 auto report = llvm::make_unique<BugReport>(*BT, "tainted",N); in checkPostStmt()
DNSAutoreleasePoolChecker.cpp35 mutable std::unique_ptr<BugType> BT; member in __anon34c71c170111::NSAutoreleasePoolChecker
61 if (!BT) in checkPreObjCMessage()
62 BT.reset(new BugType(this, "Use -drain instead of -release", in checkPreObjCMessage()
72 *BT, "Use -drain instead of -release when using NSAutoreleasePool and " in checkPreObjCMessage()
DBoolAssignmentChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in __anon038975470111::BoolAssignmentChecker
36 if (!BT) in emitReport()
37 BT.reset(new BuiltinBug(this, "Assignment of a non-Boolean value")); in emitReport()
38 C.emitReport(llvm::make_unique<BugReport>(*BT, BT->getDescription(), N)); in emitReport()
DCastSizeChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in __anon06ad9ce80111::CastSizeChecker
132 if (!BT) in checkPreStmt()
133 BT.reset(new BuiltinBug(this, "Cast region with wrong size.", in checkPreStmt()
136 auto R = llvm::make_unique<BugReport>(*BT, BT->getDescription(), errorNode); in checkPreStmt()
DUndefinedAssignmentChecker.cpp27 mutable std::unique_ptr<BugType> BT; member in __anon3fed3c0d0111::UndefinedAssignmentChecker
56 if (!BT) in checkBind()
57 BT.reset(new BuiltinBug(this, str)); in checkBind()
86 auto R = llvm::make_unique<BugReport>(*BT, str, N); in checkBind()
DUndefResultChecker.cpp31 mutable std::unique_ptr<BugType> BT; member in __anon36e740730111::UndefResultChecker
57 if (!BT) in checkPostStmt()
58 BT.reset( in checkPostStmt()
87 auto report = llvm::make_unique<BugReport>(*BT, OS.str(), N); in checkPostStmt()
DDivZeroChecker.cpp26 mutable std::unique_ptr<BuiltinBug> BT; member in __anone3317fe50111::DivZeroChecker
39 if (!BT) in reportBug()
40 BT.reset(new BuiltinBug(this, "Division by zero")); in reportBug()
42 auto R = llvm::make_unique<BugReport>(*BT, Msg, N); in reportBug()
/external/clang/test/SemaObjC/
Dns_returns_retained_block_return.m8 typedef void (^BT) (); typedef
10 BT foo() __attribute__((ns_returns_retained));
13 BT foo() __attribute__((ns_returns_retained));
14 - (BT) Meth __attribute__((ns_returns_retained));
15 + (BT) ClsMeth __attribute__((ns_returns_retained));
19 BT foo() __attribute__((ns_returns_retained)) {return ^{}; }
20 - (BT) Meth {return ^{}; }
21 + (BT) ClsMeth {return ^{}; }
/external/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h56 template <class BT> struct BlockEdgesAdder;
794 template <class BT> class BlockFrequencyInfoImpl : BlockFrequencyInfoImplBase {
795 typedef typename bfi_detail::TypeMap<BT>::BlockT BlockT;
796 typedef typename bfi_detail::TypeMap<BT>::FunctionT FunctionT;
797 typedef typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT
799 typedef typename bfi_detail::TypeMap<BT>::LoopT LoopT;
800 typedef typename bfi_detail::TypeMap<BT>::LoopInfoT LoopInfoT;
803 friend struct bfi_detail::BlockEdgesAdder<BT>;
955 template <class BT>
956 void BlockFrequencyInfoImpl<BT>::calculate(const FunctionT &F,
[all …]
/external/skia/resources/
Dpdf_command_stream.txt44 BT
54 BT
139 BT
225 BT
234 BT
240 BT
272 BT
295 BT
322 BT
408 BT
[all …]
/external/skqp/platform_tools/android/apps/skqp/src/main/assets/resources/
Dpdf_command_stream.txt44 BT
54 BT
139 BT
225 BT
234 BT
240 BT
272 BT
295 BT
322 BT
408 BT
[all …]
/external/skqp/resources/
Dpdf_command_stream.txt44 BT
54 BT
139 BT
225 BT
234 BT
240 BT
272 BT
295 BT
322 BT
408 BT
[all …]
/external/clang/examples/analyzer-plugin/
DMainCallChecker.cpp11 mutable std::unique_ptr<BugType> BT; member in __anon23d5e9680111::MainCallChecker
37 if (!BT) in checkPreStmt()
38 BT.reset(new BugType(this, "call to main", "example analyzer plugin")); in checkPreStmt()
41 llvm::make_unique<BugReport>(*BT, BT->getName(), N); in checkPreStmt()
/external/clang/test/SemaCXX/
Dns_returns_retained_block_return.cpp6 typedef void (^BT) (); typedef
9 BT br() __attribute__((ns_returns_retained)) { in br()
12 BT br1() __attribute__((ns_returns_retained));
15 BT S::br1() { in br1()

12345678910>>...21