Skip to content

Instantly share code, notes, and snippets.

@mortdeus
Created March 5, 2013 18:08
Show Gist options
  • Select an option

  • Save mortdeus/5092606 to your computer and use it in GitHub Desktop.

Select an option

Save mortdeus/5092606 to your computer and use it in GitHub Desktop.
***************************************LLVM-TIP****************************************************
Target/X86/X86FrameLowering.h:44: void adjustForSegmentedStacks(MachineFunction &MF) const;
Target/X86/X86ISelLowering.cpp:578: else if (TM.Options.EnableSegmentedStacks)
Target/X86/X86ISelLowering.cpp:9990: getTargetMachine().Options.EnableSegmentedStacks) &&
Target/X86/X86ISelLowering.cpp:10004: if (getTargetMachine().Options.EnableSegmentedStacks) {
Target/X86/X86ISelLowering.cpp:13868: assert(getTargetMachine().Options.EnableSegmentedStacks);
Target/X86/X86FrameLowering.cpp:702: !MF.getTarget().Options.EnableSegmentedStacks) { // Regular stack
Target/X86/X86FrameLowering.cpp:1419: X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
CodeGen/PrologEpilogInserter.cpp:694: if (Fn.getTarget().Options.EnableSegmentedStacks)
CodeGen/PrologEpilogInserter.cpp:695: TFI.adjustForSegmentedStacks(Fn);
lto/LTOModule.cpp:144: SegmentedStacks("segmented-stacks",
lto/LTOModule.cpp:258: Options.EnableSegmentedStacks = SegmentedStacks;
llc/llc.cpp:279: Options.EnableSegmentedStacks = SegmentedStacks;
opt/opt.cpp:509: Options.EnableSegmentedStacks = SegmentedStacks;
***************************************RUST-TIP******************************************************************
librustc/back/link.rs:73: EnableSegmentedStacks: bool) {
librustc/back/link.rs:82: EnableSegmentedStacks);
librustc/lib/llvm.rs:1235: EnableSegmentedStacks: bool) -> bool;
librustc/lib/llvm.rs:1253: EnableSegmentedStacks: bool) -> *();
rustllvm/RustWrapper.cpp:365: bool EnableSegmentedStacks) {
rustllvm/RustWrapper.cpp:376: Options.EnableSegmentedStacks = EnableSegmentedStacks;
rustllvm/RustWrapper.cpp:426: bool EnableSegmentedStacks) {
rustllvm/RustWrapper.cpp:432: Options.EnableSegmentedStacks = EnableSegmentedStacks;
llvm/Target/TargetOptions.h:52: PositionIndependentExecutable(false), EnableSegmentedStacks(false),
llvm/Target/TargetOptions.h:173: unsigned EnableSegmentedStacks : 1;
llvm/Target/TargetFrameLowering.h:115: virtual void adjustForSegmentedStacks(MachineFunction &MF) const { }
Target/X86/X86FrameLowering.h:44: void adjustForSegmentedStacks(MachineFunction &MF) const;
Target/X86/X86ISelLowering.cpp:570: else if (TM.Options.EnableSegmentedStacks)
Target/X86/X86ISelLowering.cpp:9521: getTargetMachine().Options.EnableSegmentedStacks) &&
Target/X86/X86ISelLowering.cpp:9535: if (getTargetMachine().Options.EnableSegmentedStacks) {
Target/X86/X86ISelLowering.cpp:13031: assert(getTargetMachine().Options.EnableSegmentedStacks);
Target/X86/X86FrameLowering.cpp:682: !MF.getTarget().Options.EnableSegmentedStacks) { // Regular stack
Target/X86/X86FrameLowering.cpp:1398: X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
CodeGen/PrologEpilogInserter.cpp:704: if (Fn.getTarget().Options.EnableSegmentedStacks)
CodeGen/PrologEpilogInserter.cpp:705: TFI.adjustForSegmentedStacks(Fn);
lto/LTOModule.cpp:144: SegmentedStacks("segmented-stacks",
lto/LTOModule.cpp:258: Options.EnableSegmentedStacks = SegmentedStacks;
llc/llc.cpp:253: SegmentedStacks("segmented-stacks",
llc/llc.cpp:465: Options.EnableSegmentedStacks = SegmentedStacks;
****************************************************************************************************************************
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment