OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isCommon
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/MC/
SectionKind.h
173
return isBSS() ||
isCommon
() || isDataRel() || isReadOnlyWithRel();
180
bool
isCommon
() const { return K == Common; }
MCAssembler.h
579
///
isCommon
- Is this a 'common' symbol.
580
bool
isCommon
() const { return CommonSize != 0; }
593
assert(
isCommon
() && "Not a 'common' symbol!");
608
assert(
isCommon
() && "Not a 'common' symbol!");
/external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp
220
!Kind.
isCommon
() && !Kind.isBSS()) {
286
if (Kind.isBSS() || Kind.
isCommon
()) return BSSSection;
/external/llvm/lib/MC/
ELFObjectWriter.cpp
174
if (Data.
isCommon
() && Data.isExternal())
247
bool IsReserved = Data.
isCommon
() || Data.getSymbol().isAbsolute() ||
260
assert(!(Data.
isCommon
() && !Data.isExternal()));
595
if (it->
isCommon
()) {
[
all
...]
MCAssembler.cpp
950
if (
isCommon
())
MachObjectWriter.cpp
322
} else if (Data.
isCommon
()) {
/external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp
298
if (GVKind.
isCommon
() || GVKind.isBSSLocal()) {
302
if (GVKind.
isCommon
()) {
[
all
...]
Completed in 431 milliseconds