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

  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 22 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCAsmInfoDarwin.cpp 35 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
MCAsmInfo.cpp 72 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
MCAsmStreamer.cpp 165 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
514 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
520 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
523 case LCOMM::NoAlignment:
524 llvm_unreachable("alignment not supported on .lcomm!");
525 case LCOMM::ByteAlignment:
528 case LCOMM::Log2Alignment:
    [all...]
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 35 namespace LCOMM {
254 /// LCOMMDirectiveAlignment - Describes if the .lcomm directive for the
256 LCOMM::LCOMMType LCOMMDirectiveAlignmentType; // Defaults to NoAlignment.
502 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 253 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 298 // Handle common and BSS local symbols (.lcomm).
323 MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
324 // .lcomm _foo, 42
    [all...]

Completed in 251 milliseconds