OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LOI
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h
157
const LiveOutInfo *
LOI
= &LiveOutRegInfo[Reg];
158
if (!
LOI
->IsValid)
161
return
LOI
;
179
LiveOutInfo &
LOI
= LiveOutRegInfo[Reg];
180
LOI
.NumSignBits = NumSignBits;
181
LOI
.KnownOne = KnownOne;
182
LOI
.KnownZero = KnownZero;
/external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp
166
LibgccObjectInfo*
LOI
= (struct LibgccObjectInfo*)
168
assert(
LOI
&& "This should be preallocated by the runtime");
188
ob->fde_end = (char*)
LOI
->unseenObjects;
189
ob->next =
LOI
->unseenObjects;
192
LOI
->unseenObjects = ob;
196
LOI
);
299
struct LibgccObjectInfo*
LOI
= (struct LibgccObjectInfo*)
305
if (!
LOI
)
306
LOI
= (LibgccObjectInfo*)calloc(sizeof(struct LibgccObjectInfo), 1);
307
_keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST,
LOI
);
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp
253
LiveOutInfo *
LOI
= &LiveOutRegInfo[Reg];
254
if (!
LOI
->IsValid)
257
if (BitWidth >
LOI
->KnownZero.getBitWidth()) {
258
LOI
->NumSignBits = 1;
259
LOI
->KnownZero =
LOI
->KnownZero.zextOrTrunc(BitWidth);
260
LOI
->KnownOne =
LOI
->KnownOne.zextOrTrunc(BitWidth);
263
return
LOI
;
SelectionDAGBuilder.cpp
715
const FunctionLoweringInfo::LiveOutInfo *
LOI
=
717
if (!
LOI
)
721
unsigned NumSignBits =
LOI
->NumSignBits;
722
unsigned NumZeroBits =
LOI
->KnownZero.countLeadingOnes();
[
all
...]
Completed in 9472 milliseconds