Modernizing Compiler Design for Carbon Toolchain - Chandler Carruth - CppNow 2023

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ก.ย. 2024

ความคิดเห็น • 68

  • @binary_gaming113
    @binary_gaming113 ปีที่แล้ว +71

    Missed opportunity to say "keep the carbon footprint to a minimum" in the beginning

  • @superscatboy
    @superscatboy ปีที่แล้ว +18

    I don't know much about the inner workings of compilers, but the little I do know I learnt from Chandler Carruth.

  • @CuriousCauliflowerX
    @CuriousCauliflowerX ปีที่แล้ว +67

    Always good to hear from Chandler, the one of the few folks on the conference with connection to reality.

    • @samanthaqiu3416
      @samanthaqiu3416 8 หลายเดือนก่อน +1

      he redpilled me on the insanity of the GNU GCC/G++ tightly coupled design based entirely on political principles

    • @maxrinehart4177
      @maxrinehart4177 5 หลายเดือนก่อน

      ​@@samanthaqiu3416 where I can read(or see) more about this topic? I assume he wrote or talk about it

    • @gregandark8571
      @gregandark8571 3 หลายเดือนก่อน

      @@samanthaqiu3416
      [he redpilled me on the insanity of the GNU GCC/G++ tightly coupled design based entirely on political principles]
      Where i can read about all this?

  • @balajimarisetti4245
    @balajimarisetti4245 ปีที่แล้ว +12

    You'll learn a lot from Chandler's talks. Great one again.

    • @BoostCon
      @BoostCon  ปีที่แล้ว +2

      Thank you for your positive comments!

    • @maxrinehart4177
      @maxrinehart4177 5 หลายเดือนก่อน

      ​​​​ I enjoy your videos but please for the love of God, fix your audio static problem, it's hard to hear when the audio stream is is poor.
      Also please hand a microphone 🎤 to the people who ask questions, I can barely hear them, thanks for Chandler for repeating their questions I can understand what they asked.
      Invest in audio quality and extra microphone for the audience.

  • @Bentley070
    @Bentley070 ปีที่แล้ว +38

    Awesome talk! This idea of "semantic IR" is also used by Zig to do type analysis and compile time execution together in a single pass. It does indeed limit type inference though, as you can't use future usages to determine the type of a variable declaration.

  • @willw2596
    @willw2596 9 หลายเดือนก่อน +5

    I'm in the middle of the talk and it dawns on me. The token in the lexer is basically a tuple of (id, line-number) where the id is the index into the ECS arrays. ECS being the Entiy-Component-System from the game industry. Nice to adopt ideas from the game development.

    • @about2mount
      @about2mount 8 หลายเดือนก่อน +1

      Actually you are correct the token is either a single character or a group of characters or words without whitespace or spaces between them. A Lexer token will catch the following as tokens in the loop as single characters:
      In a Lexer they catch:
      a, z, 0, 9, (, ), {, }, [, ], +, -, *. etc.
      In the Parser they catch:
      KEYWORD, LPAREN, RPAREN, myvar, EQUAL, 100, MINUS, 42, MULT, 5, DIV, 2, ADD, 45.332, NEWLINE, x1, EQUAL, DQUOTE I am a sentence, DQUOTE, etc.
      State Switches, counters and Temporary Variables which are variables as Integers, incrementing and string storage set precedence's conditionally and catch tokens at each iteration in the loop.
      Struct's as tuples are used to store what your asking as line number, value and id etc. Temporary Variables pass these values into the structs and do so in the loop when specific conditions are met and if errors occur.
      These structs as Tuples can easily be stored into Log or data files at the end of the process when flags are set in your program also. And for faster processes can re load these struct files as cache files.

  • @petermuller608
    @petermuller608 ปีที่แล้ว +7

    I really enjoy Chandler's talks

    • @gregandark8571
      @gregandark8571 6 หลายเดือนก่อน

      He's a very bright man!

  • @atomsRnot4717
    @atomsRnot4717 ปีที่แล้ว +40

    Interesting talk on making compilers faster by adopting data-oriented design instead of the usual way of writing lexers and parsers, replacing the incrementally-allocated token and AST structures with faster array-based structures. Unfortunately the number of questions breaks the flow. It seems some of the audience members wanted everyone to know every thought that popped into their heads.

    • @MrHaggyy
      @MrHaggyy ปีที่แล้ว +4

      Thats also a great deal for a compiler that just changes a part in a huge code base and makes your changes linkable.

  • @brynyard
    @brynyard ปีที่แล้ว +6

    Great talk, but kinda painful with all the interruptions from the "shadow" gallery.

  • @SimonBuchanNz
    @SimonBuchanNz ปีที่แล้ว +12

    Funnily enough I took a stab at parsing a baby typescript fast, and ended up with a vaguely similar structure, including a semantic tree as a basic block IR. I stalled out when I realized I'd have to actually figure out analysis 😅
    Definitely some neat ideas like postorder parse tree.

  • @SamualN
    @SamualN ปีที่แล้ว +10

    the flashes of audio static made this really hard to watch towards the end

  • @kuhluhOG
    @kuhluhOG 5 หลายเดือนก่อน +1

    One should also look at how Zig does it since they also have a data-oriented approach for their compiler which lead to a very fast compile time.

  • @a-bm9ux
    @a-bm9ux ปีที่แล้ว +5

    repeating the questions would gone a long way here

  • @abuyoyo31
    @abuyoyo31 ปีที่แล้ว +4

    Interestingly, Chris Lattner himself said in a recent llvm talk that he wished he had put a c++ - specific IR into clang, and that pretty much all other llvm-supported languages do.
    Also, great talk.

  • @andy_lamax
    @andy_lamax 11 หลายเดือนก่อน

    this was a very curious audience. Love it

  • @msclrhd
    @msclrhd ปีที่แล้ว +6

    I'm interested in compiler design that supports both IDE (LSP, IntelliJ, etc.) and compiler/interpreter models as there is a lot of shared infrastructure in the lexing, parsing, and semantic analysis side of things. Advanced IDE features like optimization hints, interactive debugging, code completion, parameter hints, semantic highlighting, etc. are all blurring the line between an IDE tool and a full compiler/interpreter.
    There are also challenges in defining how the compiler/interpreter models the program and how the IDE (LSP, or custom APIs like in IntelliJ) that make it challenging to define an abstract lexer/parser that works in all 3+ environments (command line, LSP/VSCode, IntelliJ or other IDE-specific API).

    • @GeorgeTsiros
      @GeorgeTsiros หลายเดือนก่อน

      You mean like borland's turbo pascal?

  • @chrraz
    @chrraz ปีที่แล้ว +2

    Very cool talk but it is a shame that the questions are not repeated as it is very hard to hear the audience. They sound like very interesting questions.

  • @joaosilveira29
    @joaosilveira29 ปีที่แล้ว +1

    great talk!

  • @hampus23
    @hampus23 ปีที่แล้ว +1

    Very entertaining 👏

  • @petermuller608
    @petermuller608 ปีที่แล้ว +3

    Interesting ideas for compiler frontend design! I do however wonder how much time is spend in the frontend vs. optimization passes in the backend

    • @ChandlerCarruth
      @ChandlerCarruth ปีที่แล้ว +4

      On at least a few big C++ codebases where I have measured, it's easily in the ballpark of 70% - 80% time in the frontend for a development or debug build.

    • @GeorgeTsiros
      @GeorgeTsiros ปีที่แล้ว +1

      @@ChandlerCarruth pleaseplease tell me you at least touch the subject of incremental/differential parsing? When the programmer inserts a new character, it's terribly wasteful to parse the entire file from the start

    • @barakap2372
      @barakap2372 11 หลายเดือนก่อน

      @@GeorgeTsiros a file is always recompiled when you touch a new character. different code files which aren't touched tough may be incremental compiled

  • @_____case
    @_____case ปีที่แล้ว +3

    Wake up, honey! There's a new Chandler talk!

  • @szaszm_
    @szaszm_ ปีที่แล้ว +1

    18:18 Shouldn't switch to full screen slide view, since the speaker is talking about something barely related, in response to a question.

  • @CartoType
    @CartoType ปีที่แล้ว +8

    Interesting and well presented, but questions should have been kept to the end. They are inaudible anyway in this video, as well as breaking up the flow badly.
    Some if the ideas are quite old, such as using a custom stack actually allocated on the heap to avoid running out of stack space when parsing data with a nested structure. I was doing that in the 90s when implementing a web browser on a PDA.

    • @ChandlerCarruth
      @ChandlerCarruth ปีที่แล้ว +1

      There was a special mic that AV folks and organizers thought would capture the audience questions so they were audible. =[

    • @noxabellus
      @noxabellus ปีที่แล้ว +2

      i can hear the questions with headphones on, fwiw

  • @u9vata
    @u9vata ปีที่แล้ว +3

    There are many parts in this how i approach my toy-language compiler: But interestingly I came from direction from forth to a similar stack machine for syntax tree parsing instead of kind of inventing it downwards from traditional parsers not being good for data oriented design. But some of the techniques seems very close actually... oh... and also the lexer to do parentheses-like checking and error messages too... makes much more sense than the parser doing this.
    EDIT> Yes, "semantics as IR" is very possible and my approach too, just I call it differently and do it much more text-based than IR in that sense its not a bytecode. Also makes its much easier to develop your compiler, better understand what the various steps do, what the optimizer step do etc. etc.... and the optimization and semantics as IR can be represented as same representations - they not need to be different at all.
    Actually did not expect carbon compiler design having this cool ideas so might end up a good language in the end. But I think this talk is beneficial to any kind of compiler design practically...

  • @perschrijver8884
    @perschrijver8884 ปีที่แล้ว +1

    How does the merging of code locations and token kinds into a single 32 bit value work? Is it x bits for token kind and x bits for character index?

    • @ChandlerCarruth
      @ChandlerCarruth ปีที่แล้ว +9

      32-bit index is a handle to the token. Can then use that to look up the details of the token, including a byte offset into the source file and the spelling of the token within the source file.

  • @JacobPeralta21
    @JacobPeralta21 ปีที่แล้ว +1

    What's font style and colour scheme in vs code,??? 48:34

  • @kalidsherefuddin
    @kalidsherefuddin ปีที่แล้ว

    Thanks

  • @jackgame8841
    @jackgame8841 ปีที่แล้ว

    cool talk

  • @yyny0
    @yyny0 17 วันที่ผ่านมา

    24:28 This seems pretty insane to me because on my high end desktop 10 million lines of code takes over a second just for `wc` to count the number of words.

  • @-taz-
    @-taz- ปีที่แล้ว +1

    47:50 What's that typeface? It's exactly what I have always been looking for! Sharp, clean, yet tall like the old VGA screen fonts from when I was a kid.

    • @cemgecgel4284
      @cemgecgel4284 ปีที่แล้ว

      If you are talking about the VS Code font, it is JetBrains Mono.

    • @mdciotti
      @mdciotti ปีที่แล้ว +1

      Looks like Iosevka

    • @jmjmjm439
      @jmjmjm439 ปีที่แล้ว

      Looks similar to Iosevka

    • @ChandlerCarruth
      @ChandlerCarruth ปีที่แล้ว +3

      It's Iosevka, I'm a big fan.

    • @cemgecgel4284
      @cemgecgel4284 ปีที่แล้ว +1

      Well looks like I did not know what I was talking about. Now that I looked at it again it definitly does not look like JetBrains Mono.

  • @SentientNr6
    @SentientNr6 7 หลายเดือนก่อน +1

    Reminds me a lot about what Zig & Jai tries to do.

    • @sumofat4994
      @sumofat4994 5 หลายเดือนก่อน

      Have done. Amazing that now everyone wants to join the party when they realise they are slow af.

    • @maxrinehart4177
      @maxrinehart4177 5 หลายเดือนก่อน

      ​@@sumofat4994 are you serious? Check your facts please, because Chandler is known in the compilers industry way even before Andrew worked in zig and Jon on jai. In fact they both watch his talks and started incorporating some of his ideas. Jon mentioned him multiple times on his streams.

  • @br3nto
    @br3nto ปีที่แล้ว

    1:01:04 what’s the name of the person and code that the guy shouts out this point in the vid? “You do know your reinventing ?? or V-Code>??, right?” And “this is how Nicholas ???? Compilers all work?”

    • @br3nto
      @br3nto ปีที่แล้ว +1

      I think it’s “P-code” produced by the Pascal compiler and “Niklaus Wirth”

  • @kallehed6330
    @kallehed6330 ปีที่แล้ว

    niiiiiiiiiiiiiiiceeeeeee

  • @sanket143
    @sanket143 ปีที่แล้ว

    Can someone explain what's struct of arrays?

    • @ChristianBrugger
      @ChristianBrugger ปีที่แล้ว +2

      Instead of struct A {int a; int b;}; std::vector. One does struct B {std::vector a_values; std::vector b_values;}; The benefit is 1) no wasted space due to alignment. And 2) if a function only needs a, only those are loaded into cache. So it is more space efficient and more performant.

    • @guillaumewenzek4210
      @guillaumewenzek4210 ปีที่แล้ว +3

      Array of Struct: {a: int, b: float}[]
      Struct of array: {a: int[], b: float[]}
      The second is more cache friendly if you read 'a' ten times more often than 'b'

    • @shaurz
      @shaurz ปีที่แล้ว

      Instead of accessing array[index].field you have fields in separate arrays, e.g. field[index]

  • @gim913
    @gim913 ปีที่แล้ว

    I see it's getting discussed later on, but when I started watching, my first thought was that numbers ~25:00 would have more sense when shown as 0.1 of sec, so 1m, 100k and 10k respectively,
    or even better, I think many people are used to 60 fps rendering, so it'd be even better posed as: how much code can you cover in 16ms and that would be respectively: 167k loc, 16k loc, 1.6k loc

  • @user-py9cy1sy9u
    @user-py9cy1sy9u ปีที่แล้ว

    1:01:11 whos compiler?

    • @shilangyu
      @shilangyu ปีที่แล้ว

      niklaus wirth

  • @tomw4984
    @tomw4984 ปีที่แล้ว +8

    Shut up and let him present!

  • @rocknroooollllll
    @rocknroooollllll 8 หลายเดือนก่อน

    Questions, questions more questions. A sign of an ill-prepared talk if ever there was one. I will be happy when c++ community focuses on the actual language instead of these 'safe' extensions. Yes, Herb, looking at you, too.

  • @AK-vx4dy
    @AK-vx4dy ปีที่แล้ว +3

    Chandler looks humbled after trying to make own langugage ;)

  • @jordixboy
    @jordixboy ปีที่แล้ว

    pretty annoying to assume that everybody comes from university. Im self taught and I can take a book and learn about compiler theory