HomeSort by relevance Sort by last modified time
    Searched refs:LCOMM (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 21 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
24 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCAsmInfoDarwin.cpp 67 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
MCAsmInfo.cpp 71 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
MCAsmStreamer.cpp 145 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
519 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
528 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
531 case LCOMM::NoAlignment:
532 llvm_unreachable("alignment not supported on .lcomm!");
533 case LCOMM::ByteAlignment:
536 case LCOMM::Log2Alignment:
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 28 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 79 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.cpp 62 LCOMMDirectiveType = LCOMM::None;
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 52 namespace LCOMM {
255 /// Describes if the .lcomm directive for the target supports an alignment
257 LCOMM::LCOMMType LCOMMDirectiveAlignmentType;
471 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 426 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 391 // Handle common and BSS local symbols (.lcomm).
415 // Use .lcomm only if it supports user-specified alignment.
416 // Otherwise, while it would still be correct to use .lcomm in some
421 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
422 // .lcomm _foo, 42
    [all...]

Completed in 271 milliseconds