Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions clang/lib/CodeGen/CGLoopInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,6 @@ struct LoopAttributes {
llvm::SmallVector<std::pair<const char *, unsigned int>, 2>
SYCLIntelFPGAVariantCount;
Comment thread
tahonermann marked this conversation as resolved.
Outdated

/// Flag for llvm.loop.coalesce metadata.
bool SYCLLoopCoalesceEnable;

/// Value for llvm.loop.coalesce.count metadata.
unsigned SYCLLoopCoalesceNLevels;

/// Flag for llvm.loop.intel.pipelining.enable, i32 0 metadata.
bool SYCLLoopPipeliningDisable;

Expand Down Expand Up @@ -157,9 +151,6 @@ struct LoopAttributes {
/// Value for llvm.loop.pipeline.iicount metadata.
unsigned PipelineInitiationInterval;

/// Flag for llvm.loop.fusion.disable metatdata.
bool SYCLNofusionEnable;

/// Value for 'llvm.loop.align' metadata.
unsigned CodeAlign;

Expand Down Expand Up @@ -382,16 +373,6 @@ class LoopInfoStack {
StagedAttrs.SYCLMaxConcurrencyNThreads = C;
}

/// Set flag of loop_coalesce for the next loop pushed.
void setSYCLLoopCoalesceEnable() {
StagedAttrs.SYCLLoopCoalesceEnable = true;
}

/// Set value of coalesced levels for the next loop pushed.
void setSYCLLoopCoalesceNLevels(unsigned C) {
StagedAttrs.SYCLLoopCoalesceNLevels = C;
}

/// Set flag of disable_loop_pipelining for the next loop pushed.
void setSYCLLoopPipeliningDisable() {
StagedAttrs.SYCLLoopPipeliningDisable = true;
Expand Down Expand Up @@ -426,9 +407,6 @@ class LoopInfoStack {
StagedAttrs.PipelineInitiationInterval = C;
}

/// Set flag of nofusion for the next loop pushed.
void setSYCLNofusionEnable() { StagedAttrs.SYCLNofusionEnable = true; }

/// Set value of code align for the next loop pushed.
void setCodeAlign(unsigned C) { StagedAttrs.CodeAlign = C; }

Expand Down
Loading