Java Bytecode Crash Course

  Рет қаралды 55,227

Oracle Developers

Oracle Developers

Күн бұрын

developer.oracle.com/

Пікірлер: 42
@124mun
@124mun 3 жыл бұрын
Literally stumbled upon this but ended up watching the whole thing cuz of how brilliantly he explained it. Hats off 👏
@sebon11
@sebon11 Жыл бұрын
Did he? It all was nice, but that's all, still there was a looot of unclear things here...
@Jakob6174
@Jakob6174 4 жыл бұрын
That was bloody brilliant, thank you soo much.
@devenderkumar6521
@devenderkumar6521 4 жыл бұрын
🔙
@devenderkumar6521
@devenderkumar6521 4 жыл бұрын
0
@zoom8304
@zoom8304 3 жыл бұрын
Thank you so much. Loved your presentation and learning from you
@anglikai9517
@anglikai9517 3 жыл бұрын
Wow, that is brilliant. Thanks !
@xortha3271
@xortha3271 4 жыл бұрын
Great talk!
@johnlongaski2715
@johnlongaski2715 Жыл бұрын
OMG I was trying to fix some dumb java asm thing I was making while playing this in the background and didn't realize the method was static cuz I stayed up all night xD. When u mention static invocation doesn't have a this pointer it made me realize that is whats wrong. My dumbass didn't realize it was static for ages and thought maybe it was somehow making the first local var index the first method param. Thank you so much idk how long I would of been stuck with that
@brendanli5488
@brendanli5488 3 жыл бұрын
excellent explanation!!!
@gevorg827
@gevorg827 2 жыл бұрын
Does anyone here knows how do you make a new Scanner and ask the user for input in Jasmin bytecode?
@duckydude20
@duckydude20 6 ай бұрын
sometimes, the KZbin algorithm can do wonders. i like it. thanks for such an awesome talk... :) now it actually seems easier than asm.
@MatthiasBloch
@MatthiasBloch 4 жыл бұрын
Nice talk! Short question: 32:00: Instruction Index 8: Why is the long variable l2 loaded from constant pool index #3? I thought it should have been #4 Follow up question: How does the constant pool for this particular example look like? Thanks you!
@AndriusKaliacius
@AndriusKaliacius 4 жыл бұрын
why did you think it should've been #4?
@MindlessMegaLawl
@MindlessMegaLawl 3 жыл бұрын
Because #3 is the first part of the double, #4 is the second part, likely implicit
@ZemenFidel
@ZemenFidel Жыл бұрын
Very lucid explanation. But the video would've looked a lot nicer if the slides were placed on the left and the speaker on the right.
@cheezeworm
@cheezeworm Жыл бұрын
god i love this speaker so much
@asagk
@asagk 3 жыл бұрын
From the sparse explanation about arguments on calls and return values it remains unclear to me weather the VM implements the return stack separately from the data/calculation stack or there is some hidden is going on in the shades. So what is it then for real about argument passing and return addresses on the stack? Another aspect unclear to me: In 31:41 arguments come as arguments in local variables, but when the call is presented (34:09) the arguments are provided by pushing on the stack, instead of of being passed as arguments in the locals registers. What is it now for real? On the stack or as arguments or in the locals registers? Just wondering ...
@paschikshehu7988
@paschikshehu7988 3 жыл бұрын
Thanks for pointing that out; I actually came here just for that
@tanveerhasan2382
@tanveerhasan2382 2 жыл бұрын
But I don't think JVM has registers to work with
@footballCartoon91
@footballCartoon91 2 жыл бұрын
@8:31 I don't understand.. Why he said the program does not use CPU register? Only use the stack to add two numbers together? How is that possible?
@tanveerhasan2382
@tanveerhasan2382 2 жыл бұрын
JVM is an abstraction over a CPU. The underlying machine code that translated from the byte code will use registers. But in JVM there are no registers
@stavros222
@stavros222 Жыл бұрын
How will locals up to 4 will be written? for example iload_4 and iload_5?
@mabed6692
@mabed6692 Жыл бұрын
There is iload instruction, which takes 1 byte operand. The operand is locals index. So instead of iload_4 (1-byte instruction) it will be iload 4 (1-byte instruction + 1-byte operand).
@DF-ss5ep
@DF-ss5ep Жыл бұрын
How can the JVM has a heap of more than 4GB? Surely in 64-bit mode, references use "2 slots".
@DaedalusCommunity
@DaedalusCommunity 7 ай бұрын
If I understand this correctly, unlike in C, the references are not to memory addresses but to stuff like classes. Thus the limit is not to the amount of memory you can address, but to the number of classes you can reference, and that number is never gonna get to the max you can address with 32 bits
@nigabals566
@nigabals566 2 жыл бұрын
started off really well but was really rushed after about the 40th minute :/
@johnlongaski2715
@johnlongaski2715 Жыл бұрын
12:29 I thought for a second he said “act sus” xD
@Darrell-Hunt
@Darrell-Hunt 3 жыл бұрын
So source code is for babies I wanna know bytecode and why it’s how it is
@theglorioussapphiremonkey4750
@theglorioussapphiremonkey4750 4 жыл бұрын
The audio is kind of low :(
@deepakumardeepak
@deepakumardeepak 8 ай бұрын
CLASS
@vadimkot2354
@vadimkot2354 Жыл бұрын
next time please normalize audio, I barely can hear him
@omeraydindev
@omeraydindev 3 жыл бұрын
9:20 in, just a future reference for myself
@ikiddoistudio64
@ikiddoistudio64 3 жыл бұрын
future
@Anurag_Saxena
@Anurag_Saxena 2 жыл бұрын
20:00:00
@abunapha
@abunapha 4 жыл бұрын
can't hear anything
@mahkhi7154
@mahkhi7154 Ай бұрын
This Java Bytecode is Like C. Your God: Nothing Better Than C. Its Very Portable. Works on X86, ARM, PowerPC, Sparc. The Dalvik / Android Byte Code is Like C++. Less Portable. Will Only work on Sony's ARM CPU's and Intel. Wont work Well on PowerPC, Sparc.
@sussus4914
@sussus4914 3 жыл бұрын
Use of red as means to highlight code was a very stupid idea.
@allarehere3012
@allarehere3012 2 жыл бұрын
Speak louder it's not audible
@officialsebgaming
@officialsebgaming 3 жыл бұрын
9 Comments
@mabed6692
@mabed6692 Жыл бұрын
So much inefficient bytecode, mainly due to poor desing. I know it's from 1995, but still...
@beingnikhil155
@beingnikhil155 3 жыл бұрын
This talk is a torture
The Java memory model explained, Rafael Winterhalter
48:01
Bulgarian Java User Group
Рет қаралды 17 М.
JVM Bytecode for Dummies (and the Rest of Us Too)
50:34
Oracle Learning
Рет қаралды 53 М.
아이스크림으로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 60 МЛН
KINDNESS ALWAYS COME BACK
00:59
dednahype
Рет қаралды 165 МЛН
Generics: The most intimidating TypeScript feature
18:19
Matt Pocock
Рет қаралды 168 М.
Why Isn't Functional Programming the Norm? - Richard Feldman
46:09
JDK, JRE, JVM: What Are They and What Are Their Differences?
7:57
The Learn Programming Channel
Рет қаралды 86 М.
everything is open source if you can reverse engineer (try it RIGHT NOW!)
13:56
Low Level Learning
Рет қаралды 1,3 МЛН
Solving Java Memory Leaks
45:06
Oracle Developers
Рет қаралды 32 М.
Object-Oriented Programming is Bad
44:35
Brian Will
Рет қаралды 2,3 МЛН
Parsing Java Bytecode with Python (JelloVM Ep.01)
2:25:53
Tsoding Daily
Рет қаралды 57 М.
I Melted Wood With Friction
8:44
The Action Lab
Рет қаралды 928 М.
iPhone, Galaxy или Pixel? 😎
0:16
serg1us
Рет қаралды 926 М.
$1 vs $100,000 Slow Motion Camera!
0:44
Hafu Go
Рет қаралды 26 МЛН
КРУТОЙ ТЕЛЕФОН
0:16
KINO KAIF
Рет қаралды 6 МЛН
Как правильно выключать звук на телефоне?
0:17
Люди.Идеи, общественная организация
Рет қаралды 1,8 МЛН
Samsung Galaxy 🔥 #shorts  #trending #youtubeshorts  #shortvideo ujjawal4u
0:10
Ujjawal4u. 120k Views . 4 hours ago
Рет қаралды 8 МЛН
Cheapest gaming phone? 🤭 #miniphone #smartphone #iphone #fy
0:19
Pockify™
Рет қаралды 4,2 МЛН